Navigation Destination

The coordinates of the active navigation destination.

Name: navigationdestination

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value
latitude required
number The latitude value
geoSystem
string The geo system used for latitude/longitude
timestamp required
string The timestamp when navigation destination value was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Destination",
  "technicalName": "navigationdestination",
  "description": "The coordinates of the active navigation destination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Destination",
    "required": [
      "longitude",
      "latitude",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for latitude/longitude",
        "default": "WGS84"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when navigation destination value was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}