Last Trip Fuel Consumption

This value indicates the fuel consumption during last drive.

Name: lasttripfuelconsumption

Delivery Method: pull

ATTRIBUTES

value required
number Last trip fuel consumption value.
unit required
string Last trip fuel consumption unit.
timestamp required
string The timestamp the last trip fuel consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Fuel Consumption",
  "technicalName": "lasttripfuelconsumption",
  "description": "This value indicates the fuel consumption during last drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Fuel Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip fuel consumption value."
      },
      "unit": {
        "type": "string",
        "title": "Last trip fuel consumption unit.",
        "enum": [
          "L",
          "gal"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip fuel consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}