JSON Example

JSON Example Export

JSON export should only be used by people familiar with JSON and how to use it. The information below will help you understand the file format.

JSON Fields

The exported data is an array of objects each of which has the following properties:

NameTypeComments
titleStringTitle is computed based on the address returned from reverse geocode.
thoroughfareStringStreet name
subThoroughfareStringSecondary street name
subAdministrativeAreaStringA county in the US.
localityStringCity name
administrativeAreaStringA state in the US.
postalCodeStringZIP Code
horizontalAccuracyDoubleThe horizontal accuracy of the GPS reading in meters.
longitudeDoubleThe longitude returned by the GPS.
latitudeDoubleThe latitude returned by the GPS.
timeZoneStringThe name of the time zone.
arrivalDateTimestampDoubleA Unix timestamp of the start of the visit.
departureDateTimestampDoubleA Unix timestamp of the end of the visit.

The example record below may be helpful.

[{
    "title":"IH-35W N",
    "thoroughfare":"IH-35W N",
    "subThoroughfare":"",
    "subAdministrativeArea":"Tarrant County"
    "locality":"Fort Worth",
    "administrativeArea":"TX",
    "postalCode":"76028",
    "horizontalAccuracy":92.9205308136514,
    "longitude":-97.3186231133265,
    "latitude":32.57120817087956,
    "timeZone":"America\/Chicago",
    "arrivalDateTimestamp":1714850643.0170732,
    "departureDateTimestamp":1714851166.9999578,
}]