Charging Plug Status

Status of the charging plug.

Name: chargingplugstatus

Delivery Method: pull

ATTRIBUTES

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