Hood Lock Status

Status of the hood lock.

Name: hoodlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle hood lock status value.
timestamp required
string The timestamp the vehicle hood lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Hood Lock Status",
  "technicalName": "hoodlockstatus",
  "description": "Status of the hood lock.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Hood Lock Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "UNKNOWN"
        ],
        "title": "Vehicle hood lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle hood lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}