Energy Consumption

This value indicates the average electric consumption at the time of data collection.

Name: energyconsumptionaverage

Delivery Method: pull

ATTRIBUTES

value required
number Energy consumption value
unit required
string Energy consumption unit
timestamp required
string The timestamp the energy consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Energy Consumption",
  "technicalName": "energyconsumptionaverage",
  "description": "This value indicates the average electric consumption at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Energy Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Energy consumption value"
      },
      "unit": {
        "type": "string",
        "title": "Energy consumption unit",
        "enum": [
          "kWh/km",
          "kWh/mi",
          "kWh/100km",
          "kWh/62mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the energy consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}