Light Status

Status of the light.

Name: lightstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle light status value.
timestamp required
string The timestamp the vehicle light status was recorded. Format according to ISO 8601 format.
{
  "name": "Light Status",
  "technicalName": "lightstatus",
  "description": "Status of the light.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Light Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "AUTO",
          "PARKINGLIGHT",
          "HIGHBEAM",
          "UNKNOWN"
        ],
        "title": "Vehicle light status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle light status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}