Battery Voltage - Backup Battery

The value indicates the current battery voltage in the vehicle’s electrical system.

Name: backupbatteryvoltage

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage value
unit required
string Vehicle battery voltage unit
timestamp required
string The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage - Backup Battery",
  "technicalName": "backupbatteryvoltage",
  "description": "The value indicates the current battery voltage in the vehicle's electrical system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage - Backup Battery",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "Vehicle battery voltage unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format."
      }
    }
  }
}