Vehicle Altitude

Height of the vehicle above sea-level.

Name: vehiclealtitude

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle altitude.
unit required
string Vehicle altitude unit.
timestamp required
string The timestamp the vehicle altitude value was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Altitude",
  "technicalName": "vehiclealtitude",
  "description": "Height of the vehicle above sea-level.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Altitude",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle altitude."
      },
      "unit": {
        "type": "string",
        "enum": [
          "m",
          "ft"
        ],
        "title": "Vehicle altitude unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle altitude value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}