5 json.coordinates [ note.lon, note.lat ]
10 json.date_created note.created_at
11 json.nearby note.nearby_place
12 json.status note.status
13 json.closed_at note.closed_at if note.status == "closed"
15 json.comments(note.comments) do |comment|
16 json.date comment.created_at
17 json.uid comment.author_id unless comment.author_id.nil?
18 json.user comment.author_name
19 json.text comment.body