Front Left Window Status

Status of the front left window.

Name: frontleftwindowstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front left window status value.
timestamp required
string The timestamp the vehicle front left window status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Left Window Status",
  "technicalName": "frontleftwindowstatus",
  "description": "Status of the front left window.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front left window status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "INTERMEDIATE",
          "MOVING",
          "AIRING",
          "UNKNOWN"
        ],
        "title": "Vehicle front left window status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front left window status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}