Last Trip Electric Distance

Electrically driven distance during the most recent drive.

Name: lasttripelectricdistance

Delivery Method: pull

ATTRIBUTES

value required
number Last trip electric distance value
unit required
string Last trip electric distance unit
timestamp required
string The timestamp the last trip electric distance was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Electric Distance",
  "technicalName": "lasttripelectricdistance",
  "description": "Electrically driven distance during the most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Electric Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip electric distance value"
      },
      "unit": {
        "type": "string",
        "title": "Last trip electric distance unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip electric distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}