Deep Sleep Status

The deep sleep status of the vehicle.

Name: deepsleepstatus

Delivery Method: pull

ATTRIBUTES

value required
string The deep sleep status of the vehicle
timestamp required
string The timestamp the deep sleep status was recorded. Format according to ISO 8601 format.
{
  "name": "Deep Sleep Status",
  "technicalName": "deepsleepstatus",
  "description": "The deep sleep status of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Deep sleep status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The deep sleep status of the vehicle.",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the deep sleep status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}