Engine Type (Primary)

This value indicates the primary engine type.

Name: enginetypeprimary

Delivery Method: pull

ATTRIBUTES

value required
string Engine type primary value
timestamp required
string The timestamp the vehicle primary engine type value was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Type (Primary)",
  "technicalName": "enginetypeprimary",
  "description": "This value indicates the primary engine type.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Type (Primary)",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNSUPPORTED",
          "INVALID",
          "PETROL",
          "ELECTRIC",
          "GAS",
          "DIESEL",
          "GASOLINE",
          "CNG",
          "LPG"
        ],
        "title": "Engine type primary value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle primary engine type value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}