Billboard Info

Billboard info extends location info.

FieldDescriptionTypeExample
idBillboard IDstring588795f54c0da83f6d1c4568
typeBillboard info will always be 'billboard'.stringbillboard
categoryWill always be 'billboard'stringbillboard
sub_categoryThe billboard's Media Type: Digital Kiosk, Digital TV, Bulletins, etc.stringDigital Kiosk
custom_tagsUsed for custom attributes such as operator, size, direction, etc.A JSON array of key-value pairs[{
"key": "operator",
"value": "Intersection"
},
{
"key": "direction",
"value": "N"
}]
addressFull addressAddress
geolocationCoordinatesGeolocation

Example

{
  "id": "588795f54c0da83f6d1c456",
  "type": "billboard",
  "category": "billboard",
  "sub_category": "Digital Kiosk",
  "custom_tags": [
    {
      "key": "operator",
      "value": "Intersection"
    },
    {
      "key": "direction",
      "value": "N"
    }
  ],
  "address": {
    "formatted_address": "200 Front St, San Francisco, California, United States",
    "address": "200 Front St",
    "city": "San Francisco",
    "state": "California",
    "country": "United States",
    "zip": "94114"
  },
  "geolocation": {
    "lat": 37.7933755,
    "lng": -122.40099
  }
}