Total Engine Time (Trip)

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

Name: totalenginetime

Delivery Method: pull

ATTRIBUTES

value required
number The total engine time over the life of the vehicle.
unit required
string Vehicle engine time unit.
timestamp required
string The timestamp the total engine time was recorded. Format according to ISO 8601 format.
{
  "name": "Total Engine Time (Trip)",
  "technicalName": "totalenginetime",
  "description": "This value indicates the total engine 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 (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The total engine 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 time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}