Billboard Info

Billboard info extends location info.

Field

Description

Type

Example

id

Billboard ID

string

588795f54c0da83f6d1c4568

type

Billboard info will always be 'billboard'.

string

billboard

category

Will always be 'billboard'

string

billboard

sub_category

The billboard's Media Type: Digital Kiosk, Digital TV, Bulletins, etc.

string

Digital Kiosk

custom_tags

Used for custom attributes such as operator, size, direction, etc.

A JSON array of key-value pairs

[ { "key": "operator", "value": "Intersection" }, { "key": "direction", "value": "N" }]

address

Full address

Address

geolocation

Coordinates

Geolocation

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
  }
}