Geolocation

The geolocation of the vehicle with given VIN in decimal degree.

Name: geolocation

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value in decimal degree
latitude required
number The latitude value in decimal degree
geoSystem required
string The geo system used for lat/lon
vehicleHeading
number The orientation of the vehicle in degrees.
unit
string The orientation unit.
timestamp required
string The timestamp the position was recorded. Format according to ISO 8601 format.
{
  "name": "Geolocation",
  "technicalName": "geolocation",
  "description": "The geolocation of the vehicle with given VIN in decimal degree.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Geolocation",
    "required": [
      "longitude",
      "latitude",
      "geoSystem",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value in decimal degree"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value in decimal degree"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for lat/lon",
        "default": "WGS84"
      },
      "vehicleHeading": {
        "type": "number",
        "title": "The orientation of the vehicle in degrees."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "The orientation unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}