Trip Fuel Consumed (Trip)

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

Name: tripfuelconsumed

Delivery Method: pull

ATTRIBUTES

value required
number The fuel consumed since the last ignition on.
unit required
string Fuel consumption unit.
timestamp required
string The timestamp the consumed fuel of the vehicle was recorded. Format according to ISO 8601 format.
{
  "name": "Trip Fuel Consumed (Trip)",
  "technicalName": "tripfuelconsumed",
  "description": "This value indicates the fuel consumed 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 Consumed (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The fuel consumed since the last ignition on."
      },
      "unit": {
        "type": "string",
        "enum": [
          "L"
        ],
        "title": "Fuel consumption unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the consumed fuel of the vehicle was recorded. Format according to ISO 8601 format."
      }
    }
  }
}