Charging Power

The maximum charge for the most recent charging process in ampere.

Name: chargingpower

Delivery Method: pull

ATTRIBUTES

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