Electric Remaining

Remaining electric range in given unit.

Name: electricremaining

Delivery Method: pull

ATTRIBUTES

value required
number Remaining electric range.
unit required
string The electric range unit.
timestamp required
string The timestamp the remaining electric range was recorded. Format according to ISO 8601 format.
{
  "name": "Electric Remaining",
  "technicalName": "electricremaining",
  "description": "Remaining electric range in given unit.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Electric Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Remaining electric range."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The electric range unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remaining electric range was recorded. Format according to ISO 8601 format."
      }
    }
  }
}