Battery Voltage Level

Charging status of high-voltage battery

Name: sochighlevel

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage level value
unit required
string Battery voltage level unit
timestamp required
string The timestamp the battery voltage level was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage Level",
  "technicalName": "sochighlevel",
  "description": "Charging status of high-voltage battery",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage level value"
      },
      "unit": {
        "type": "string",
        "title": "Battery voltage level unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the battery voltage level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}