Rear Right Door Lock Status

This value indicates if the rear right door was locked or not at the time of data capturing.

Name: rearrightdoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear right door lock status value.
timestamp required
string The timestamp the vehicle rear right door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Right Door Lock Status",
  "technicalName": "rearrightdoorlockstatus",
  "description": "This value indicates if the rear right door was locked or not at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear right door lock status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle rear right door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear right door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}