Trip Fuel Economy (Trip)

This value indicates the fuel economy since the last ignition on.

Name: tripfueleconomy

Delivery Method: pull

ATTRIBUTES

value required
number The fuel economy since the last ignition on.
unit required
string Fuel economy unit.
timestamp required
string The timestamp the fuel economy since the last ignition on was recorded. Format according to ISO 8601 format.
{
  "name": "Trip Fuel Economy (Trip)",
  "technicalName": "tripfueleconomy",
  "description": "This value indicates the fuel economy since the last ignition on.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip Fuel Economy (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The fuel economy since the last ignition on."
      },
      "unit": {
        "type": "string",
        "enum": [
          "L/100km"
        ],
        "title": "Fuel economy unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel economy since the last ignition on was recorded. Format according to ISO 8601 format."
      }
    }
  }
}