Left Reading Lamp Status

Status of the left reading lamp.

Name: leftreadinglampstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle left reading lamp status value.
timestamp required
string The timestamp the vehicle left reading lamp status was recorded. Format according to ISO 8601 format.
{
  "name": "Left Reading Lamp Status",
  "technicalName": "leftreadinglampstatus",
  "description": "Status of the left reading lamp.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Left Reading Lamp Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF"
        ],
        "title": "Vehicle left reading lamp status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle left reading lamp status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}