Battery Voltage

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

Name: batteryvoltage

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",
  "technicalName": "batteryvoltage",
  "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",
    "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."
      }
    }
  }
}