Total Engine Time Idle (Trip)

This value indicates the total engine idle time over the life of the vehicle.

Name: totalenginetimeidle

Delivery Method: pull

ATTRIBUTES

value required
number The total engine idle time over the life of the vehicle.
unit required
string Vehicle engine time unit.
timestamp required
string The timestamp the total engine idle time was recorded. Format according to ISO 8601 format.
{
  "name": "Total Engine Time Idle (Trip)",
  "technicalName": "totalenginetimeidle",
  "description": "This value indicates the total engine idle time over the life of the vehicle.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Total Engine Time Idle (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The total engine idle time over the life of the vehicle."
      },
      "unit": {
        "type": "string",
        "enum": [
          "s"
        ],
        "title": "Vehicle engine time unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the total engine idle time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}