Fuel Tank Door Lock Status

Fuel tank door lock status.

Name: fueldoorlockstatus

Delivery Method: pull

ATTRIBUTES

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