Charging Window

The charging window selection.

Name: chargingwindow

Delivery Method: pull

ATTRIBUTES

value required
string The value of charging window.
timestamp required
string The timestamp when charging window was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Window",
  "technicalName": "chargingwindow",
  "description": "The charging window selection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Window",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "SELECTED",
          "NOTSELECTED",
          "UNKNOWN"
        ],
        "title": "The value of charging window."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging window was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}