Trunk Status

Open/close status of the trunk.

Name: trunkstatus

Delivery Method: pull

ATTRIBUTES

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