Event Connectors

Address

Postal address with GIS coordinates

The Address object represents a physical location with postal fields and optional GIS coordinates. It appears inside contactinfo.addresses on TRCItems and as start/end on RouteInfo.

Example

{
  "main": true,
  "street": "Museumstraat",
  "housenr": "1",
  "zipcode": "1071 XX",
  "city": "Amsterdam",
  "province": "Noord-Holland",
  "country": "NL",
  "gisCoordinates": [
    {
      "xcoordinate": "4.8852",
      "ycoordinate": "52.3600",
      "label": "main"
    }
  ]
}

Fields

FieldTypeDescription
mainbooleanPrimary address for this item
reservationbooleanAddress for reservations
titlestringAddress label
streetstringStreet name
housenrstringHouse number
zipcodestringPostal code
citystringCity name
citytrcidstringTRC identifier for the city
provincestringProvince or state
countrystringCountry code
neighbourhoodstringNeighbourhood name
districtstringDistrict name
streettrcidstringTRC identifier for the street
gisCoordinatesarrayGPS coordinates (see below)

GIS Coordinates

Each coordinate entry has:

FieldTypeDescription
xcoordinatestringLongitude
ycoordinatestringLatitude
labelstringCoordinate label

See the API Reference for the full Address schema.

On this page