Last Parking Position

Last parking position of the vehicle.

Name: lastparkingposition

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value in decimal degree
latitude required
number The latitude value in decimal degree
geoSystem
string The geo system used for latitude/longitude
vehicleHeading
number The orientation of the vehicle in degrees.
unit required
string The orientation unit.
timestamp required
string The timestamp the last parking position was recorded. Format according to ISO 8601 format.
{
  "name": "Last Parking Position",
  "technicalName": "lastparkingposition",
  "description": "Last parking position of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last parking position",
    "required": [
      "longitude",
      "latitude",
      "unit",
      "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 latitude/longitude",
        "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 last parking position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}