Charging Method

The charging method of the vehicle.

Name: chargingmethod

Delivery Method: pull

ATTRIBUTES

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