Charging Potential

The charging voltage for the most recent charging process.

Name: chargingpotential

Delivery Method: pull

ATTRIBUTES

value required
number The value of charging potential
unit required
string The unit of charging potential
timestamp required
string The timestamp when charging potential was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Potential",
  "technicalName": "chargingpotential",
  "description": "The charging voltage for the most recent charging process.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Potential",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of charging potential"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "The unit of charging potential"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging potential was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}