Remote Charging Profile

Information about remote charging profile of the vehicle.

Name: remotechargingprofile

Delivery Method: pull

ATTRIBUTES

value required
string Remote charging profile value.
timestamp required
string The timestamp the remote charging profile was recorded. Format according to ISO 8601 format.
{
  "name": "Remote Charging Profile",
  "technicalName": "remotechargingprofile",
  "description": "Information about remote charging profile of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remote Charging Profile",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Remote charging profile value.",
        "enum": [
          "DIRECT",
          "CHARGINGONCE",
          "NOTACTIVE",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remote charging profile was recorded. Format according to ISO 8601 format."
      }
    }
  }
}