Vehicle Heading

Heading position of the vehicle.

Name: vehicleheading

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle heading position.
unit required
string Vehicle heading position unit.
timestamp required
string The timestamp the vehicle heading value was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Heading",
  "technicalName": "vehicleheading",
  "description": "Heading position of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Heading",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle heading position."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "Vehicle heading position unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle heading value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}