Front Interior Light Status

Status of the front interior lights.

Name: frontinteriorlightstatus

Delivery Method: pull

ATTRIBUTES

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