Hood Status

Status of the hood.

Name: hoodstatus

Delivery Method: pull

ATTRIBUTES

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