Gear Lever Position

Position of the gear lever at the time of measurement

Name: gearleverposition

Delivery Method: pull

ATTRIBUTES

value required
string The gear position value
timestamp required
string The timestamp the gear position was recorded. Format according to ISO 8601 format.
{
  "name": "Gear Lever Position",
  "technicalName": "gearleverposition",
  "description": "Position of the gear lever at the time of measurement",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Gear Lever Position",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The gear position value",
        "enum": [
          "UNKNOWN",
          "PARK",
          "REVERSE",
          "NEUTRAL",
          "DRIVE",
          "SPORT",
          "LOW",
          "1",
          "2",
          "3",
          "4",
          "5",
          "6",
          "7",
          "8",
          "9",
          "10",
          "11",
          "12",
          "13",
          "14",
          "15",
          "16",
          "17",
          "18",
          "19",
          "20",
          "21",
          "22",
          "23",
          "24"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the gear position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}