Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.22 KB

Tag.markdown

File metadata and controls

40 lines (28 loc) · 1.22 KB

Schema for a Tag object


What's a Tag object for?

A Tag object stores information about a specific tag. This includes but is not limited to the number of objects containing this tag. The Tag objects schema is loose meaning that it can be flexible but at minimum it contains an id and count.

For example, the tag sunnyvale can have a latitude and longitude property.


Schema for a Tag object

{
  id: (string),
  count: (int),
  email: (string),
  latitude: (float),
  longitude: (float)
}

Schema description

  • id, Base 32 value of a base 10 auto-incremented value
  • count, The number of objects with this tag
  • email, Email address if applicable
  • latitude, Latitude if applicable
  • longitude, Longitude if applicable