Display Distance Unit

Indicates the unit in which distances are displayed on a vehicle panel.

Name: displaydistanceunit

Delivery Method: pull

ATTRIBUTES

value required
string Unit of instrument panel in vehicle.
timestamp required
string The timestamp when unit was recorded. Format according to ISO 8601 format.
{
  "name": "Display Distance Unit",
  "technicalName": "displaydistanceunit",
  "description": "Indicates the unit in which distances are displayed on a vehicle panel.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Display Distance Unit",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Unit of instrument panel in vehicle.",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when unit was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}