Battery Management Status

This value indicates the battery management status at the time of data collection.

Name: batterymanagementstatus

Delivery Method: pull

ATTRIBUTES

value required
string Battery management status
timestamp required
string The timestamp the vehicle battery management status was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Management Status",
  "technicalName": "batterymanagementstatus",
  "description": "This value indicates the battery management status at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Management Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OK",
          "HIGH_VOLTAGE_USER_CUT_OFF",
          "INFOTAINMENT_CUT_OFF",
          "VEHICLE_WAKE_UP_BLOCKED"
        ],
        "title": "Battery management status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery management status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}