Charging Status

The current charging status of the vehicle.

Name: chargingstatus

Delivery Method: pull

ATTRIBUTES

value required
string The value of charging status.
timestamp required
string The timestamp when charging status was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Status",
  "technicalName": "chargingstatus",
  "description": "The current charging status of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "FINISHED",
          "ACTIVE",
          "NOTCHARGING"
        ],
        "title": "The value of charging status."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging status was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}