Trip Fuel Consumed Idle (Trip)

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

Name: tripfuelconsumedidle

Delivery Method: pull

ATTRIBUTES

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