Data Catalog

Caruso GmbH publishes a data catalog ready to consume via our platform. The data catalog provides data item definitions, data item descriptions, and detailed technical information.

You can consider our data catalog basically as the common language across vehicle manufacturers and retrofit solutions. Hence, using our platform makes your journey to connected vehicle data simple and efficient. You integrate once with Caruso instead having to integrate with each and every data supplier. Prior to making data available from a supplier, Caruso ensures its harmonization and standardization with our data catalog.

Please note that the data catalog is updated from time to time for the convenience of the consumer, e.g., when new data items are added, data items or their description changes, etc. We recommend visiting and reviewing our data catalog regularly to check out what’s new!

Acceleration

Acceleration in given directions and in given unit.

Name: acceleration

Delivery Method: pull

ATTRIBUTES

x required
number Acceleration in x direction (longitudinal).
true required
string Acceleration in y direction (lateral).
z
number Acceleration in z direction (vertical).
unit
string The acceleration unit.
timestamp required
string The timestamp acceleration was recorded. Format according to ISO 8601 format.
{
  "name": "Acceleration",
  "technicalName": "acceleration",
  "description": "Acceleration in given directions and in given unit.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Acceleration",
    "required": [
      "x",
      "y",
      "timestamp"
    ],
    "properties": {
      "x": {
        "type": "number",
        "title": "Acceleration in x direction (longitudinal)"
      },
      "y": {
        "type": "number",
        "title": "Acceleration in y direction (lateral)"
      },
      "z": {
        "type": "number",
        "title": "Acceleration in z direction (vertical)"
      },
      "unit": {
        "type": "string",
        "enum": [
          "m/s/s"
        ],
        "title": "The acceleration unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp acceleration was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Accident Call Automatic

This value indicates if the automatic accident call was triggered at time of data capturing.

Name: accidentautomatic

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the automatic accident call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the automatic accident call was recorded. Format according to ISO 8601 format.
{
  "name": "Accident Call Automatic",
  "technicalName": "accidentautomatic",
  "description": "This value indicates if the automatic accident call was triggered at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Accident Call Automatic",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the automatic accident call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the automatic accident call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Accident Call Manual

This value indicates if the manual accident call was triggered at time of data capturing.

Name: accidentcallmanual

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the manual accident call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the manual accident call was recorded. Format according to ISO 8601 format.
{
  "name": "Accident Call Manual",
  "technicalName": "accidentcallmanual",
  "description": "This value indicates if the manual accident call was triggered at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Accident Call Manual",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the manual accident call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the manual accident call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Automatic Teleservice Call

Value indicates date when the vehicle triggered ASC.

Name: automaticteleservicecall

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the automatic teleservice call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the Automatic Teleservice Call was recorded. Format according to ISO 8601 format.
{
  "name": "Automatic Teleservice Call",
  "technicalName": "automaticteleservicecall",
  "description": "Value indicates date when the vehicle triggered ASC.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Automatic Teleservice Call",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the automatic teleservice call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Automatic Teleservice Call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Auxiliary Energy Consumption

This value indicates the power consumption of electrical components in kW at the time of data collection.

Name: energyconsumptionauxiliary

Delivery Method: pull

ATTRIBUTES

value required
number Energy consumption value
unit required
string Energy consumption unit
timestamp required
string The timestamp the auxiliary energy consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Auxiliary Energy Consumption",
  "technicalName": "energyconsumptionauxiliary",
  "description": "This value indicates the power consumption of electrical components in kW at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Auxiliary Energy Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Energy consumption value"
      },
      "unit": {
        "type": "string",
        "title": "Energy consumption unit",
        "enum": [
          "kWh"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the auxiliary energy consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Average Distance

Average distance traveled per week.

Name: averagedistance

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle average traveled distance.
unit required
string Vehicle distance unit.
timestamp required
string The timestamp the vehicle average traveled distance value was recorded. Format according to ISO 8601 format.
{
  "name": "Average Distance",
  "technicalName": "averagedistance",
  "description": "Average distance traveled per week.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Average Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle average traveled distance."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Vehicle distance unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle average traveled distance value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Average Distance Over Period

Average distance traveled per week over a period.

Name: averagedistanceperiod

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle average traveled distance over a period.
unit required
string Vehicle distance unit.
periodValue required
number Vehicle traveled period value.
period required
string Vehicle traveled period unit.
timestamp required
string The timestamp the vehicle average traveled distance value was recorded. Format according to ISO 8601 format.
{
  "name": "Average Distance Over Period",
  "technicalName": "averagedistanceperiod",
  "description": "Average distance traveled per week over a period.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Average Distance Over Period",
    "required": [
      "value",
      "unit",
      "period",
      "periodValue",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle average traveled distance over a period."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Vehicle distance unit."
      },
      "periodValue": {
        "type": "number",
        "title": "Vehicle traveled period value."
      },
      "period": {
        "type": "string",
        "enum": [
          "DAY",
          "WEEK",
          "MONTH",
          "YEAR"
        ],
        "title": "Vehicle traveled period unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle average traveled distance value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Low-Voltage Level

Charging status of low-voltage battery

Name: soclowlevel

Delivery Method: pull

ATTRIBUTES

value required
number Battery low-voltage level value
unit required
string Battery low-voltage level unit
timestamp required
string The timestamp the battery low-voltage level was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Low-Voltage Level",
  "technicalName": "soclowlevel",
  "description": "Charging status of low-voltage battery",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Low-Voltage Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery low-voltage level value"
      },
      "unit": {
        "type": "string",
        "title": "Battery low-voltage level unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the battery low-voltage level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Management Status

This value indicates the battery management status at the time of data collection.

Name: batterymanagementstatus

Delivery Method: pull

ATTRIBUTES

value required
string Battery management status
timestamp required
string The timestamp the vehicle battery management status was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Management Status",
  "technicalName": "batterymanagementstatus",
  "description": "This value indicates the battery management status at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Management Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OK",
          "HIGH_VOLTAGE_USER_CUT_OFF",
          "INFOTAINMENT_CUT_OFF",
          "VEHICLE_WAKE_UP_BLOCKED"
        ],
        "title": "Battery management status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery management status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Voltage

The value indicates the current battery voltage in the vehicle’s electrical system.

Name: batteryvoltage

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage value
unit required
string Vehicle battery voltage unit
timestamp required
string The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage",
  "technicalName": "batteryvoltage",
  "description": "The value indicates the current battery voltage in the vehicle's electrical system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "Vehicle battery voltage unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Voltage - Accessory Battery

The value indicates the current battery voltage in the vehicle’s electrical system.

Name: accessorybatteryvoltage

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage value
unit required
string Vehicle battery voltage unit
timestamp required
string The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage - Accessory Battery",
  "technicalName": "accessorybatteryvoltage",
  "description": "The value indicates the current battery voltage in the vehicle's electrical system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage - Accessory Battery",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "Vehicle battery voltage unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Voltage - Backup Battery

The value indicates the current battery voltage in the vehicle’s electrical system.

Name: backupbatteryvoltage

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage value
unit required
string Vehicle battery voltage unit
timestamp required
string The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage - Backup Battery",
  "technicalName": "backupbatteryvoltage",
  "description": "The value indicates the current battery voltage in the vehicle's electrical system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage - Backup Battery",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "Vehicle battery voltage unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle battery voltage was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Battery Voltage Level

Charging status of high-voltage battery

Name: sochighlevel

Delivery Method: pull

ATTRIBUTES

value required
number Battery voltage level value
unit required
string Battery voltage level unit
timestamp required
string The timestamp the battery voltage level was recorded. Format according to ISO 8601 format.
{
  "name": "Battery Voltage Level",
  "technicalName": "sochighlevel",
  "description": "Charging status of high-voltage battery",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Battery Voltage Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Battery voltage level value"
      },
      "unit": {
        "type": "string",
        "title": "Battery voltage level unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the battery voltage level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Brake Fluid Life Remaining

This value indicates the remaining life of the brake fluid.

Name: brakefluidliferemaining

Delivery Method: pull

ATTRIBUTES

value required
number Brake fluid remaining life value.
unit required
string Brake fluid remaining life unit.
timestamp required
string The timestamp the remaining brake fluid life value was recorded. Format according to ISO 8601 format.
{
  "name": "Brake Fluid Life Remaining",
  "technicalName": "brakefluidliferemaining",
  "description": "This value indicates the remaining life of the brake fluid.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED"
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Brake Fluid Life Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Brake fluid remaining life value."
      },
      "unit": {
          "type": "string",
          "enum": [
              "PERCENTAGE"
          ],
          "title": "Brake fluid remaining life unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remaining brake fluid life value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Brakes Life Remaining

This value indicates the remaining life of the brakes.

Name: brakesliferemaining

Delivery Method: pull

ATTRIBUTES

value required
number Brakes remaining life value.
unit required
string Brakes remaining life unit.
timestamp required
string The timestamp the remaining brakes life value was recorded. Format according to ISO 8601 format.
{
  "name": "Brakes Life Remaining",
  "technicalName": "brakesliferemaining",
  "description": "This value indicates the remaining life of the brakes.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED"
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Brakes Life Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Brakes remaining life value."
      },
      "unit": {
          "type": "string",
          "enum": [
              "PERCENTAGE"
          ],
          "title": "Brakes remaining life unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remaining brakes life value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Brakes Service Distance

This value indicates how many kilometers remain before the next brake service is due.

Name: brakesservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Brakes service distance value.
unit required
string Brakes service distance unit.
timestamp required
string The timestamp the brakes service distance value was recorded. Format according to ISO 8601 format.
{
  "name": "Brakes Service Distance",
  "technicalName": "brakesservicedistance",
  "description": "This value indicates how many kilometers remain before the next brake service is due.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Brakes Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Brakes service distance value."
      },
      "unit": {
          "type": "string",
          "enum": [
              "km"
          ],
          "title": "Brakes service distance unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the brakes service distance value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Charging History

This value shows a list of charging processes performed on the vehicle, which were recorded in the course of the “Charging History” service.

Name: charginghistory

Delivery Method: pull

ATTRIBUTES

value required
object undefined
timestamp
string The timestamp the charging history data was recorded. Format according to ISO 8601 format.
{
  "name": "Charging History",
  "technicalName": "charginghistory",
  "description": "This value shows a list of charging processes performed on the vehicle, which were recorded in the course of the “Charging History” service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging history",
    "required": [
      "value"
    ],
    "properties": {
      "value": {
        "type": "object",
        "properties": {
          "chargingsession": {
            "type": "array",
            "required": [
              "startTime",
              "endTime"
            ],
            "properties": {
              "startTime": {
                "type": "string",
                "format": "date-time"
              },
              "endTime": {
                "type": "string",
                "format": "date-time"
              },
              "displayedSoc": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "number"
                  },
                  "unit": {
                    "type": "string",
                    "enum": [
                      "PERCENTAGE"
                    ]
                  }
                }
              },
              "displayedStartSoc": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "number"
                  },
                  "unit": {
                    "type": "string",
                    "enum": [
                      "PERCENTAGE"
                    ]
                  }
                }
              },
              "energyCharged": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "number"
                  },
                  "unit": {
                    "type": "string",
                    "enum": [
                      "kWh"
                    ]
                  }
                }
              },
              "mileage": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "string"
                  },
                  "unit": {
                    "type": "string",
                    "enum": [
                      "km",
                      "mi"
                    ]
                  }
                }
              },
              "chargingCostInformation": {
                "type": "object",
                "properties": {
                  "currency": {
                    "type": "string"
                  },
                  "calculatedChargingCost": {
                    "type": "number"
                  }
                }
              },
              "chargingLocation": {
                "type": "object",
                "properties": {
                  "municipality": {
                    "type": "string"
                  },
                  "address": {
                    "type": "string"
                  },
                  "formattedAddress": {
                    "type": "string"
                  }
                }
              }
            }
          }
        }
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the charging history data was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Charging Method

The charging method of the vehicle.

Name: chargingmethod

Delivery Method: pull

ATTRIBUTES

value required
string The type of charging method.
timestamp required
string The timestamp when charging method was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Method",
  "technicalName": "chargingmethod",
  "description": "The charging method of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Method",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ALTERNATING",
          "DIRECT",
          "NOTCHARGING"
        ],
        "title": "The type of charging method."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging method was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Charging Plug Status

Status of the charging plug.

Name: chargingplugstatus

Delivery Method: pull

ATTRIBUTES

value required
string Value of the charging plug status.
timestamp required
string The timestamp when charging plug status was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Plug Status",
  "technicalName": "chargingplugstatus",
  "description": "Status of the charging plug.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Plug Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Value of the charging plug status.",
        "enum": [
          "CONNECTED",
          "DISCONNECTED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging plug status was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Charging Potential

The charging voltage for the most recent charging process.

Name: chargingpotential

Delivery Method: pull

ATTRIBUTES

value required
number The value of charging potential
unit required
string The unit of charging potential
timestamp required
string The timestamp when charging potential was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Potential",
  "technicalName": "chargingpotential",
  "description": "The charging voltage for the most recent charging process.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Potential",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of charging potential"
      },
      "unit": {
        "type": "string",
        "enum": [
          "V"
        ],
        "title": "The unit of charging potential"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging potential was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Charging Power

The maximum charge for the most recent charging process in ampere.

Name: chargingpower

Delivery Method: pull

ATTRIBUTES

value required
number The value of charging power
unit required
string The unit of charging power
timestamp required
string The timestamp when charging power was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Power",
  "technicalName": "chargingpower",
  "description": "The maximum charge for the most recent charging process in ampere.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Power",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of charging power"
      },
      "unit": {
        "type": "string",
        "enum": [
          "A"
        ],
        "title": "The unit of charging power"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging power was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Charging Status

The current charging status of the vehicle.

Name: chargingstatus

Delivery Method: pull

ATTRIBUTES

value required
string The value of charging status.
timestamp required
string The timestamp when charging status was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Status",
  "technicalName": "chargingstatus",
  "description": "The current charging status of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "FINISHED",
          "ACTIVE",
          "NOTCHARGING"
        ],
        "title": "The value of charging status."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging status was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Charging Window

The charging window selection.

Name: chargingwindow

Delivery Method: pull

ATTRIBUTES

value required
string The value of charging window.
timestamp required
string The timestamp when charging window was recorded. Format according to ISO 8601 format.
{
  "name": "Charging Window",
  "technicalName": "chargingwindow",
  "description": "The charging window selection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Charging Window",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "SELECTED",
          "NOTSELECTED",
          "UNKNOWN"
        ],
        "title": "The value of charging window."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when charging window was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Check Control Messages

Check control monitors functions in the vehicle and notifies the user when there is a fault in the monitored system.

Name: checkcontrolmessages

Delivery Method: pull

ATTRIBUTES

value required
array undefined
timestamp required
string The timestamp the vehicle check control messages were recorded. Format according to ISO 8601 format.
{
  "name": "Check Control Messages",
  "technicalName": "checkcontrolmessages",
  "description": "Check control monitors functions in the vehicle and notifies the user when there is a fault in the monitored system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Check Control Messages",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "message"
          ],
          "properties": {
            "id": {
              "type": "number"
            },
            "message": {
              "type": "string"
            },
            "status": {
              "type": "string"
            },
            "value": {
              "type": "number"
            }
          }
        }
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle check control messages were recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Condition Based Services

Sensors and special algorithms take into account the operating conditions of the vehicle. CBS uses this to determine the required service. The system hereby adapts the scope of the service to the individual usage profile.

Name: conditionbasedservices

Delivery Method: pull

ATTRIBUTES

value required
array Condition based services value
timestamp required
string The timestamp the vehicle condition based services was recorded. Format according to ISO 8601 format.
{
  "name": "Condition Based Services",
  "technicalName": "conditionbasedservices",
  "description": "Sensors and special algorithms take into account the operating conditions of the vehicle. CBS uses this to determine the required service. The system hereby adapts the scope of the service to the individual usage profile.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Condition Based Services",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "name"
          ],
          "properties": {
            "date": {
              "type": "string",
              "format": "date-time"
            },
            "id": {
              "type": "number"
            },
            "description": {
              "type": "string"
            },
            "status": {
              "type": "string"
            },
            "name": {
              "type": "string"
            },
            "value": {
              "type": "number"
            }
          }
        },
        "title": "Condition based services value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle condition based services  was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Condition Based Services Number

The maximum number of service notifications transmitted from the vehicle to the OEM.

Name: conditionbasedservicesnumber

Delivery Method: pull

ATTRIBUTES

value required
number Number of messages
timestamp required
string The timestamp when value was recorded. Format according to ISO 8601 format.
{
  "name": "Condition Based Services Number",
  "technicalName": "conditionbasedservicesnumber",
  "description": "The maximum number of service notifications transmitted from the vehicle to the OEM.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Condition Based Services Number",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Number of messages"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when value was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Convertible Top Position (Relative)

This value indicates the convertible top position at the time of data capturing from 0% (closed) to 100% (open).

Name: convertibletopposition

Delivery Method: pull

ATTRIBUTES

value required
number Convertible top position value.
unit required
string Convertible top position unit.
timestamp required
string The timestamp the vehicle convertible top position was recorded. Format according to ISO 8601 format.
{
  "name": "Convertible Top Position (Relative)",
  "technicalName": "convertibletopposition",
  "description": "This value indicates the convertible top position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Convertible Top Position (Relative)",
    "required": [
      "value",
      "timestamp",
      "unit"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Convertible top position value."
      },
      "unit": {
        "type": "string",
        "title": "Convertible top position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle convertible top position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Convertible Top Status

Status of the convertible top.

Name: convertibletopstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle convertible top value.
timestamp required
string The timestamp the vehicle convertible top status was recorded. Format according to ISO 8601 format.
{
  "name": "Convertible Top Status",
  "technicalName": "convertibletopstatus",
  "description": "Status of the convertible top.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Convertible Top Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "LOCKED",
          "UNLOCKED",
          "SAFE",
          "SECURED",
          "INTERMEDIATE",
          "UNKNOWN"
        ],
        "title": "Vehicle convertible top value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle convertible top status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Coolant Temperature

The value indicates the current coolant temperature in degrees centigrade or Fahrenheit at the time of data collection.

Name: coolanttemperature

Delivery Method: pull

ATTRIBUTES

value required
number Coolant temperature value
unit required
string Coolant temperature unit
timestamp required
string The timestamp the coolant temperature was recorded. Format according to ISO 8601 format.
{
  "name": "Coolant Temperature",
  "technicalName": "coolanttemperature",
  "description": "The value indicates the current coolant temperature in degrees centigrade or Fahrenheit at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Coolant Temperature",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Coolant temperature value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "C",
          "F"
        ],
        "title": "Coolant temperature unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the coolant temperature was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Front Left

This value indicates if a crash was detected at the front left at time of data capturing.

Name: crashlocationfrontleft

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location front left value
timestamp required
string The timestamp the Crash location front left value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Front Left",
  "technicalName": "crashlocationfrontleft",
  "description": "This value indicates if a crash was detected at the front left at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Front Left",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location front left value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location front left value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Front Right

This value indicates if a crash was detected at the front right at time of data capturing.

Name: crashlocationfrontright

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location front right value
timestamp required
string The timestamp the Crash location front right value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Front Right",
  "technicalName": "crashlocationfrontright",
  "description": "This value indicates if a crash was detected at the front right at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Front Right",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location front right value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location front right value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Pedestrian Protection

This value indicates if the activation of the pedestrian protection was detected at time of data capturing.

Name: crashlocationpedestrianprotection

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location pedestrian protection value
timestamp required
string The timestamp the Crash location pedestrian protection value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Pedestrian Protection",
  "technicalName": "crashlocationpedestrianprotection",
  "description": "This value indicates if the activation of the pedestrian protection was detected at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Pedestrian Protection",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location pedestrian protection value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location pedestrian protection value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Rear Left

This value indicates if a crash was detected at the rear left at time of data capturing.

Name: crashlocationrearleft

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location rear left value
timestamp required
string The timestamp the Crash location rear left value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Rear Left",
  "technicalName": "crashlocationrearleft",
  "description": "This value indicates if a crash was detected at the rear left at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Rear Left",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location rear left value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location rear left value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Rear Right

This value indicates if a crash was detected at the rear right at time of data capturing.

Name: crashlocationrearright

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location rear right value
timestamp required
string The timestamp the Crash location rear right value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Rear Right",
  "technicalName": "crashlocationrearright",
  "description": "This value indicates if a crash was detected at the rear right at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Rear Right",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location rear right value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location rear right value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Rollover

This value indicates if a rollover was detected at time of data capturing.

Name: crashlocationrollover

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location rollover value
timestamp required
string The timestamp the Crash location rollover value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Rollover",
  "technicalName": "crashlocationrollover",
  "description": "This value indicates if a rollover was detected at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Rollover",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location rollover value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location rollover value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Side Left

This value indicates if a crash was detected at the side left at time of data capturing.

Name: crashlocationsideleft

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location side left value
timestamp required
string The timestamp the Crash location side left value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Side Left",
  "technicalName": "crashlocationsideleft",
  "description": "This value indicates if a crash was detected at the side left at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Side Left",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location side left value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location side left value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Location Side Right

This value indicates if a crash was detected at the side right at time of data capturing.

Name: crashlocationsideright

Delivery Method: pull

ATTRIBUTES

value required
boolean Crash location side right value
timestamp required
string The timestamp the Crash location side right value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Location Side Right",
  "technicalName": "crashlocationsideright",
  "description": "This value indicates if a crash was detected at the side right at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Location Side Right",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Crash location side right value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash location side right value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Crash Severity

This value indicates the severity of the last crash at time of data capturing.

Name: crashseverity

Delivery Method: pull

ATTRIBUTES

value required
number Crash severity value
timestamp required
string The timestamp the Crash severity value was recorded. Format according to ISO 8601 format.
{
  "name": "Crash Severity",
  "technicalName": "crashseverity",
  "description": "This value indicates the severity of the last crash at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Crash Severity",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Crash severity value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Crash severity value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Deep Sleep Status

The deep sleep status of the vehicle.

Name: deepsleepstatus

Delivery Method: pull

ATTRIBUTES

value required
string The deep sleep status of the vehicle
timestamp required
string The timestamp the deep sleep status was recorded. Format according to ISO 8601 format.
{
  "name": "Deep Sleep Status",
  "technicalName": "deepsleepstatus",
  "description": "The deep sleep status of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Deep sleep status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The deep sleep status of the vehicle.",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the deep sleep status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Exhaust Filter Status

This value indicates the diesel exhaust filter status at the time of data capturing.

Name: dieselexhaustfilterstatus

Delivery Method: pull

ATTRIBUTES

value required
string Diesel exhaust filter status
timestamp required
string The timestamp the diesel exhaust filter value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Exhaust Filter Status",
  "technicalName": "dieselexhaustfilterstatus",
  "description": "This value indicates the diesel exhaust filter status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Exhaust Filter Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNKNOWN",
          "NORMAL_OPERATION",
          "OVERLOADED",
          "AT_LIMIT",
          "OVER_LIMIT"
        ],
        "title": "Diesel exhaust filter status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel exhaust filter value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Exhaust Fluid Level (Relative)

This value indicates the diesel exhaust fluid level at the time of data capturing.

Name: dieselexhaustfluidlevel

Delivery Method: pull

ATTRIBUTES

value required
number Diesel exhaust fluid level value.
unit required
string Diesel exhaust fluid level unit.
timestamp required
string The timestamp the diesel exhaust fluid level value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Exhaust Fluid Level (Relative)",
  "technicalName": "dieselexhaustfluidlevel",
  "description": "This value indicates the diesel exhaust fluid level at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Exhaust Fluid Level (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Diesel exhaust fluid level value."
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE"
        ],
        "title": "Diesel exhaust fluid level unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel exhaust fluid level value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Exhaust Fluid Level Range Remaining

This value indicates the diesel exhaust fluid level range remaining at the time of data capturing.

Name: dieselexhaustfluidlevelrangeremaining

Delivery Method: pull

ATTRIBUTES

value required
number Diesel exhaust fluid level range remaining value
unit required
string Diesel exhaust fluid level range remaining unit
timestamp required
string The timestamp the diesel exhaust fluid level range remaining value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Exhaust Fluid Level Range Remaining",
  "technicalName": "dieselexhaustfluidlevelrangeremaining",
  "description": "This value indicates the diesel exhaust fluid level range remaining at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Exhaust Fluid Level Range Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Diesel exhaust fluid level range remaining value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km"
        ],
        "title": "Diesel exhaust fluid level range remaining unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel exhaust fluid level range remaining value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Off-Board Regeneration Status

This value indicates the diesel off-board regeneration status at the time of data capturing.

Name: dieseloffboardregenerationstatus

Delivery Method: pull

ATTRIBUTES

value required
string Diesel off-board regeneration status
timestamp required
string The timestamp the diesel off-board regeneration value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Off-Board Regeneration Status",
  "technicalName": "dieseloffboardregenerationstatus",
  "description": "This value indicates the diesel off-board regeneration status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Off-Board Regeneration Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNKNOWN",
          "NORMAL_OPERATION",
          "OVERLOADED",
          "AT_LIMIT",
          "OVER_LIMIT"
        ],
        "title": "Diesel off-board regeneration status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel off-board regeneration value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Over Boost Code Regulator Status

This value indicates the diesel over boost code regulator status at the time of data capturing.

Name: dieseloverboostcoderegulatorstatus

Delivery Method: pull

ATTRIBUTES

value required
string Diesel over boost code regulator status
timestamp required
string The timestamp the diesel over boost code regulator value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Over Boost Code Regulator Status",
  "technicalName": "dieseloverboostcoderegulatorstatus",
  "description": "This value indicates the diesel over boost code regulator status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Over Boost Code Regulator Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNKNOWN",
          "NORMAL_OPERATION",
          "OVERLOADED",
          "AT_LIMIT",
          "OVER_LIMIT"
        ],
        "title": "Diesel over boost code regulator status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel over boost code regulator value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Particulate Filter Soot Level (Relative)

This value indicates the diesel particulate filter soot level at the time of data capturing.

Name: dieselparticulatefiltersootlevel

Delivery Method: pull

ATTRIBUTES

value required
number Diesel particulate filter soot level value.
unit required
string Diesel particulate filter soot level unit.
timestamp required
string The timestamp the diesel particulate filter soot level value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Particulate Filter Soot Level (Relative)",
  "technicalName": "dieselparticulatefiltersootlevel",
  "description": "This value indicates the diesel particulate filter soot level at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Particulate Filter Soot Level (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Diesel particulate filter soot level value."
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE"
        ],
        "title": "Diesel particulate filter soot level unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel particulate filter soot level value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Diesel Particulate Filter Status

This value indicates the diesel particulate filter status at the time of data capturing.

Name: dieselparticulatefilterstatus

Delivery Method: pull

ATTRIBUTES

value required
string Diesel particulate filter status
timestamp required
string The timestamp the diesel particulate filter value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Particulate Filter Status",
  "technicalName": "dieselparticulatefilterstatus",
  "description": "This value indicates the diesel particulate filter status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Particulate Filter Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNKNOWN",
          "NORMAL_OPERATION",
          "OVERLOADED",
          "AT_LIMIT",
          "OVER_LIMIT"
        ],
        "title": "Diesel particulate filter status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel particulate filter value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Display Distance Unit

Indicates the unit in which distances are displayed on a vehicle panel.

Name: displaydistanceunit

Delivery Method: pull

ATTRIBUTES

value required
string Unit of instrument panel in vehicle.
timestamp required
string The timestamp when unit was recorded. Format according to ISO 8601 format.
{
  "name": "Display Distance Unit",
  "technicalName": "displaydistanceunit",
  "description": "Indicates the unit in which distances are displayed on a vehicle panel.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Display Distance Unit",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Unit of instrument panel in vehicle.",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when unit was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

DTC (Confirmed Diagnostic Trouble Codes)

A list of confirmed diagnostic trouble codes, providing information about errors or technical faults, for a vehicle with a given VIN.

Name: dtcconfirmed

Delivery Method: pull

ATTRIBUTES

value required
object undefined
timestamp
string The last time the error occurred. Format according to ISO 8601 format.
{
  "name": "DTC (Confirmed Diagnostic Trouble Codes)",
  "technicalName": "dtcconfirmed",
  "description": "A list of confirmed diagnostic trouble codes, providing information about errors or technical faults, for a vehicle with a given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Confirmed Diagnostic Trouble Code (DTC)",
    "required": [
      "value"
    ],
    "properties": {
      "value": {
        "type": "object",
        "properties": {
          "asyncStatus": {
            "type": "string"
          },
          "messageTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "receivedTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "string"
          },
          "dtcs": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "dtcId",
                "status",
                "ecuId"
              ],
              "properties": {
                "dtcId": {
                  "type": "string"
                },
                "ecuAddress": {
                  "type": "string"
                },
                "ecuId": {
                  "type": "string"
                },
                "occurrences": {
                  "type": "number"
                },
                "status": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string",
                  "format": "date-time"
                }
              }
            }
          }
        }
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The last time the error occurred. Format according to ISO 8601 format."
      }
    }
  }
}

DTC (Diagnostic Trouble Codes)

A list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.

Name: dtc

Delivery Method: pull

ATTRIBUTES

value required
object undefined
timestamp
string The last time the error occurred. Format according to ISO 8601 format.
{
  "name": "DTC (Diagnostic Trouble Codes)",
  "technicalName": "dtc",
  "description": "A list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diagnostic Trouble Code (DTC)",
    "required": [
      "value"
    ],
    "properties": {
      "value": {
        "type": "object",
        "properties": {
          "asyncStatus": {
            "type": "string"
          },
          "messageTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "receivedTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "string"
          },
          "dtcs": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "dtcId"
              ],
              "properties": {
                "dtcId": {
                  "type": "string"
                },
                "ecuId": {
                  "type": "string"
                },
                "occurrences": {
                  "type": "number"
                },
                "status": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string",
                  "format": "date-time"
                }
              }
            }
          }
        }
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The last time the error occurred. Format according to ISO 8601 format."
      }
    }
  }
}

DTC History (Diagnostic Trouble Codes History)

A history of the list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.

Name: dtchistory

Delivery Method: pull

ATTRIBUTES

fromDate required
string undefined
toDate required
string undefined
history required
object undefined
timestamp
string The timestamp the DTC History was retrieved. Format according to ISO 8601 format.
{
  "name": "DTC History (Diagnostic Trouble Codes History)",
  "technicalName": "dtchistory",
  "description": "A history of the list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "title": "DTC History (Diagnostic Trouble Codes History)",
  "required": [
    "fromDate",
    "toDate",
    "history"
  ],
  "properties": {
    "fromDate": {
      "type": "string",
      "format": "date"
    },
    "toDate": {
      "type": "string",
      "format": "date"
    },
    "history": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "messageTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "receivedTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "string"
          },
          "mileage": {
            "type": "object",
            "properties": {
              "dataPoint": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "number"
                  },
                  "unit": {
                    "type": "string"
                  },
                  "timestamp": {
                    "type": "string",
                    "format": "date-time"
                  }
                },
                "required": ["value", "unit", "timestamp"]
              }
            },
            "required": ["dataPoint"]
          },
          "alerts": {
            "type": ["array", "null"],
            "items": {
              "type": "object",
              "properties": {
                "alertType": {
                  "type": "string"
                },
                "wilCode": {
                  "type": "string"
                },
                "dtcCode": {
                  "type": ["string", "null"]
                },
                "failureType": {
                  "type": ["string", "null"]
                },
                "symptomKey": {
                  "type": "number"
                },
                "customerActionKey": {
                  "type": "number"
                },
                "ecumaps": {
                  "type": ["object", "null"]
                }
              }
            }
          },
          "warnings": {
            "type": ["array", "null"],
            "items": {
              "type": "object",
              "properties": {
                "code": {
                  "type": "string"
                }
              }
            }
          },
          "dtcs": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "dtcId": {
                  "type": "string"
                },
                "ecuId": {
                  "type": "string"
                },
                "ecuStatus": {
                  "type": "string"
                },
                "status": {
                  "type": "string"
                },
                "failureType": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string",
                  "format": "date-time"
                }
              }
            }
          }
        }
      }
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "title": "The timestamp the DTC History was retrieved. Format according to ISO 8601 format."
    }
  }
}

Electric Remaining

Remaining electric range in given unit.

Name: electricremaining

Delivery Method: pull

ATTRIBUTES

value required
number Remaining electric range.
unit required
string The electric range unit.
timestamp required
string The timestamp the remaining electric range was recorded. Format according to ISO 8601 format.
{
  "name": "Electric Remaining",
  "technicalName": "electricremaining",
  "description": "Remaining electric range in given unit.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Electric Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Remaining electric range."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The electric range unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remaining electric range was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Energy Consumption

This value indicates the average electric consumption at the time of data collection.

Name: energyconsumptionaverage

Delivery Method: pull

ATTRIBUTES

value required
number Energy consumption value
unit required
string Energy consumption unit
timestamp required
string The timestamp the energy consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Energy Consumption",
  "technicalName": "energyconsumptionaverage",
  "description": "This value indicates the average electric consumption at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Energy Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Energy consumption value"
      },
      "unit": {
        "type": "string",
        "title": "Energy consumption unit",
        "enum": [
          "kWh/km",
          "kWh/mi",
          "kWh/100km",
          "kWh/62mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the energy consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Engine Oil Amount

This value indicates the engine oil amount at the time of data collection.

Name: engineoilamount

Delivery Method: pull

ATTRIBUTES

value required
number Engine oil amount value
unit required
string Engine oil amount unit
timestamp required
string The timestamp the vehicle engine oil amount value was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Oil Amount",
  "technicalName": "engineoilamount",
  "description": "This value indicates the engine oil amount at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Oil Amount",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Engine oil amount value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "L",
          "GAL"
        ],
        "title": "Engine oil amount unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle engine oil amount value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Engine Oil Level (Relative)

This value indicates the vehicle engine oil liquid fill in percentage.

Name: engineoillevelrelative

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle engine oil level value
unit required
string Vehicle engine oil level unit
timestamp required
string The timestamp the vehicle engine oil level was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Oil Level (Relative)",
  "technicalName": "engineoillevelrelative",
  "description": "This value indicates the vehicle engine oil liquid fill in percentage.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Oil Level (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle engine oil level value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE"
        ],
        "title": "Vehicle engine oil level unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle engine oil level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Engine Status

The status of the engine.

Name: enginestatus

Delivery Method: pull

ATTRIBUTES

value required
string The engine status value
timestamp required
string The timestamp the engine status was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Status",
  "technicalName": "enginestatus",
  "description": "The status of the engine.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The engine status value",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the engine status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

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."
      }
    }
  }
}

Engine Type (Secondary)

This value indicates the secondary engine type.

Name: enginetypesecondary

Delivery Method: pull

ATTRIBUTES

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

Environmental Temperature

The value indicates the current environmental temperature.

Name: environmentaltemperature

Delivery Method: pull

ATTRIBUTES

value required
number Environmental temperature value
unit required
string Environmental temperature unit
timestamp required
string The timestamp the environmental temperature was recorded. Format according to ISO 8601 format.
{
  "name": "Environmental Temperature",
  "technicalName": "environmentaltemperature",
  "description": "The value indicates the current environmental temperature.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Environmental Temperature",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Environmental temperature value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "C",
          "F"
        ],
        "title": "Environmental temperature unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the environmental temperature was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Excessive speeding

This value indicates if the excessive speeding event was triggered by the vehicle.

Name: excessivespeeding

Delivery Method: push

ATTRIBUTES

value required
string The excessive speeding event. If ON, the vehicle speed exceeds the configurable limit for vehicle speed for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the excessive speeding event was recorded. Format according to ISO 8601 format.
{
	"name": "Excessive speeding",
	"technicalName": "excessivespeeding",
	"description": "This value indicates if the excessive speeding event was triggered by the vehicle."
	"lifecycleStatus": "PUBLISHED",
	"type": "IN_VEHICLE",
	"personalData": false,
	"event": true,
	"schema": {
		"$schema": "http://json-schema.org/draft-04/schema#",
		"type": "object",
		"title": "Excessive speeding",
		"required": [
			"value",
			"timestamp"
		],
		"properties": {
			"value": {
				"type": "string",
				"title": "The excessive speeding event. If ON, the vehicle speed exceeds the configurable limit for vehicle speed for a duration exceeding the configurable time duration limit.",
				"enum": [
						"ON",
						"OFF",
						"UNKNOWN"
				]
			},
			"timestamp": {
				"type": "string",
				"format": "date-time",
				"title": "The timestamp the excessive speeding event was recorded. Format according to ISO 8601 format."
			}
		}
	}
}

Free POI Number

Free number of POI in navigation system.

Name: freepoinumber

Delivery Method: pull

ATTRIBUTES

value required
number Value of free POI number.
timestamp required
string The timestamp when free POI number was recorded. Format according to ISO 8601 format.
{
  "name": "Free POI Number",
  "technicalName": "freepoinumber",
  "description": "Free number of POI in navigation system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Free POI Number",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Value of free POI number."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when free POI number was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Front Interior Light Status

Status of the front interior lights.

Name: frontinteriorlightstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front interior light status value.
timestamp required
string The timestamp the vehicle front interior light status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Interior Light Status",
  "technicalName": "frontinteriorlightstatus",
  "description": "Status of the front interior lights.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front Interior Light Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF"
        ],
        "title": "Vehicle front interior light status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front interior light status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Left Door Lock Status

This value indicates if the front left door was locked or not at the time of data capturing.

Name: frontleftdoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front left door lock status value.
timestamp required
string The timestamp the vehicle front left door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Left Door Lock Status",
  "technicalName": "frontleftdoorlockstatus",
  "description": "This value indicates if the front left door was locked or not at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front left door lock status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle front left door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front left door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Left Door Status

Status of the front left door.

Name: frontleftdoorstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front left door status value.
timestamp required
string The timestamp the vehicle front left door status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Left Door Status",
  "technicalName": "frontleftdoorstatus",
  "description": "Status of the front left door.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front Left Door Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "SAFE",
          "UNKNOWN"
        ],
        "title": "Vehicle front left door status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front left door status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Left Window Status

Status of the front left window.

Name: frontleftwindowstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front left window status value.
timestamp required
string The timestamp the vehicle front left window status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Left Window Status",
  "technicalName": "frontleftwindowstatus",
  "description": "Status of the front left window.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front left window status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "INTERMEDIATE",
          "MOVING",
          "AIRING",
          "UNKNOWN"
        ],
        "title": "Vehicle front left window status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front left window status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Right Door Lock Status

This value indicates if the front right door was locked or not at the time of data capturing.

Name: frontrightdoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front right door lock status value.
timestamp required
string The timestamp the vehicle front right door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Right Door Lock Status",
  "technicalName": "frontrightdoorlockstatus",
  "description": "This value indicates if the front right door was locked or not at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front right door lock status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle front right door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front right door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Right Door Status

Status of the front right door.

Name: frontrightdoorstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front right door status value.
timestamp required
string The timestamp the vehicle front right door status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Right Door Status",
  "technicalName": "frontrightdoorstatus",
  "description": "Status of the front right door.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front Right Door Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "SAFE",
          "UNKNOWN"
        ],
        "title": "Vehicle front right door status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front right door status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Front Right Window Status

Status of the front right window.

Name: frontrightwindowstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle front right window status value.
timestamp required
string The timestamp the vehicle front right window status was recorded. Format according to ISO 8601 format.
{
  "name": "Front Right Window Status",
  "technicalName": "frontrightwindowstatus",
  "description": "Status of the front right window.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Front Right Window Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "INTERMEDIATE",
          "MOVING",
          "AIRING",
          "UNKNOWN"
        ],
        "title": "Vehicle front right window status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front right window status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Fuel Level

Liquid fuel tank: level in percentage, liters or gallons.

Name: fuellevel

Delivery Method: pull

ATTRIBUTES

value required
number Fuel tank level in percentage, liters or gallons.
unit required
string The fuel tank level unit.
timestamp required
string The timestamp the fuel tank level was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Level",
  "technicalName": "fuellevel",
  "description": "Liquid fuel tank: level in percentage, liters or gallons.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Fuel tank level in percentage, liters or gallons."
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE",
          "L",
          "GAL"
        ],
        "title": "The fuel tank level unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel tank level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Fuel Level Source

This value indicates if the fuel level value was measured or calculated.

Name: fuellevelsource

Delivery Method: pull

ATTRIBUTES

value required
string Fuel level source value
timestamp required
string The timestamp the vehicle fuel level source value was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Level Source",
  "technicalName": "fuellevelsource",
  "description": "This value indicates if the fuel level value was measured or calculated.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Level Source",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "MEASURED",
          "CALCULATED"
        ],
        "title": "Fuel level source value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle fuel level source value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Fuel Remaining

Liquid fuel tank: remaining range.

Name: fuelremaining

Delivery Method: pull

ATTRIBUTES

value required
number Remaining range in given unit.
unit required
string The fuel tank range unit.
timestamp required
string The timestamp the fuel tank range was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Remaining",
  "technicalName": "fuelremaining",
  "description": "Liquid fuel tank: remaining range.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Remaining range in given unit."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The fuel tank range unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel tank range was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Fuel Tank Door Lock Status

Fuel tank door lock status.

Name: fueldoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle fuel tank door lock status value.
timestamp required
string The timestamp the vehicle gas tank door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Tank Door Lock Status",
  "technicalName": "fueldoorlockstatus",
  "description": "Fuel tank door lock status.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Tank Door Lock Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED"
        ],
        "title": "Vehicle fuel tank door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle gas tank door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Gear Lever Position

Position of the gear lever at the time of measurement

Name: gearleverposition

Delivery Method: pull

ATTRIBUTES

value required
string The gear position value
timestamp required
string The timestamp the gear position was recorded. Format according to ISO 8601 format.
{
  "name": "Gear Lever Position",
  "technicalName": "gearleverposition",
  "description": "Position of the gear lever at the time of measurement",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Gear Lever Position",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The gear position value",
        "enum": [
          "UNKNOWN",
          "PARK",
          "REVERSE",
          "NEUTRAL",
          "DRIVE",
          "SPORT",
          "LOW",
          "1",
          "2",
          "3",
          "4",
          "5",
          "6",
          "7",
          "8",
          "9",
          "10",
          "11",
          "12",
          "13",
          "14",
          "15",
          "16",
          "17",
          "18",
          "19",
          "20",
          "21",
          "22",
          "23",
          "24"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the gear position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Geolocation

The geolocation of the vehicle with given VIN in decimal degree.

Name: geolocation

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value in decimal degree
latitude required
number The latitude value in decimal degree
geoSystem required
string The geo system used for lat/lon
vehicleHeading
number The orientation of the vehicle in degrees.
unit
string The orientation unit.
timestamp required
string The timestamp the position was recorded. Format according to ISO 8601 format.
{
  "name": "Geolocation",
  "technicalName": "geolocation",
  "description": "The geolocation of the vehicle with given VIN in decimal degree.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Geolocation",
    "required": [
      "longitude",
      "latitude",
      "geoSystem",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value in decimal degree"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value in decimal degree"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for lat/lon",
        "default": "WGS84"
      },
      "vehicleHeading": {
        "type": "number",
        "title": "The orientation of the vehicle in degrees."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "The orientation unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Harsh Acceleration

This value indicates if the harsh acceleration event was triggered by the vehicle.

Name: harshacceleration

Delivery Method: push

ATTRIBUTES

value required
string The harsh acceleration event. If ON, the vehicle’s acceleration rate exceeds the configurable limit for hard acceleration for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the harsh acceleration event was recorded. Format according to ISO 8601 format.
{
  "name": "Harsh Acceleration",
  "technicalName": "harshacceleration",
  "description": "This value indicates if the harsh acceleration event was triggered by the vehicle."
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Harsh Acceleration",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The harsh acceleration event. If ON, the vehicle’s acceleration rate exceeds the configurable limit for hard acceleration for a duration exceeding the configurable time duration limit.",
        "enum": [
            "ON",
            "OFF",
            "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the harsh acceleration event was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Harsh braking

This value indicates if the harsh braking event was triggered by the vehicle.

Name: harshbraking

Delivery Method: push

ATTRIBUTES

value required
string The harsh braking event. If ON, the vehicle experienced a hard braking event that causes deceleration to exceed a configurable limit for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the harsh braking event was recorded. Format according to ISO 8601 format.
{
  "name": "Harsh braking",
  "technicalName": "harshbraking",
  "description": "This value indicates if the harsh braking event was triggered by the vehicle."
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Harsh braking",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The harsh braking event. If ON, the vehicle experienced a hard braking event that causes deceleration to exceed a configurable limit for a duration exceeding the configurable time duration limit.",
        "enum": [
            "ON",
            "OFF",
            "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the harsh braking event was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Hood Lock Status

Status of the hood lock.

Name: hoodlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle hood lock status value.
timestamp required
string The timestamp the vehicle hood lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Hood Lock Status",
  "technicalName": "hoodlockstatus",
  "description": "Status of the hood lock.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Hood Lock Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "UNKNOWN"
        ],
        "title": "Vehicle hood lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle hood lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Hood Status

Status of the hood.

Name: hoodstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle hood status value.
timestamp required
string The timestamp the vehicle hood status was recorded. Format according to ISO 8601 format.
{
  "name": "Hood Status",
  "technicalName": "hoodstatus",
  "description": "Status of the hood.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Hood Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN",
          "SAFE"
        ],
        "title": "Vehicle hood status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle hood status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Ignition Status

The status of the ignition.

Name: ignitionstatus

Delivery Method: pull

ATTRIBUTES

value required
string The ignition status value
timestamp required
string The timestamp the ignition status was recorded. Format according to ISO 8601 format.
{
  "name": "Ignition Status",
  "technicalName": "ignitionstatus",
  "description": "The status of the ignition.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Ignition Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The ignition status value",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the ignition status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Adaptive Cruise Control (ACC)

This value indicates status of the adaptive cruise control indicator light at time of data capturing.

Name: adaptivecruisecontrolindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Adaptive Cruise Control (ACC)",
  "technicalName": "adaptivecruisecontrolindicatorlight",
  "description": "This value indicates status of the adaptive cruise control indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Adaptive Cruise Control (ACC)",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Air Filter Minder

This value indicates status of the air filter minder indicator light at time of data capturing.

Name: airfilterminderindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Air Filter Minder",
  "technicalName": "airfilterminderindicatorlight",
  "description": "This value indicates status of the air filter minder indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Air Filter Minder",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Air Suspension Ride Control Fault

This value indicates status of the air suspension ride control fault indicator light at time of data capturing.

Name: airsuspensionridecontrolfaultindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Air Suspension Ride Control Fault",
  "technicalName": "airsuspensionridecontrolfaultindicatorlight",
  "description": "This value indicates status of the air suspension ride control fault indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Air Suspension Ride Control Fault",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - All Wheel Drive Disabled

This value indicates status of the all wheel drive disabled indicator light at time of data capturing.

Name: allwheeldrivedisabledindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - All Wheel Drive Disabled",
  "technicalName": "allwheeldrivedisabledindicatorlight",
  "description": "This value indicates status of the all wheel drive disabled indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - All Wheel Drive Disabled",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Anti Theft

This value indicates status of the anti theft indicator light at time of data capturing.

Name: antitheftindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Anti Theft",
  "technicalName": "antitheftindicatorlight",
  "description": "This value indicates status of the anti theft indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Anti Theft",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Anti-lock Brake System (ABS)

This value indicates status of the anti lock braking system indicator light at time of data capturing.

Name: antilockbrakeindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Anti-lock Brake System (ABS)",
  "technicalName": "antilockbrakeindicatorlight",
  "description": "This value indicates status of the anti lock braking system indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Anti-lock Brake System (ABS)",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Blind Spot Detection

This value indicates status of the blind spot detection indicator light at time of data capturing.

Name: blindspotdetectionindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Blind Spot Detection",
  "technicalName": "blindspotdetectionindicatorlight",
  "description": "This value indicates status of the blind spot detection indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Blind Spot Detection",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Brake Fluid Warning

This value indicates status of the brake fluid warning indicator light at time of data capturing.

Name: brakefluidwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Brake Fluid Warning",
  "technicalName": "brakefluidwarningindicatorlight",
  "description": "This value indicates status of the brake fluid warning indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Brake Fluid Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Brake Lining Wear Warning

This value indicates status of the brake lining wear warning indicator light at time of data capturing.

Name: brakeliningwearwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Brake Lining Wear Warning",
  "technicalName": "brakeliningwearwarningindicatorlight",
  "description": "This value indicates status of the brake lining wear warning indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Brake Lining Wear Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Brake Warning

This value indicates status of the brake indicator light at time of data capturing.

Name: brakewarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Brake Warning",
  "technicalName": "brakewarningindicatorlight",
  "description": "This value indicates status of the brake indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Brake Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Charging System Fault

This value indicates status of the charging system fault indicator light at time of data capturing.

Name: chargesystemfaultindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Charging System Fault",
  "technicalName": "chargesystemfaultindicatorlight",
  "description": "This value indicates status of the charging system fault indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Charging System Fault",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Check Fuel Cap

This value indicates status of the check fuel cap indicator light at time of data capturing.

Name: checkfuelcapindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Check Fuel Cap",
  "technicalName": "checkfuelcapindicatorlight",
  "description": "This value indicates status of the check fuel cap indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Check Fuel Cap",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Check Fuel Filter

This value indicates status of the check fuel filter indicator light at time of data capturing.

Name: checkfuelfilterindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Check Fuel Filter",
  "technicalName": "checkfuelfilterindicatorlight",
  "description": "This value indicates status of the check fuel filter indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Check Fuel Filter",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Check Fuel Inlet

This value indicates status of the check fuel inlet indicator light at time of data capturing.

Name: checkfuelfillinletindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Check Fuel Inlet",
  "technicalName": "checkfuelfillinletindicatorlight",
  "description": "This value indicates status of the check fuel inlet indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Check Fuel Inlet",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - DC Temperature Warning

This value indicates status of the DC temperature warning indicator light at time of data capturing.

Name: dctempwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - DC Temperature Warning",
  "technicalName": "dctempwarningindicatorlight",
  "description": "This value indicates status of the DC temperature warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - DC Temperature Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - DC Warning Status

This value indicates status of the DC warning indicator light at time of data capturing.

Name: dcwarningstatusindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - DC Warning Status",
  "technicalName": "dcwarningstatusindicatorlight",
  "description": "This value indicates status of the DC warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - DC Warning Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Engine Idle-Shutdown

This value indicates status of the diesel engine idle-shutdown indicator light at time of data capturing.

Name: dieselengineidleshutdownindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Engine Idle-Shutdown",
  "technicalName": "dieselengineidleshutdownindicatorlight",
  "description": "This value indicates status of the diesel engine idle-shutdown indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Engine Idle-Shutdown",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Engine Warning

This value indicates status of the diesel engine warning indicator light at time of data capturing.

Name: dieselenginewarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Engine Warning",
  "technicalName": "dieselenginewarningindicatorlight",
  "description": "This value indicates status of the diesel engine warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Engine Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Exhaust Fluid Low

This value indicates status of the diesel exhaust fluid low indicator light at time of data capturing.

Name: dieselexhaustfluidlowindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Exhaust Fluid Low",
  "technicalName": "dieselexhaustfluidlowindicatorlight",
  "description": "This value indicates status of the diesel exhaust fluid low indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Exhaust Fluid Low",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Exhaust Fluid Quality

This value indicates status of the diesel exhaust fluid quality indicator light at time of data capturing.

Name: dieselexhaustfluidqualityindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Exhaust Fluid Quality",
  "technicalName": "dieselexhaustfluidqualityindicatorlight",
  "description": "This value indicates status of the diesel exhaust fluid quality indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Exhaust Fluid Quality",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Exhaust Fluid System Fault

This value indicates status of the diesel exhaust fluid system fault indicator light at time of data capturing.

Name: dieselexhaustfluidsystemfaultindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Exhaust Fluid System Fault",
  "technicalName": "dieselexhaustfluidsystemfaultindicatorlight",
  "description": "This value indicates status of the diesel exhaust fluid system fault indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Exhaust Fluid System Fault",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Exhaust Over Temperature

This value indicates status of the diesel exhaust over temperature indicator light at time of data capturing.

Name: dieselexhaustovertempindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Exhaust Over Temperature",
  "technicalName": "dieselexhaustovertempindicatorlight",
  "description": "This value indicates status of the diesel exhaust over temperature indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Exhaust Over Temperature",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Filter Regeneration

This value indicates status of the diesel filter regeneration indicator light at time of data capturing.

Name: dieselfilterregenerationindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Filter Regeneration",
  "technicalName": "dieselfilterregenerationindicatorlight",
  "description": "This value indicates status of the diesel filter regeneration indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Filter Regeneration",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Particulate Filter

This value indicates status of the diesel particulate filter indicator light at time of data capturing.

Name: dieselparticulatefilterindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Particulate Filter",
  "technicalName": "dieselparticulatefilterindicatorlight",
  "description": "This value indicates status of the diesel particulate filter indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Particulate Filter",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Diesel Pre Heat

This value indicates status of the diesel pre heat indicator light at time of data capturing.

Name: dieselpreheatindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Pre Heat",
  "technicalName": "dieselpreheatindicatorlight",
  "description": "This value indicates status of the diesel pre heat indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Pre Heat",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Trailer Brake Connection

This value indicates status of the electric trailer brake connection indicator light at time of data capturing.

Name: electrictrailerbrakeconnectionindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Trailer Brake Connection",
  "technicalName": "electrictrailerbrakeconnectionindicatorlight",
  "description": "This value indicates status of the electric trailer brake connection indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Trailer Brake Connection",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Cell Maximum Voltage Warning

This value indicates status of the electric vehicle battery maximum cell voltage warning indicator light at time of data capturing.

Name: evbattcellmaxvoltwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Cell Maximum Voltage Warning",
  "technicalName": "evbattcellmaxvoltwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery maximum cell voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Cell Maximum  Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Cell Minimum Voltage Warning

This value indicates status of the electric vehicle battery minimum cell voltage warning indicator light at time of data capturing.

Name: evbattcellminvoltwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Cell Minimum Voltage Warning",
  "technicalName": "evbattcellminvoltwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery minimum cell voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Cell Minimum  Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Charge Energy Storage Warning

This value indicates status of the electric vehicle battery charge energy storage warning indicator light at time of data capturing.

Name: evbattchargeenergystoragewarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Charge Energy Storage Warning",
  "technicalName": "evbattchargeenergystoragewarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery charge energy storage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Charge Energy Storage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery High Temperature Warning

This value indicates status of the electric vehicle battery temperature warning indicator light at time of data capturing.

Name: evbatthightempwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery High Temperature Warning",
  "technicalName": "evbatthightempwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery temperature warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery High Temperature Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Insulation Resistance Warning

This value indicates status of the electric vehicle battery insulation resistance warning indicator light at time of data capturing.

Name: evbattinsulationresistwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Insulation Resistance Warning",
  "technicalName": "evbattinsulationresistwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery insulation resistance warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Insulation Resistance Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Jump Level Warning

This value indicates status of the electric vehicle battery jump level warning indicator light at time of data capturing.

Name: evbattjumplevelwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Jump Level Warning",
  "technicalName": "evbattjumplevelwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery jump level warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Jump Level Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Overcharge Warning

This value indicates status of the electric vehicle battery overcharge warning indicator light at time of data capturing.

Name: evbattoverchargewarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Overcharge Warning",
  "technicalName": "evbattoverchargewarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery overcharge warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Overcharge Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Poor Cell Warning

This value indicates status of the electric vehicle battery poor cell warning indicator light at time of data capturing.

Name: evbattpoorcellwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Poor Cell Warning",
  "technicalName": "evbattpoorcellwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery poor cell warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Poor Cell Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Battery Temperature Difference Warning

This value indicates status of the electric vehicle battery temperature difference warning indicator light at time of data capturing.

Name: evbatttempdiffwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Battery Temperature Difference Warning",
  "technicalName": "evbatttempdiffwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle battery temperature difference warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Battery Temperature Difference Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle High Battery Voltage Warning

This value indicates status of the electric vehicle high battery voltage warning indicator light at time of data capturing.

Name: evbatthighlevelwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle High Battery Voltage Warning",
  "technicalName": "evbatthighlevelwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle high battery voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle High Battery Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Low Battery Voltage Warning

This value indicates status of the electric vehicle low battery voltage warning indicator light at time of data capturing.

Name: evbattlowlevelwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Low Battery Voltage Warning",
  "technicalName": "evbattlowlevelwarningindicatorlight",
  "description": "This value indicates status of the electric vehicle low battery voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Low Battery Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Maximum Battery Voltage Warning

This value indicates status of the electric vehicle maximum battery voltage warning indicator light at time of data capturing.

Name: evbattmaxvoltvehicleenergywarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Maximum Battery Voltage Warning",
  "technicalName": "evbattmaxvoltvehicleenergywarningindicatorlight",
  "description": "This value indicates status of the electric vehicle maximum battery voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Maximum Battery Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electric Vehicle Minimum Battery Voltage Warning

This value indicates status of the electric vehicle minimum battery voltage warning indicator light at time of data capturing.

Name: evbattminvoltvehicleenergywarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electric Vehicle Minimum Battery Voltage Warning",
  "technicalName": "evbattminvoltvehicleenergywarningindicatorlight",
  "description": "This value indicates status of the electric vehicle minimum battery voltage warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electric Vehicle Minimum Battery Voltage Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Electronic Stability Control Status

This value indicates status of the electronic stability control indicator light at time of data capturing.

Name: electronicstabilitycontrolindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Electronic Stability Control Status",
  "technicalName": "electronicstabilitycontrolindicatorlight",
  "description": "This value indicates status of the electronic stability control indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Electronic Stability Control Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Engine Coolant Level Warning

This value indicates status of the engine coolant level warning indicator light at time of data capturing.

Name: enginecoolantlevelwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Engine Coolant Level Warning",
  "technicalName": "enginecoolantlevelwarningindicatorlight",
  "description": "This value indicates status of the engine coolant level warning indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Engine Coolant Level Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Engine Coolant Over Temperature

This value indicates status of the engine coolant over temperature indicator light at time of data capturing.

Name: enginecoolantovertempindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Engine Coolant Over Temperature",
  "technicalName": "enginecoolantovertempindicatorlight",
  "description": "This value indicates status of the engine coolant over temperature indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Engine Coolant Over Temperature",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Engine Malfunction

This value indicates status of the engine malfunction indicator light at time of data capturing.

Name: malfunctionindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Engine Malfunction",
  "technicalName": "malfunctionindicatorlight",
  "description": "This value indicates status of the engine malfunction indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Engine Malfunction",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Fasten Seat Belt Warning

This value indicates status of the fasten seat belt warning indicator light at time of data capturing.

Name: fastenseatbeltwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Fasten Seat Belt Warning",
  "technicalName": "fastenseatbeltwarningindicatorlight",
  "description": "This value indicates status of the fasten seat belt warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Fasten Seat Belt Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Forward Collision Warning

This value indicates status of the forward collision warning indicator light at time of data capturing.

Name: forwardcollisionwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Forward Collision Warning",
  "technicalName": "forwardcollisionwarningindicatorlight",
  "description": "This value indicates status of the forward collision warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Forward Collision Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Fuel Door Open

This value indicates status of the fuel door open indicator light at time of data capturing.

Name: fueldooropenindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Fuel Door Open",
  "technicalName": "fueldooropenindicatorlight",
  "description": "This value indicates status of the fuel door open indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Fuel Door Open",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - High Voltage Interlock Status Warning

This value indicates status of the high voltage interlock status warning indicator light at time of data capturing.

Name: hvinterlockingstatuswarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - High Voltage Interlock Status Warning",
  "technicalName": "hvinterlockingstatuswarningindicatorlight",
  "description": "This value indicates status of the high voltage interlock status warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - High Voltage Interlock Status Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Hill Descent Control Fault

This value indicates status of the hill descent control fault indicator light at time of data capturing.

Name: hilldescentcontrolfaultindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Hill Descent Control Fault",
  "technicalName": "hilldescentcontrolfaultindicatorlight",
  "description": "This value indicates status of the hill descent control fault indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Hill Descent Control Fault",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Hill Start Assist Warning

This value indicates status of the hill start assist warning indicator light at time of data capturing.

Name: hillstartassistwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Hill Start Assist Warning",
  "technicalName": "hillstartassistwarningindicatorlight",
  "description": "This value indicates status of the hill start assist warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Hill Start Assist Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Hybrid and Electric Vehicle Hazard

This value indicates status of the hybrid and electric vehicle hazard indicator light at time of data capturing.

Name: hevhazardindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Hybrid and Electric Vehicle Hazard",
  "technicalName": "hevhazardindicatorlight",
  "description": "This value indicates status of the hybrid and electric vehicle hazard indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Hybrid and Electric Vehicle Hazard",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Lane Assist

This value indicates status of the lane assist indicator light at time of data capturing.

Name: laneassistindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Lane Assist",
  "technicalName": "laneassistindicatorlight",
  "description": "This value indicates status of the lane assist indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Lane Assist",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Lighting System Failure

This value indicates status of the lighting system failure indicator light at time of data capturing.

Name: lightingsystemfailureindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Lighting System Failure",
  "technicalName": "lightingsystemfailureindicatorlight",
  "description": "This value indicates status of the lighting system failure indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Lighting System Failure",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Battery Warning

This value indicates status of the low battery warning indicator light at time of data capturing.

Name: batterylowwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Battery Warning",
  "technicalName": "batterylowwarningindicatorlight",
  "description": "This value indicates status of the low battery warning indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Battery Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Engine Oil Pressure

This value indicates status of the low engine oil pressure indicator light at time of data capturing.

Name: lowengineoilpressureindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Engine Oil Pressure",
  "technicalName": "lowengineoilpressureindicatorlight",
  "description": "This value indicates status of the low engine oil pressure indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Engine Oil Pressure",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Fuel

This value indicates status of the low fuel indicator light at time of data capturing.

Name: lowfuelindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Fuel",
  "technicalName": "lowfuelindicatorlight",
  "description": "This value indicates status of the low fuel indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Fuel",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Speed Collision Mitigation

This value indicates status of the low speed collision mitigation indicator light at time of data capturing.

Name: lowspeedcollisionmitigationindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Speed Collision Mitigation",
  "technicalName": "lowspeedcollisionmitigationindicatorlight",
  "description": "This value indicates status of the low speed collision mitigation indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Speed Collision Mitigation",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Speed Collision Mitigation System

This value indicates status of the low speed collision mitigation system indicator light at time of data capturing.

Name: lowspeedcollisionmitigationsystemindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Speed Collision Mitigation System",
  "technicalName": "lowspeedcollisionmitigationsystemindicatorlight",
  "description": "This value indicates status of the low speed collision mitigation system indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Speed Collision Mitigation System",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Low Washer Fluid

This value indicates status of the low washer fluid indicator light at time of data capturing.

Name: lowwasherfluidindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Low Washer Fluid",
  "technicalName": "lowwasherfluidindicatorlight",
  "description": "This value indicates status of the low washer fluid indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Low Washer Fluid",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Motor Controller Temperature Warning

This value indicates status of the motor controller temperature warning indicator light at time of data capturing.

Name: motorcontrollertempwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Motor Controller Temperature Warning",
  "technicalName": "motorcontrollertempwarningindicatorlight",
  "description": "This value indicates status of the motor controller temperature warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Motor Controller Temperature Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Park Aid Malfunction

This value indicates status of the park aid malfunction indicator light at time of data capturing.

Name: parkaidmalfunctionindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Park Aid Malfunction",
  "technicalName": "parkaidmalfunctionindicatorlight",
  "description": "This value indicates status of the park aid malfunction indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Park Aid Malfunction",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Passive Entry Passive Start

This value indicates status of the passive entry passive start indicator light at time of data capturing.

Name: passiveentrypassivestartindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Passive Entry Passive Start",
  "technicalName": "passiveentrypassivestartindicatorlight",
  "description": "This value indicates status of the passive entry passive start indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Passive Entry Passive Start",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Powertrain Malfunction

This value indicates status of the powertrain malfunction indicator light at time of data capturing.

Name: powertrainmalfunctionindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Powertrain Malfunction",
  "technicalName": "powertrainmalfunctionindicatorlight",
  "description": "This value indicates status of the powertrain malfunction indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Powertrain Malfunction",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Pre Brake Lining Wear Warning

This value indicates status of the pre brake lining wear warning light at time of data capturing.

Name: prebrakeliningwearwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Pre Brake Lining Wear Warning",
  "technicalName": "prebrakeliningwearwarningindicatorlight",
  "description": "This value indicates status of the pre brake lining wear warning light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Pre Brake Lining Wear Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Rear Cross Warning

This value indicates status of the rear cross warning indicator light at time of data capturing.

Name: rearcrosswarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Rear Cross Warning",
  "technicalName": "rearcrosswarningindicatorlight",
  "description": "This value indicates status of the rear cross warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Rear Cross Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Restraints Indicator Warning

This value indicates status of the restraints warning indicator light at time of data capturing.

Name: restraintsindicatorwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Restraints Indicator Warning",
  "technicalName": "restraintsindicatorwarningindicatorlight",
  "description": "This value indicates status of the restraints warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Restraints Indicator Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Start Stop Engine Warning

This value indicates status of the start stop engine warning indicator light at time of data capturing.

Name: startstopenginewarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Start Stop Engine Warning",
  "technicalName": "startstopenginewarningindicatorlight",
  "description": "This value indicates status of the start stop engine warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Start Stop Engine Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Steering System

This value indicates status of the steering system indicator light at time of data capturing.

Name: steeringindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Steering System",
  "technicalName": "steeringindicatorlight",
  "description": "This value indicates status of the steering system indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Steering System",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Tire Pressure Monitor System Error

This value indicates status of the tire pressure monitor system error indicator light at time of data capturing.

Name: tirepressuremonitorsystemerrorindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Tire Pressure Monitor System Error",
  "technicalName": "tirepressuremonitorsystemerrorindicatorlight",
  "description": "This value indicates status of the tire pressure monitor system error indicator light at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Tire Pressure Monitor System Error",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Tire Pressure Monitor System Warning

This value indicates status of the tire pressure monitoring system warning indicator light at time of data capturing.

Name: tirepressuremonitorsystemwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Tire Pressure Monitor System Warning",
  "technicalName": "tirepressuremonitorsystemwarningindicatorlight",
  "description": "This value indicates status of the tire pressure monitoring system warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Tire Pressure Monitor System Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Traction control Disabled

This value indicates status of the traction control disabled indicator light at time of data capturing.

Name: tractioncontroldisabledindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Traction control Disabled",
  "technicalName": "tractioncontroldisabledindicatorlight",
  "description": "This value indicates status of the traction control disabled indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Traction control Disabled",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Traction Control Event

This value indicates status of the traction control event indicator light at time of data capturing.

Name: tractioncontroleventindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Traction Control Event",
  "technicalName": "tractioncontroleventindicatorlight",
  "description": "This value indicates status of the traction control event indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Traction Control Event",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Traction Motor Temperature Warning

This value indicates status of the traction motor temperature warning indicator light at time of data capturing.

Name: tractionmotortempwarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Traction Motor Temperature Warning",
  "technicalName": "tractionmotortempwarningindicatorlight",
  "description": "This value indicates status of the traction motor temperature warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Traction Motor Temperature Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Urea Warning

This value indicates status of the urea warning indicator light at time of data capturing.

Name: ureawarningindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Urea Warning",
  "technicalName": "ureawarningindicatorlight",
  "description": "This value indicates status of the urea warning indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Urea Warning",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Indicator Light - Water in Fuel

This value indicates status of the water in fuel indicator light at time of data capturing.

Name: waterinfuelindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Water in Fuel",
  "technicalName": "waterinfuelindicatorlight",
  "description": "This value indicates status of the water in fuel indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Water in Fuel",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Intelligent Emergency Call Automatic

This value indicates if the automatic intelligent emergency call was triggered at time of data capturing.

Name: intelligentemergencycallautomatic

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the automatic intelligent emergency call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the automatic intelligent emergency call was recorded. Format according to ISO 8601 format.
{
  "name": "Intelligent Emergency Call Automatic",
  "technicalName": "intelligentemergencycallautomatic",
  "description": "This value indicates if the automatic intelligent emergency call was triggered at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Intelligent Emergency Call Automatic",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the automatic intelligent emergency call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the automatic intelligent emergency call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Intelligent Emergency Call Manual

This value indicates if the manual intelligent emergency call was triggered at time of data capturing.

Name: intelligentemergencycallmanual

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the manual intelligent emergency call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the manual intelligent emergency call was recorded. Format according to ISO 8601 format.
{
  "name": "Intelligent Emergency Call Manual",
  "technicalName": "intelligentemergencycallmanual",
  "description": "This value indicates if the manual intelligent emergency call was triggered at time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Intelligent Emergency Call Manual",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the manual intelligent emergency call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the manual intelligent emergency call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Parking Position

Last parking position of the vehicle.

Name: lastparkingposition

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value in decimal degree
latitude required
number The latitude value in decimal degree
geoSystem
string The geo system used for latitude/longitude
vehicleHeading
number The orientation of the vehicle in degrees.
unit required
string The orientation unit.
timestamp required
string The timestamp the last parking position was recorded. Format according to ISO 8601 format.
{
  "name": "Last Parking Position",
  "technicalName": "lastparkingposition",
  "description": "Last parking position of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last parking position",
    "required": [
      "longitude",
      "latitude",
      "unit",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value in decimal degree"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value in decimal degree"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for latitude/longitude",
        "default": "WGS84"
      },
      "vehicleHeading": {
        "type": "number",
        "title": "The orientation of the vehicle in degrees."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "The orientation unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last parking position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Battery Voltage Level

Charging status of the high-voltage battery at the end of the most recent drive.

Name: lasttripsochighlevel

Delivery Method: pull

ATTRIBUTES

value required
number Last trip battery voltage value
unit required
string Last trip battery voltage level unit
timestamp required
string The timestamp the last trip battery voltage level was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Battery Voltage Level",
  "technicalName": "lasttripsochighlevel",
  "description": "Charging status of the high-voltage battery at the end of the most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Battery Voltage Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip battery voltage value"
      },
      "unit": {
        "type": "string",
        "title": "Last trip battery voltage level unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip battery voltage level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Driving Style Acceleration

Driving style acceleration behaviour [0-5].

Name: lasttripaccelerationstars

Delivery Method: pull

ATTRIBUTES

value required
number Driving style acceleration value
timestamp required
string The timestamp the driving style acceleration was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Driving Style Acceleration",
  "technicalName": "lasttripaccelerationstars",
  "description": "Driving style acceleration behaviour [0-5].",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Driving Style Acceleration",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Driving style acceleration value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the driving style acceleration was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Driving Style Braking

Driving style braking behaviour [0-5].

Name: lasttripbrakingstars

Delivery Method: pull

ATTRIBUTES

value required
number Driving style braking value
timestamp required
string The timestamp the driving style braking was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Driving Style Braking",
  "technicalName": "lasttripbrakingstars",
  "description": "Driving style braking behaviour [0-5].",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Driving Style Braking",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Driving style braking value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the driving style braking was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip ECO Mode Activation Period

Length of time for which ECO mode was activated during most recent drive.

Name: lasttripecoactivationperiod

Delivery Method: pull

ATTRIBUTES

value required
number ECO mode activation value
unit required
string ECO mode activation unit
timestamp required
string The timestamp the ECO mode activation was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip ECO Mode Activation Period",
  "technicalName": "lasttripecoactivationperiod",
  "description": "Length of time for which ECO mode was activated during most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip ECO Mode Activation Period",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "ECO mode activation value"
      },
      "unit": {
        "type": "string",
        "title": "ECO mode activation unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the ECO mode activation was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip ECO Plus Mode Activation Period

Length of time for which ECO Plus mode was activated during most recent drive.

Name: lasttripecoplusactivationperiod

Delivery Method: pull

ATTRIBUTES

value required
number ECO Plus mode activation value
unit required
string ECO Plus mode activation unit
timestamp required
string The timestamp the ECO Plus mode activation was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip ECO Plus Mode Activation Period",
  "technicalName": "lasttripecoplusactivationperiod",
  "description": "Length of time for which ECO Plus mode was activated during most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip ECO Plus Mode Activation Period",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "ECO Plus mode activation value"
      },
      "unit": {
        "type": "string",
        "title": "ECO Plus mode activation unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the ECO Plus mode activation was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Electric Distance

Electrically driven distance during the most recent drive.

Name: lasttripelectricdistance

Delivery Method: pull

ATTRIBUTES

value required
number Last trip electric distance value
unit required
string Last trip electric distance unit
timestamp required
string The timestamp the last trip electric distance was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Electric Distance",
  "technicalName": "lasttripelectricdistance",
  "description": "Electrically driven distance during the most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Electric Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip electric distance value"
      },
      "unit": {
        "type": "string",
        "title": "Last trip electric distance unit",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip electric distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip End Position

Parking position of the vehicle.

Name: lasttripendposition

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value in decimal degree
latitude required
number The latitude value in decimal degree
geoSystem
string The geo system used for latitude/longitude
vehicleHeading
number The orientation of the vehicle in degrees.
unit required
string The orientation unit.
timestamp required
string The timestamp the last trip end position was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip End Position",
  "technicalName": "lasttripendposition",
  "description": "Parking position of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last trip end position",
    "required": [
      "longitude",
      "latitude",
      "unit",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value in decimal degree"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value in decimal degree"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for latitude/longitude",
        "default": "WGS84"
      },
      "vehicleHeading": {
        "type": "number",
        "title": "The orientation of the vehicle in degrees."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "The orientation unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip end position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Energy Consumption

Energy consumption.

Name: lasttripenergyconsumption

Delivery Method: pull

ATTRIBUTES

value required
number Energy consumption value
unit required
string Energy consumption unit
timestamp required
string The timestamp the energy consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Energy Consumption",
  "technicalName": "lasttripenergyconsumption",
  "description": "Energy consumption.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Energy Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Energy consumption value"
      },
      "unit": {
        "type": "string",
        "title": "Energy consumption unit",
        "enum": [
          "kWh"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the energy consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Energy Consumption Comfort

Energy consumption in COMFORT mode.

Name: lasttripenergyconsumptioncomfort

Delivery Method: pull

ATTRIBUTES

value required
number Energy consumption value
unit required
string Energy consumption unit
timestamp required
string The timestamp the energy consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Energy Consumption Comfort",
  "technicalName": "lasttripenergyconsumptioncomfort",
  "description": "Energy consumption in COMFORT mode.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Energy Consumption Comfort",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Energy consumption value"
      },
      "unit": {
        "type": "string",
        "title": "Energy consumption unit",
        "enum": [
          "kWh"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the energy consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Energy Recuperation

Average electrical energy recuperated during last drive.

Name: lasttripenergyrecuperation

Delivery Method: pull

ATTRIBUTES

value required
number Last trip energy recuperation value
unit required
string Last trip energy recuperation unit
timestamp required
string The timestamp the last trip energy recuperation was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Energy Recuperation",
  "technicalName": "lasttripenergyrecuperation",
  "description": "Average electrical energy recuperated during last drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Energy Recuperation",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip energy recuperation value"
      },
      "unit": {
        "type": "string",
        "title": "Last trip energy recuperation unit",
        "enum": [
          "kWh/km",
          "kWh/mi",
          "kWh/100km",
          "kWh/62mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip energy recuperation was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Fuel Consumption

This value indicates the fuel consumption during last drive.

Name: lasttripfuelconsumption

Delivery Method: pull

ATTRIBUTES

value required
number Last trip fuel consumption value.
unit required
string Last trip fuel consumption unit.
timestamp required
string The timestamp the last trip fuel consumption was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Fuel Consumption",
  "technicalName": "lasttripfuelconsumption",
  "description": "This value indicates the fuel consumption during last drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Fuel Consumption",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip fuel consumption value."
      },
      "unit": {
        "type": "string",
        "title": "Last trip fuel consumption unit.",
        "enum": [
          "L",
          "gal"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip fuel consumption was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Mileage

Total mileage after last drive.

Name: lasttripmileageend

Delivery Method: pull

ATTRIBUTES

value required
number Last trip mileage value
unit required
string Last trip mileage unit
timestamp required
string The timestamp the last trip mileage was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Mileage",
  "technicalName": "lasttripmileageend",
  "description": "Total mileage after last drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Mileage",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Last trip mileage value"
      },
      "unit": {
        "type": "string",
        "title": "Last trip mileage unit",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip mileage was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Last Trip Time End

Date and time of the most recent drive.

Name: lasttriptimeend

Delivery Method: pull

ATTRIBUTES

value required
string Last trip time value
timestamp required
string The timestamp the last trip time was recorded. Format according to ISO 8601 format.
{
  "name": "Last Trip Time End",
  "technicalName": "lasttriptimeend",
  "description": "Date and time of the most recent drive.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Last Trip Time End",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Last trip time value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the last trip time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Left Reading Lamp Status

Status of the left reading lamp.

Name: leftreadinglampstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle left reading lamp status value.
timestamp required
string The timestamp the vehicle left reading lamp status was recorded. Format according to ISO 8601 format.
{
  "name": "Left Reading Lamp Status",
  "technicalName": "leftreadinglampstatus",
  "description": "Status of the left reading lamp.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Left Reading Lamp Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF"
        ],
        "title": "Vehicle left reading lamp status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle left reading lamp status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Light Status

Status of the light.

Name: lightstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle light status value.
timestamp required
string The timestamp the vehicle light status was recorded. Format according to ISO 8601 format.
{
  "name": "Light Status",
  "technicalName": "lightstatus",
  "description": "Status of the light.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Light Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "AUTO",
          "PARKINGLIGHT",
          "HIGHBEAM",
          "UNKNOWN"
        ],
        "title": "Vehicle light status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle light status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Maximum POI Number

Maximum number of POI stored in navigation system.

Name: poimaxmemorynumber

Delivery Method: pull

ATTRIBUTES

value required
number Value of maximum POI number.
timestamp required
string The timestamp when maximum POI number was recorded. Format according to ISO 8601 format.
{
  "name": "Maximum POI Number",
  "technicalName": "poimaxmemorynumber",
  "description": "Maximum number of POI stored in navigation system.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Maximum POI Number",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Value of maximum POI number."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when maximum POI number was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Mileage

The mileage of the vehicle with given VIN.

Name: mileage

Delivery Method: pull

ATTRIBUTES

value required
number The actual mileage number
unit required
string The mileage unit
timestamp required
string The timestamp when the mileage was recorded. Format according to ISO 8601 format.
{
  "name": "Mileage",
  "technicalName": "mileage",
  "description": "The mileage of the vehicle with given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Mileage",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The actual mileage number"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The mileage unit"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when the mileage was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Mobile Phone Connected Status

Status of mobile phone

Name: mobilephoneconnectedstatus

Delivery Method: pull

ATTRIBUTES

value required
boolean Mobile phone status value
timestamp required
string The timestamp the mobile phone status was recorded. Format according to ISO 8601 format.
{
  "name": "Mobile Phone Connected Status",
  "technicalName": "mobilephoneconnectedstatus",
  "description": "Status of mobile phone",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Mobile Phone Connected Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Mobile phone status value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the mobile phone status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Motion Status

Indicates whether vehicle was in motion

Name: motionstatus

Delivery Method: pull

ATTRIBUTES

value required
boolean Motion status value
timestamp required
string The timestamp the motion status was recorded. Format according to ISO 8601 format.
{
  "name": "Motion Status",
  "technicalName": "motionstatus",
  "description": "Indicates whether vehicle was in motion",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Motion Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Motion status value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the motion status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Navigation Destination

The coordinates of the active navigation destination.

Name: navigationdestination

Delivery Method: pull

ATTRIBUTES

longitude required
number The longitude value
latitude required
number The latitude value
geoSystem
string The geo system used for latitude/longitude
timestamp required
string The timestamp when navigation destination value was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Destination",
  "technicalName": "navigationdestination",
  "description": "The coordinates of the active navigation destination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Destination",
    "required": [
      "longitude",
      "latitude",
      "timestamp"
    ],
    "properties": {
      "longitude": {
        "type": "number",
        "title": "The longitude value"
      },
      "latitude": {
        "type": "number",
        "title": "The latitude value"
      },
      "geoSystem": {
        "type": "string",
        "enum": [
          "WGS84"
        ],
        "title": "The geo system used for latitude/longitude",
        "default": "WGS84"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when navigation destination value was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Navigation Destination Arrival Time

The arrival time (hh:mm) at the navigation destination.

Name: navigationarrivaltime

Delivery Method: pull

ATTRIBUTES

value required
string Value of arrival time.
timestamp required
string The timestamp when arrival time was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Destination Arrival Time",
  "technicalName": "navigationarrivaltime",
  "description": "The arrival time (hh:mm) at the navigation destination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Destination Arrival Time",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Value of arrival time."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when arrival time was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Navigation Destination Distance

The distance to the active navigation destination.

Name: navigationdistance

Delivery Method: pull

ATTRIBUTES

value required
number The value of navigation destination
unit required
string The unit of navigation destination value
timestamp required
string The timestamp when navigation destination distance was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Destination Distance",
  "technicalName": "navigationdistance",
  "description": "The distance to the active navigation destination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Destination Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of navigation destination"
      },
      "unit": {
        "type": "string",
        "title": "The unit of navigation destination value",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when navigation destination distance was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Navigation Fuel Remaining

Remaining fuel range in km or mi, updated when an accident call or the concierge service is triggered.

Name: navigationfuelremaining

Delivery Method: pull

ATTRIBUTES

value required
number Remaining range in given unit.
unit required
string The fuel tank range unit.
timestamp required
string The timestamp the fuel tank range was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Fuel Remaining",
  "technicalName": "navigationfuelremaining",
  "description": "Remaining fuel range in km or mi, updated when an accident call or the concierge service is triggered.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Fuel Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Remaining range in given unit."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The fuel tank range unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel tank range was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Brake Fluid Change Date

This value indicates when the brake fluid should be changed.

Name: nextbrakefluidchangedate

Delivery Method: pull

ATTRIBUTES

value required
string Next brake fluid change date value
timestamp required
string The timestamp the vehicle next brake fluid change date was recorded. Format according to ISO 8601 format.
{
  "name": "Next Brake Fluid Change Date",
  "technicalName": "nextbrakefluidchangedate",
  "description": "This value indicates when the brake fluid should be changed.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Brake Fluid Change Date",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Next brake fluid change date value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next brake fluid change date was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Break Fluid Change Date (Deprecated)

Deprecated - This value indicates when the brake fluid should be changed.

Name: nextbreakfluidchangedate

Delivery Method: pull

ATTRIBUTES

value required
string Next break fluid change date value
timestamp required
string The timestamp the vehicle next break fluid change date was recorded. Format according to ISO 8601 format.
{
  "name": "Next Break Fluid Change Date (Deprecated)",
  "technicalName": "nextbreakfluidchangedate",
  "description": "Deprecated - This value indicates when the brake fluid should be changed.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Break Fluid Change Date",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Next break fluid change date value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next break fluid change date was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Legal Inspection Date

This value indicates when the next inspection is due.

Name: nextlegalinspectiondate

Delivery Method: pull

ATTRIBUTES

value required
string Next legal inspection date value
timestamp required
string The timestamp the vehicle next legal inspection date was recorded. Format according to ISO 8601 format.
{
  "name": "Next Legal Inspection Date",
  "technicalName": "nextlegalinspectiondate",
  "description": "This value indicates when the next inspection is due.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Legal Inspection Date",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Next legal inspection date value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next legal inspection date was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Oil Service Date

This value indicates the date of the next oil service.

Name: nextoilservicedate

Delivery Method: pull

ATTRIBUTES

value required
string Next oil service date value
timestamp required
string The timestamp the vehicle next oil service date was recorded. Format according to ISO 8601 format.
{
  "name": "Next Oil Service Date",
  "technicalName": "nextoilservicedate",
  "description": "This value indicates the date of the next oil service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Oil Service Date",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Next oil service date value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next oil service date was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Oil Service Distance

This value indicates remaining distance until the next oil service is due.

Name: nextoilservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Next oil service value
unit required
string Next oil service unit
timestamp required
string The timestamp the vehicle next oil service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Next Oil Service Distance",
  "technicalName": "nextoilservicedistance",
  "description": "This value indicates remaining distance until the next oil service is due.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Oil Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Next oil service value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Next oil service unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next oil service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Service Advisor Notification

Indicates when service advisor will be notified about next vehicle service.

Name: nextserviceadvisornotification

Delivery Method: pull

ATTRIBUTES

value required
number The value of next service advisor notification period.
units
string The next service advisor notification period unit.
timestamp required
string The timestamp when next service advisor notification was recorded. Format according to ISO 8601 format.
{
  "name": "Next Service Advisor Notification",
  "technicalName": "nextserviceadvisornotification",
  "description": "Indicates when service advisor will be notified about next vehicle service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Service Advisor Notification",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of next service advisor notification period."
      },
      "units": {
        "type": "string",
        "enum": [
          "DAY",
          "WEEK",
          "MONTH"
        ],
        "title": "The next service advisor notification period unit."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when next service advisor notification was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Next Service Date

This value specifies when the next service is due.

Name: nextservicedate

Delivery Method: pull

ATTRIBUTES

value required
string Next service date value
timestamp required
string The timestamp the vehicle next service date was recorded. Format according to ISO 8601 format.
{
  "name": "Next Service Date",
  "technicalName": "nextservicedate",
  "description": "This value specifies when the next service is due.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Service Date",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "format": "date-time",
        "title": "Next service date value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next service date was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Next Service Distance

This value indicates how many kilometres or miles remain before the next service at the time of recording the data.

Name: nextservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Next service distance value
unit required
string Next service distance unit
timestamp required
string The timestamp the vehicle next service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Next Service Distance",
  "technicalName": "nextservicedistance",
  "description": "This value indicates how many kilometres or miles remain before the next service at the time of recording the data.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Next service distance value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Next service distance unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Interior Light Status

Status of the rear interior lights.

Name: rearinteriorlightstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear interior light status value.
timestamp required
string The timestamp the vehicle rear interior light status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Interior Light Status",
  "technicalName": "rearinteriorlightstatus",
  "description": "Status of the rear interior lights.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear Interior Light Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF"
        ],
        "title": "Vehicle rear interior light status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear interior light status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Left Door Lock Status

This value indicates if the rear left door was locked or not at the time of data capturing.

Name: rearleftdoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear left door lock status value.
timestamp required
string The timestamp the vehicle rear left door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Left Door Lock Status",
  "technicalName": "rearleftdoorlockstatus",
  "description": "This value indicates if the rear left door was locked or not at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear right door lock status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle rear left door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear left door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Left Door Status

Status of the rear left door.

Name: rearleftdoorstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear left door status.
timestamp required
string The timestamp the vehicle rear left door status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Left Door Status",
  "technicalName": "rearleftdoorstatus",
  "description": "Status of the rear left door.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear Left Door Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "SAFE",
          "UNKNOWN"
        ],
        "title": "Vehicle rear left door status."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear left door status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Left Window Status

Status of the rear left window.

Name: rearleftwindowstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear left window status value.
timestamp required
string The timestamp the vehicle rear left window status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Left Window Status",
  "technicalName": "rearleftwindowstatus",
  "description": "Status of the rear left window.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear Left Window Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "INTERMEDIATE",
          "MOVING",
          "AIRING",
          "UNKNOWN"
        ],
        "title": "Vehicle rear left window status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear left window status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Right Door Lock Status

This value indicates if the rear right door was locked or not at the time of data capturing.

Name: rearrightdoorlockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear right door lock status value.
timestamp required
string The timestamp the vehicle rear right door lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Right Door Lock Status",
  "technicalName": "rearrightdoorlockstatus",
  "description": "This value indicates if the rear right door was locked or not at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear right door lock status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle rear right door lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear right door lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Right Door Status

Status of the rear right door.

Name: rearrightdoorstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear right door status value.
timestamp required
string The timestamp the vehicle rear right door status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Right Door Status",
  "technicalName": "rearrightdoorstatus",
  "description": "Status of the rear right door.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear Right Door Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "SAFE",
          "UNKNOWN"
        ],
        "title": "Vehicle rear right door status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear right door status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Rear Right Window Status

Status of the rear right window.

Name: rearrightwindowstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle rear right window status value.
timestamp required
string The timestamp the vehicle rear right window status was recorded. Format according to ISO 8601 format.
{
  "name": "Rear Right Window Status",
  "technicalName": "rearrightwindowstatus",
  "description": "Status of the rear right window.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Rear Right Window Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "INTERMEDIATE",
          "MOVING",
          "AIRING",
          "UNKNOWN"
        ],
        "title": "Vehicle rear right window status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear right window status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Relative Remaining Oil Life

Approximate fraction of the remaining life of engine oil measured in %

Name: remainingoillife

Delivery Method: pull

ATTRIBUTES

value required
number The value of oil life remaining
unit required
string Unit of measurement
timestamp required
string The timestamp the measure was recorded. Format according to ISO 8601 format.
{
  "name": "Relative Remaining Oil Life",
  "technicalName": "remainingoillife",
  "description": "Approximate fraction of the remaining life of engine oil measured in %",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Relative Remaining Oil Life",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of oil life remaining"
      },
      "unit": {
        "type": "string",
        "title": "Unit of measurement",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the measure was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Remaining Range (Total)

This value indicates the total remaining range at the time of data collection.

Name: remainingrangetotal

Delivery Method: pull

ATTRIBUTES

value required
number Total remaining range value
unit required
string Total remaining range unit
timestamp required
string The timestamp the vehicle total remaining range value was recorded. Format according to ISO 8601 format.
{
  "name": "Remaining Range (Total)",
  "technicalName": "remainingrangetotal",
  "description": "This value indicates the total remaining range at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remaining Range (Total)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Total remaining range value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Total remaining range unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle total remaining range value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Remote Charging Profile

Information about remote charging profile of the vehicle.

Name: remotechargingprofile

Delivery Method: pull

ATTRIBUTES

value required
string Remote charging profile value.
timestamp required
string The timestamp the remote charging profile was recorded. Format according to ISO 8601 format.
{
  "name": "Remote Charging Profile",
  "technicalName": "remotechargingprofile",
  "description": "Information about remote charging profile of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remote Charging Profile",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Remote charging profile value.",
        "enum": [
          "DIRECT",
          "CHARGINGONCE",
          "NOTACTIVE",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remote charging profile was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Remote Service Result

This value shows whether the most recently selected remote service had the desired effect or not.

Name: remoteserviceresult

Delivery Method: pull

ATTRIBUTES

value required
boolean Remote service result value
timestamp required
string The timestamp the remote service result was recorded. Format according to ISO 8601 format.
{
  "name": "Remote Service Result",
  "technicalName": "remoteserviceresult",
  "description": "This value shows whether the most recently selected remote service had the desired effect or not.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remote Service Result",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "boolean",
        "title": "Remote service result value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remote service result was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Remote Service Type

This value shows the most recent remote service type selected.

Name: remoteservicetype

Delivery Method: pull

ATTRIBUTES

value required
string Remote service type value
timestamp required
string The timestamp the remote service type was recorded. Format according to ISO 8601 format.
{
  "name": "Remote Service Type",
  "technicalName": "remoteservicetype",
  "description": "This value shows the most recent remote service type selected.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remote Service Type",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Remote service type value",
        "enum": [
          "CLIMATENOW",
          "CLIMATETIMER",
          "POSITIONON",
          "LOCKDOOR",
          "BLOWHORN",
          "UNLOCKDOOR",
          "FLASHLIGHT",
          "REMOTECHARGINGPROFILE",
          "REMOTE360"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the remote service type was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Right Reading Lamp Status

Status of the right reading lamp.

Name: rightreadinglampstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle right reading lamp status value.
timestamp required
string The timestamp the vehicle right reading lamp status was recorded. Format according to ISO 8601 format.
{
  "name": "Right Reading Lamp Status",
  "technicalName": "rightreadinglampstatus",
  "description": "Status of the right reading lamp.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Right Reading Lamp Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF"
        ],
        "title": "Vehicle right reading lamp status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle right reading lamp status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Roadside Assistance Call

Value indicates date when the vehicle road side assistance call was triggered.

Name: manualrsacall

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the roadside assistance call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the road side assistance call was recorded. Format according to ISO 8601 format.
{
  "name": "Roadside Assistance Call",
  "technicalName": "manualrsacall",
  "description": "Value indicates date when the vehicle road side assistance call was triggered.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Roadside Assistance Call",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the roadside assistance call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the road side assistance call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Service Flap Position (Relative)

This value indicates the service flap position at the time of data capturing from 0% (closed) to 100% (open).

Name: serviceflapposition

Delivery Method: pull

ATTRIBUTES

value required
number Service flap position value.
unit required
string Service flap position unit.
timestamp required
string The timestamp the vehicle service flap position was recorded. Format according to ISO 8601 format.
{
  "name": "Service Flap Position (Relative)",
  "technicalName": "serviceflapposition",
  "description": "This value indicates the service flap position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Service Flap Position (Relative)",
    "required": [
      "value",
      "timestamp",
      "unit"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Service flap position value."
      },
      "unit": {
        "type": "string",
        "title": "Service flap position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle service flap position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Service Flap Status

This value indicates the state of the service flap at the time of data capturing.

Name: serviceflapstatus

Delivery Method: pull

ATTRIBUTES

value required
string Service flap status value
timestamp required
string The timestamp the Service flap status value was recorded. Format according to ISO 8601 format.
{
  "name": "Service Flap Status",
  "technicalName": "serviceflapstatus",
  "description": "This value indicates the state of the service flap at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Service Flap Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Service flap status value",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Service flap status value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Spoiler Position (Relative)

This value indicates the position of the spoilers at the time of data capturing from 0% (closed) to 100% (open).

Name: spoilerposition

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle spoiler position value.
unit required
string Vehicle spoiler position unit.
timestamp required
string The timestamp the vehicle sunroof status was recorded. Format according to ISO 8601 format.
{
  "name": "Spoiler Position (Relative)",
  "technicalName": "spoilerposition",
  "description": "This value indicates the position of the spoilers at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Spoiler Position (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle spoiler position value."
      },
      "unit": {
        "type": "string",
        "title": "Vehicle spoiler position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle sunroof status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Spoiler Status

This value indicates the spoiler status at the time of data capturing.

Name: spoilerstatus

Delivery Method: pull

ATTRIBUTES

value required
string Spoiler status value
timestamp required
string The timestamp the Spoiler status value was recorded. Format according to ISO 8601 format.
{
  "name": "Spoiler Status",
  "technicalName": "spoilerstatus",
  "description": "This value indicates the spoiler status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Spoiler Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Spoiler status value",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Spoiler status value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Position

The current position of the sunroof.

Name: sunroofposition

Delivery Method: pull

ATTRIBUTES

value required
number The sunroof position value
unit required
string The sunroof position unit
timestamp required
string The timestamp the sunroof position was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Position",
  "technicalName": "sunroofposition",
  "description": "The current position of the sunroof.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Position",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The sunroof position value"
      },
      "unit": {
        "type": "string",
        "title": "The sunroof position unit",
        "enum": [
          "cm",
          "in"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the sunroof position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Position - Front (Relative)

This value indicates the position of the front sunroof at the time of data capturing from 0% (closed) to 100% (open).

Name: sunroofpositionfront

Delivery Method: pull

ATTRIBUTES

value required
number Front sunroof position value
unit required
string Front sunroof position unit.
timestamp required
string The timestamp the front sunroof position value was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Position - Front (Relative)",
  "technicalName": "sunroofpositionfront",
  "description": "This value indicates the position of the front sunroof at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Position - Front (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Front sunroof position value"
      },
      "unit": {
        "type": "string",
        "title": "Front sunroof position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the front sunroof position value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Position - Rear (Relative)

This value indicates the position of the rear sunroof at the time of data capturing from 0% (closed) to 100% (open).

Name: sunroofpositionrear

Delivery Method: pull

ATTRIBUTES

value required
number Rear sunroof position value
unit required
string Rear sunroof position unit.
timestamp required
string The timestamp the rear sunroof position value was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Position - Rear (Relative)",
  "technicalName": "sunroofpositionrear",
  "description": "This value indicates the position of the rear sunroof at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Position - Rear (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Rear sunroof position value"
      },
      "unit": {
        "type": "string",
        "title": "Rear sunroof position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the rear sunroof position value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Status

Status of the sunroof.

Name: sunroofstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle sunroof status value.
timestamp required
string The timestamp the vehicle sunroof status was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Status",
  "technicalName": "sunroofstatus",
  "description": "Status of the sunroof.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "TILTED",
          "MOVING",
          "INTERMEDIATE",
          "UNKNOWN"
        ],
        "title": "Vehicle sunroof status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle sunroof status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Status - Front

This value indicates the state of the front sunroof at the time of data capturing.

Name: sunroofstatusfront

Delivery Method: pull

ATTRIBUTES

value required
string Front sunroof status value
timestamp required
string The timestamp the front sunroof status value was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Status - Front",
  "technicalName": "sunroofstatusfront",
  "description": "This value indicates the state of the front sunroof at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Status - Front",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Front sunroof status value",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the front sunroof status value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Sunroof Status - Rear

This value indicates the state of the rear sunroof at the time of data capturing.

Name: sunroofstatusrear

Delivery Method: pull

ATTRIBUTES

value required
string Rear sunroof status value
timestamp required
string The timestamp the rear sunroof status value was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Status - Rear",
  "technicalName": "sunroofstatusrear",
  "description": "This value indicates the state of the rear sunroof at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Status - Rear",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Rear sunroof status value",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the rear sunroof status value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Telematic Position Update

Value indicates date when the vehicle sent new position data.

Name: telematicpositionupdate

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the telematic position update was received. Format according to ISO 8601 format.
timestamp
string The timestamp the telematic position update was recorded. Format according to ISO 8601 format.
{
  "name": "Telematic Position Update",
  "technicalName": "telematicpositionupdate",
  "description": "Value indicates date when the vehicle sent new position data.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Telematic Position Update",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the telematic position update was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the telematic position update was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Teleservice Battery Guard Call

Value indicates date when the vehicle triggered battery guard call.

Name: teleservicebatteryguardcall

Delivery Method: push

ATTRIBUTES

receivedAt required
string The timestamp the battery guard call was received. Format according to ISO 8601 format.
timestamp
string The timestamp the battery guard call was recorded. Format according to ISO 8601 format.
{
  "name": "Teleservice Battery Guard Call",
  "technicalName": "teleservicebatteryguardcall",
  "description": "Value indicates date when the vehicle triggered battery guard call.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Teleservice Battery Guard Call",
    "required": [
      "receivedAt"
    ],
    "properties": {
      "receivedAt": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the battery guard call was received. Format according to ISO 8601 format."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the battery guard call was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Teleservice Status

This value indicates whether teleservices are available for this vehicle.

Name: teleservicestatus

Delivery Method: pull

ATTRIBUTES

value required
string The teleservices status value
timestamp required
string The timestamp the teleservices status was recorded. Format according to ISO 8601 format.
{
  "name": "Teleservice Status",
  "technicalName": "teleservicestatus",
  "description": "This value indicates whether teleservices are available for this vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Teleservice Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The teleservices status value",
        "enum": [
          "PENDING",
          "SUCCESSFUL",
          "IDLE",
          "ERROR",
          "INITIAL"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the teleservices status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Left

Pressure of named tire measured in the provided unit

Name: tirepressurefrontleft

Delivery Method: pull

ATTRIBUTES

value required
string The measure of the pressure.
unit required
string The measurement unit.
timestamp required
timestamp The timestamp of the measure in ISO 8601 format..
{
      "name": "Tire Pressure - Front Left",
      "technicalName": "tirepressurefrontleft",
      "description": "Pressure of named tire measured in the provided unit",
      "lifecycleStatus": "PUBLISHED",
      "type": "IN_VEHICLE",
      "personalData": false,
      "schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "object",
        "title": "Tire Pressure - Front Left",
        "required": [
          "value",
          "unit",
          "timestamp"
        ],
        "properties": {
          "value": {
            "type": "number",
            "title": "The measure of the pressure"
          },
          "unit": {
            "type": "string",
            "enum": [
              "kPa",
              "bar",
              "psi"
            ],
            "title": "The measurement unit"
          },
          "timestamp": {
            "type": "string",
            "title": "The timestamp of the measure in ISO 8601 format.",
            "format": "date-time"
          }
        }
      }
    }

Tire Pressure - Front Left (Actual)

This value indicates the front left tire pressure at the time of data capturing.

Name: tirepressurefrontleftactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual front left tire pressure value
unit required
string Actual front left tire pressure unit
timestamp required
string The timestamp the actual front left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Left (Actual)",
  "technicalName": "tirepressurefrontleftactual",
  "description": "This value indicates the front left tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Left (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual front left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual front left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual front left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Left (Delta)

This value indicates the difference between the nominal and actual front left tire pressure at the time of data capturing (nominal - actual).

Name: tirepressurefrontleftdelta

Delivery Method: pull

ATTRIBUTES

value required
number Delta front left tire pressure value
unit required
string Delta front left tire pressure unit
timestamp required
string The timestamp the delta front left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Left (Delta)",
  "technicalName": "tirepressurefrontleftdelta",
  "description": "This value indicates the difference between the nominal and actual front left tire pressure at the time of data capturing (nominal - actual).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Left (Delta)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Delta front left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Delta front left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the delta front left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Left (Nominal)

This value indicates the nominal front left tire pressure for the actual tire/wheel combination.

Name: tirepressurefrontleftnominal

Delivery Method: pull

ATTRIBUTES

value required
number Nominal front left tire pressure value
unit required
string Nominal front left tire pressure unit
timestamp required
string The timestamp the nominal front left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Left (Nominal)",
  "technicalName": "tirepressurefrontleftnominal",
  "description": "This value indicates the nominal front left tire pressure for the actual tire/wheel combination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Left (Nominal)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Nominal front left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Nominal front left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the nominal front left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Right

Pressure of named tire measured in the provided unit

Name: tirepressurefrontright

Delivery Method: pull

ATTRIBUTES

value required
string The measure of the pressure.
unit required
string The measurement unit.
timestamp required
timestamp The timestamp of the measure in ISO 8601 format..
{
      "name": "Tire Pressure - Front Right",
      "technicalName": "tirepressurefrontright",
      "description": "Pressure of named tire measured in the provided unit",
      "lifecycleStatus": "PUBLISHED",
      "type": "IN_VEHICLE",
      "personalData": false,
      "schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "object",
        "title": "Tire Pressure - Front Right",
        "required": [
          "value",
          "unit",
          "timestamp"
        ],
        "properties": {
          "value": {
            "type": "number",
            "title": "The measure of the pressure"
          },
          "unit": {
            "type": "string",
            "enum": [
              "kPa",
              "bar",
              "psi"
            ],
            "title": "The measurement unit"
          },
          "timestamp": {
            "type": "string",
            "title": "The timestamp of the measure in ISO 8601 format.",
            "format": "date-time"
          }
        }
      }
    }

Tire Pressure - Front Right (Actual)

This value indicates the front right tire pressure at the time of data capturing.

Name: tirepressurefrontrightactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual front right tire pressure value
unit required
string Actual front right tire pressure unit
timestamp required
string The timestamp the actual front right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Right (Actual)",
  "technicalName": "tirepressurefrontrightactual",
  "description": "This value indicates the front right tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Right (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual front right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual front right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual front right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Right (Delta)

This value indicates the difference between the nominal and actual front right tire pressure at the time of data capturing (nominal - actual).

Name: tirepressurefrontrightdelta

Delivery Method: pull

ATTRIBUTES

value required
number Delta front right tire pressure value
unit required
string Delta front right tire pressure unit
timestamp required
string The timestamp the delta front right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Right (Delta)",
  "technicalName": "tirepressurefrontrightdelta",
  "description": "This value indicates the difference between the nominal and actual front right tire pressure at the time of data capturing (nominal - actual).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Right (Delta)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Delta front right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Delta front right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the delta front right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Front Right (Nominal)

This value indicates the nominal front right tire pressure for the actual tire/wheel combination.

Name: tirepressurefrontrightnominal

Delivery Method: pull

ATTRIBUTES

value required
number Nominal front right tire pressure value
unit required
string Nominal front right tire pressure unit
timestamp required
string The timestamp the nominal front right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Front Right (Nominal)",
  "technicalName": "tirepressurefrontrightnominal",
  "description": "This value indicates the nominal front right tire pressure for the actual tire/wheel combination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Front Right (Nominal)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Nominal front right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Nominal front right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the nominal front right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Left

Pressure of named tire measured in the provided unit

Name: tirepressurerearleft

Delivery Method: pull

ATTRIBUTES

value required
string The measure of the pressure.
unit required
string The measurement unit.
timestamp required
timestamp The timestamp of the measure in ISO 8601 format..
{
      "name": "Tire Pressure - Rear Left",
      "technicalName": "tirepressurerearleft",
      "description": "Pressure of named tire measured in the provided unit",
      "lifecycleStatus": "PUBLISHED",
      "type": "IN_VEHICLE",
      "personalData": false,
      "schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "object",
        "title": "Tire Pressure - Rear Left",
        "required": [
          "value",
          "unit",
          "timestamp"
        ],
        "properties": {
          "value": {
            "type": "number",
            "title": "The measure of the pressure"
          },
          "unit": {
            "type": "string",
            "enum": [
              "kPa",
              "bar",
              "psi"
            ],
            "title": "The measurement unit"
          },
          "timestamp": {
            "type": "string",
            "title": "The timestamp of the measure in ISO 8601 format.",
            "format": "date-time"
          }
        }
      }
    }

Tire Pressure - Rear Left (Actual)

This value indicates the rear left tire pressure at the time of data capturing.

Name: tirepressurerearleftactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual rear left tire pressure value
unit required
string Actual rear left tire pressure unit
timestamp required
string The timestamp the actual rear left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Left (Actual)",
  "technicalName": "tirepressurerearleftactual",
  "description": "This value indicates the rear left tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Left (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual rear left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual rear left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual rear left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Left (Delta)

This value indicates the difference between the nominal and actual rear left tire pressure at the time of data capturing (nominal - actual).

Name: tirepressurerearleftdelta

Delivery Method: pull

ATTRIBUTES

value required
number Delta rear left tire pressure value
unit required
string Delta rear left tire pressure unit
timestamp required
string The timestamp the delta rear left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Left (Delta)",
  "technicalName": "tirepressurerearleftdelta",
  "description": "This value indicates the difference between the nominal and actual rear left tire pressure at the time of data capturing (nominal - actual).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Left (Delta)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Delta rear left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Delta rear left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the delta rear left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Left (Nominal)

This value indicates the nominal rear left tire pressure for the actual tire/wheel combination.

Name: tirepressurerearleftnominal

Delivery Method: pull

ATTRIBUTES

value required
number Nominal rear left tire pressure value
unit required
string Nominal rear left tire pressure unit
timestamp required
string The timestamp the nominal rear left tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Left (Nominal)",
  "technicalName": "tirepressurerearleftnominal",
  "description": "This value indicates the nominal rear left tire pressure for the actual tire/wheel combination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Left (Nominal)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Nominal rear left tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Nominal rear left tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the nominal rear left tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Left Inner

Pressure of named tire measured in the provided unit

Name: tirepressurerearleftinner

Delivery Method: pull

ATTRIBUTES

value required
number The measure of the pressure
unit required
string The measurement unit
timestamp required
string The timestamp of the measure in ISO 8601 format.
{
  "name": "Tire Pressure - Rear Left Inner",
  "technicalName": "tirepressurerearleftinner",
  "description": "Pressure of named tire measured in the provided unit",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Left Inner",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The measure of the pressure"
      },
      "unit": {
        "type": "string",
        "enum": [
          "kPa",
          "bar",
          "psi"
        ],
        "title": "The measurement unit"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp of the measure in ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Tire Pressure - Rear Right

Pressure of named tire measured in the provided unit

Name: tirepressurerearright

Delivery Method: pull

ATTRIBUTES

value required
string The measure of the pressure.
unit required
string The measurement unit.
timestamp required
timestamp The timestamp of the measure in ISO 8601 format..
{
      "name": "Tire Pressure - Rear Right",
      "technicalName": "tirepressurerearright",
      "description": "Pressure of named tire measured in the provided unit",
      "lifecycleStatus": "PUBLISHED",
      "type": "IN_VEHICLE",
      "personalData": false,
      "schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "object",
        "title": "Tire Pressure - Rear Right",
        "required": [
          "value",
          "unit",
          "timestamp"
        ],
        "properties": {
          "value": {
            "type": "number",
            "title": "The measure of the pressure"
          },
          "unit": {
            "type": "string",
            "enum": [
              "kPa",
              "bar",
              "psi"
            ],
            "title": "The measurement unit"
          },
          "timestamp": {
            "type": "string",
            "title": "The timestamp of the measure in ISO 8601 format.",
            "format": "date-time"
          }
        }
      }
    }

Tire Pressure - Rear Right (Actual)

This value indicates the rear right tire pressure at the time of data capturing.

Name: tirepressurerearrightactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual rear right tire pressure value
unit required
string Actual rear right tire pressure unit
timestamp required
string The timestamp the actual rear right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Right (Actual)",
  "technicalName": "tirepressurerearrightactual",
  "description": "This value indicates the rear right tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Right (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual rear right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual rear right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual rear right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Right (Delta)

This value indicates the difference between the nominal and actual rear right tire pressure at the time of data capturing (nominal - actual).

Name: tirepressurerearrightdelta

Delivery Method: pull

ATTRIBUTES

value required
number Delta rear right tire pressure value
unit required
string Delta rear right tire pressure unit
timestamp required
string The timestamp the delta rear right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Right (Delta)",
  "technicalName": "tirepressurerearrightdelta",
  "description": "This value indicates the difference between the nominal and actual rear right tire pressure at the time of data capturing (nominal - actual).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Right (Delta)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Delta rear right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Delta rear right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the delta rear right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Right (Nominal)

This value indicates the nominal rear right tire pressure for the actual tire/wheel combination.

Name: tirepressurerearrightnominal

Delivery Method: pull

ATTRIBUTES

value required
number Nominal rear right tire pressure value
unit required
string Nominal rear right tire pressure unit
timestamp required
string The timestamp the nominal rear right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Right (Nominal)",
  "technicalName": "tirepressurerearrightnominal",
  "description": "This value indicates the nominal rear right tire pressure for the actual tire/wheel combination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Right (Nominal)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Nominal rear right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Nominal rear right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the nominal rear right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Rear Right Inner

Pressure of named tire measured in the provided unit

Name: tirepressurerearrightinner

Delivery Method: pull

ATTRIBUTES

value required
number The measure of the pressure
unit required
string The measurement unit
timestamp required
string The timestamp of the measure in ISO 8601 format.
{
  "name": "Tire Pressure - Rear Right Inner",
  "technicalName": "tirepressurerearrightinner",
  "description": "Pressure of named tire measured in the provided unit",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Right Inner",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The measure of the pressure"
      },
      "unit": {
        "type": "string",
        "enum": [
          "kPa",
          "bar",
          "psi"
        ],
        "title": "The measurement unit"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp of the measure in ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}

Tire Pressure - Spare (Actual)

This value indicates the spare tire pressure at the time of data capturing.

Name: tirepressurespareactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual spare tire pressure value
unit required
string Actual spare tire pressure unit
timestamp required
string The timestamp the actual spare tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Spare (Actual)",
  "technicalName": "tirepressurespareactual",
  "description": "This value indicates the spare tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Spare (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual spare tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual spare tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual spare tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Spare (Delta)

This value indicates the difference between the nominal and actual spare tire pressure at the time of data capturing (nominal - actual).

Name: tirepressuresparedelta

Delivery Method: pull

ATTRIBUTES

value required
number Delta spare tire pressure value
unit required
string Delta spare tire pressure unit
timestamp required
string The timestamp the delta spare tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Spare (Delta)",
  "technicalName": "tirepressuresparedelta",
  "description": "This value indicates the difference between the nominal and actual spare tire pressure at the time of data capturing (nominal - actual).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Spare (Delta)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Delta spare tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Delta spare tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the delta spare tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure - Spare (Nominal)

This value indicates the nominal spare tire pressure for the actual tire/wheel combination.

Name: tirepressuresparenominal

Delivery Method: pull

ATTRIBUTES

value required
number Nominal spare tire pressure value
unit required
string Nominal spare tire pressure unit
timestamp required
string The timestamp the nominal spare tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Spare (Nominal)",
  "technicalName": "tirepressuresparenominal",
  "description": "This value indicates the nominal spare tire pressure for the actual tire/wheel combination.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Spare (Nominal)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Nominal spare tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Nominal spare tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the nominal spare tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Front Left

Pressure status of the Front Left

Name: tirepressurestatusfrontleft

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Front Left",
  "technicalName": "tirepressurestatusfrontleft",
  "description": "Pressure status of the Front Left",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Front Left",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Front Right

Pressure status of the Front Right

Name: tirepressurestatusfrontright

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Front Right",
  "technicalName": "tirepressurestatusfrontright",
  "description": "Pressure status of the Front Right",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Front Right",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Rear Left

Pressure status of the Rear Left

Name: tirepressurestatusrearleft

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Rear Left",
  "technicalName": "tirepressurestatusrearleft",
  "description": "Pressure status of the Rear Left",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Rear Left",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Rear Left Inner

Pressure status of the Rear Left

Name: tirepressurestatusrearleftinner

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Rear Left Inner",
  "technicalName": "tirepressurestatusrearleftinner",
  "description": "Pressure status of the Rear Left",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Rear Left Inner",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Rear Right

Pressure status of the Rear Right

Name: tirepressurestatusrearright

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Rear Right",
  "technicalName": "tirepressurestatusrearright",
  "description": "Pressure status of the Rear Right",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Rear Right",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Tire Pressure Status - Rear Right Inner

Pressure status of the Rear Right

Name: tirepressurestatusrearrightinner

Delivery Method: pull

ATTRIBUTES

value required
string Supported statuses
timestamp required
string The timestamp the tire pressure status was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure Status - Rear Right Inner",
  "technicalName": "tirepressurestatusrearrightinner",
  "description": "Pressure status of the Rear Right",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure Status - Rear Right Inner",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Supported statuses",
        "enum": [
          "UNKNOWN",
          "NORMAL",
          "LOW",
          "ALERT",
          "UNSUPPORTED"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the tire pressure status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

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."
      }
    }
  }
}

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."
      }
    }
  }
}

Trip Distance Accumulated (Trip)

This value indicates the distance traveled since the last ignition on.

Name: tripdistanceaccumulated

Delivery Method: pull

ATTRIBUTES

value required
number The distance traveled since the last ignition on.
unit required
string Vehicle distance unit.
timestamp required
string The timestamp the distance traveled since the last ignition on was recorded. Format according to ISO 8601 format.
{
  "name": "Trip Distance Accumulated (Trip)",
  "technicalName": "tripdistanceaccumulated",
  "description": "This value indicates the distance traveled 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 Distance Accumulated (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The distance traveled since the last ignition on."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km"
        ],
        "title": "Vehicle distance unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the distance traveled since the last ignition on was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

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."
      }
    }
  }
}

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."
      }
    }
  }
}

Trip Fuel Economy (Trip)

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

Name: tripfueleconomy

Delivery Method: pull

ATTRIBUTES

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

Trip Maximum Speed (Trip)

This value indicates the maximum speed recorded since the last igntion on.

Name: tripmaximumspeed

Delivery Method: pull

ATTRIBUTES

value required
number The maximum speed recorded since the last igntion on.
unit required
string Vehicle speed unit.
timestamp required
string The timestamp the maximum speed was recorded since the last igntion on was recorded. Format according to ISO 8601 format.
{
  "name": "Trip Maximum Speed (Trip)",
  "technicalName": "tripmaximumspeed",
  "description": "This value indicates the maximum speed recorded since the last igntion on.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip Maximum Speed (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The maximum speed recorded since the last igntion on."
      },
      "unit": {
        "type": "string",
        "enum": [
          "m/s"
        ],
        "title": "Vehicle speed unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the maximum speed was recorded since the last igntion on was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Trip Summary

This event indicates the trip summary that is generated after ignition off.

Name: tripsummary

Delivery Method: pull

ATTRIBUTES

tripsummary required
object The trip summary generated on ignition off.
{
	"name": "Trip Summary",
	"technicalName": "tripsummary",
	"description": "This event indicates the trip summary that is generated after ignition off.",
	"lifecycleStatus": "tbd",
	"type": "IN_VEHICLE",
	"personalData": true,
	"event": true,
	"schema": {
		"$schema": "http://json-schema.org/draft-04/schema#",
		"type": "object",
		"title": "Trip Summary",
		"required": [
			"tripsummary"
		],
		"properties": {
			"tripsummary": {
				"type": "object",
				"properties": {
					"context": {
						"type": "object",
						"properties": {
							"timestamp": {
								"type": "string",
								"format": "date-time",
								"title": "The timestamp trip summary was generated. Format according to ISO 8601 format."
							},
							"trigger": {
								"type": "string",
								"title": "The triggering condition when this trip summary was generated."
							}
						},
						"required": [
							"timestamp",
							"trigger"
						]
					},
					"data": {
						"type": "object",
						"properties": {
							"mileage": {
								"$ref": "/schemas/mileage"
							},
							"geolocation": {
								"$ref": "/schemas/geolocation"
							},
							"totalenginetime": {
								"$ref": "/schemas/totalenginetime"
							},
							"totalenginetimeidle": {
								"$ref": "/schemas/totalenginetimeidle"
							},
							"tripfuelconsumed": {
								"$ref": "/schemas/tripfuelconsumed"
							},
							"tripfuelconsumedidle": {
								"$ref": "/schemas/tripfuelconsumedidle"
							},
							"tripfueleconomy": {
								"$ref": "/schemas/tripfueleconomy"
							},
							"tripdistanceaccumulated": {
								"$ref": "/schemas/tripdistanceaccumulated"
							},
							"tripmaximumspeed": {
								"$ref": "/schemas/tripmaximumspeed"
							},
							"tripxevbatterydistanceaccumulated": {
								"$ref": "/schemas/tripxevbatterydistanceaccumulated"
							},
							"tripxevbatteryrangeregenerated": {
								"$ref": "/schemas/tripxevbatteryrangeregenerated"
							},
							"tripxevbatterychargeregenerated": {
								"$ref": "/schemas/tripxevbatterychargeregenerated"
							}
						}
					}
				},
				"required": [
					"context",
					"data"
				]
			}
		}
	}
}

Trip XEV Battery Charge Regenerated (Trip)

This value indicates the estimated electrical charge that was recovered through regeneration during a trip.

Name: tripxevbatterychargeregenerated

Delivery Method: pull

ATTRIBUTES

value required
number The estimated electrical charge that was recovered through regeneration during a trip.
unit required
string Vehicle charge unit.
timestamp required
string The timestamp the estimated electrical charge that was recovered through regeneration during a trip was recorded. Format according to ISO 8601 format.
{
  "name": "Trip XEV Battery Charge Regenerated (Trip)",
  "technicalName": "tripxevbatterychargeregenerated",
  "description": "This value indicates the estimated electrical charge that was recovered through regeneration during a trip.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip XEV Battery Charge Regenerated (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The estimated electrical charge that was recovered through regeneration during a trip."
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE"
        ],
        "title": "Vehicle charge unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the estimated electrical charge that was recovered through regeneration during a trip was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Trip XEV Battery Distance Accumulated (Trip)

This value indicates the distance traveled using only electric energy during a trip.

Name: tripxevbatterydistanceaccumulated

Delivery Method: pull

ATTRIBUTES

value required
number The distance traveled using only electric energy during a trip.
unit required
string Vehicle distance unit.”
timestamp required
string The timestamp the distance traveled using only electric energy during a trip was recorded. Format according to ISO 8601 format.
{
  "name": "Trip XEV Battery Distance Accumulated (Trip)",
  "technicalName": "tripxevbatterydistanceaccumulated",
  "description": "This value indicates the distance traveled using only electric energy during a trip.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip XEV Battery Distance Accumulated (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The distance traveled using only electric energy during a trip."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km"
        ],
        "title": "Vehicle distance unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the distance traveled using only electric energy during a trip was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Trip XEV Battery Range Regenerated (Trip)

This value indicates the estimated battery range that was recovered through regeneration during a trip.

Name: tripxevbatteryrangeregenerated

Delivery Method: pull

ATTRIBUTES

value required
number The estimated battery range that was recovered through regeneration during a trip.
unit required
string Vehicle distance unit.
timestamp required
string The timestamp the estimated battery range that was recovered through regeneration during a trip was recorded. Format according to ISO 8601 format.
{
  "name": "Trip XEV Battery Range Regenerated (Trip)",
  "technicalName": "tripxevbatteryrangeregenerated",
  "description": "This value indicates the estimated battery range that was recovered through regeneration during a trip.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip XEV Battery Range Regenerated (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The estimated battery range that was recovered through regeneration during a trip."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km"
        ],
        "title": "Vehicle distance unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the estimated battery range that was recovered through regeneration during a trip was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Trunk Lock Status

Trunk lid lock status.

Name: trunklockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle trunk lid lock status value.
timestamp required
string The timestamp the trunk lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Trunk Lock Status",
  "technicalName": "trunklockstatus",
  "description": "Trunk lid lock status.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trunk Lock Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "UNKNOWN"
        ],
        "title": "Vehicle trunk lid lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the trunk lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Trunk Status

Open/close status of the trunk.

Name: trunkstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle trunk lid status value.
timestamp required
string The timestamp the trunk status was recorded. Format according to ISO 8601 format.
{
  "name": "Trunk Status",
  "technicalName": "trunkstatus",
  "description": "Open/close status of the trunk.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trunk Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "OPENED",
          "CLOSED",
          "SAFE",
          "UNKNOWN"
        ],
        "title": "Vehicle trunk lid status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the trunk status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Altitude

Height of the vehicle above sea-level.

Name: vehiclealtitude

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle altitude.
unit required
string Vehicle altitude unit.
timestamp required
string The timestamp the vehicle altitude value was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Altitude",
  "technicalName": "vehiclealtitude",
  "description": "Height of the vehicle above sea-level.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Altitude",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle altitude."
      },
      "unit": {
        "type": "string",
        "enum": [
          "m",
          "ft"
        ],
        "title": "Vehicle altitude unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle altitude value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Connectivity

This value indicates vehicle connectivity at the time of data capturing.

Name: vehicleconnectivity

Delivery Method: pull

ATTRIBUTES

eligibleVehicle required
string The eligibility of this VIN for data collection
telematicsCapable required
string The vehicle telematics capability state
registeredPrimaryUser required
string The primary user for the vehicle is registered
timestamp required
string The timestamp the vehicle connectivity was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Connectivity",
  "technicalName": "vehicleconnectivity",
  "description": "This value indicates vehicle connectivity at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Connectivity",
    "required": [
      "eligibleVehicle",
      "telematicsCapable",
      "registeredPrimaryUser",
      "timestamp"
    ],
    "properties": {
      "eligibleVehicle": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The eligibility of this VIN for data collection"
      },
      "telematicsCapable": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The vehicle telematics capability state"
      },
      "registeredPrimaryUser": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The primary user for the vehicle is registered"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle connectivity was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Connectivity Details

This data item provide information on the vehicle connectivity and the supported use cases.

Name: vehicleconnectivitydetails

Delivery Method: pull

ATTRIBUTES

oemSupported required
string Contract with OEM available.
eligibleVehicle required
string The status whether or not vehicle is eligible for the data delivery. If true, the VIN was valid, the brand is supported and the region (where the vehicle is registered) is supported for data delivery by the data provider.
telematicsCapable required
string The status whether or not the vehicle is equipped with a telematics control unit (TCU). If true, the vehicle is technically able to provide telematics data.
registeredPrimaryUser required
string The status whether or not a primary user for the vehicle is registered at the portal of the data provider. A registered primary user may be required to provide consent for data sharing of telematics data.
supportedUseCases required
object undefined
PAYD
string The vehicle supports Pay As You Drive (PAYD).
PHYD
string The vehicle supports Pay How You Drive (PHYD).
FNOL
string The vehicle supports First Notification of Loss (FNOL).
timestamp required
string The timestamp the vehicle connectivity details were requested. Format according to ISO 8601 format.
{
  "name": "Vehicle Connectivity Details",
  "technicalName": "vehicleconnectivitydetails",
  "description": "This data item provide information on the vehicle connectivity and the supported use cases.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Detailed Vehicle Connectivity",
    "required": [
      "oemSupported"
      "eligibleVehicle",
      "telematicsCapable",
      "registeredPrimaryUser",
      "supportedUseCases",
      "timestamp"
    ],
    "properties": {
      "oemSupported": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"					
        ],
        "title": "Contract with OEM available"
      },			
      "eligibleVehicle": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not vehicle is eligible for the data delivery. If true, the VIN was valid, the brand is supported and the region (where the vehicle is registered) is supported for data delivery by the data provider."
      },
      "telematicsCapable": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not the vehicle is equipped with a telematics control unit (TCU). If true, the vehicle is technically able to provide telematics data."
      },
      "registeredPrimaryUser": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not a primary user for the vehicle is registered at the portal of the data provider. A registered primary user may be required to provide consent for data sharing of telematics data."
      },
      "supportedUseCases": {
        "type": "object",
        "properties": {
          "PAYD": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports Pay As You Drive (PAYD)."
          },
          "PHYD": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports Pay How You Drive (PHYD)."
          },
          "FNOL": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports First Notification of Loss (FNOL)."
          }
        },
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle connectivity details were requested. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Heading

Heading position of the vehicle.

Name: vehicleheading

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle heading position.
unit required
string Vehicle heading position unit.
timestamp required
string The timestamp the vehicle heading value was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Heading",
  "technicalName": "vehicleheading",
  "description": "Heading position of the vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Heading",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle heading position."
      },
      "unit": {
        "type": "string",
        "enum": [
          "DEGREES"
        ],
        "title": "Vehicle heading position unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle heading value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Lock Status

Status of the vehicle lock.

Name: vehiclelockstatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle lock status value.
timestamp required
string The timestamp the Vehicle lock status was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Lock Status",
  "technicalName": "vehiclelockstatus",
  "description": "Status of the vehicle lock.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Lock Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "LOCKED",
          "UNLOCKED",
          "SECURED",
          "UNKNOWN"
        ],
        "title": "Vehicle lock status value."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Vehicle lock status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Speed

Vehicle speed at timestamp in given unit.

Name: vehiclespeed

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle speed in km/h or mi/h.
unit required
string The vehicle speed unit.
timestamp required
string The timestamp the vehicle speed was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Speed",
  "technicalName": "vehiclespeed",
  "description": "Vehicle speed at timestamp in given unit.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle speed",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle speed in km/h or mi/h."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km/h",
          "mi/h"
        ],
        "title": "The vehicle speed unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle speed was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Vehicle Time Status

Time shown in the vehicle

Name: vehicletimestatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle time value
timestamp required
string The timestamp the vehicle time was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Time Status",
  "technicalName": "vehicletimestatus",
  "description": "Time shown in the vehicle",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Time Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Vehicle time value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Window Position - Front Left (Relative)

This value indicates the front left window position at the time of data capturing from 0% (closed) to 100% (open).

Name: windowpositionfrontleft

Delivery Method: pull

ATTRIBUTES

value required
number Front left window position value.
unit required
string Front left window position unit.
timestamp required
string The timestamp the vehicle front left window position was recorded. Format according to ISO 8601 format.
{
  "name": "Window Position - Front Left (Relative)",
  "technicalName": "windowpositionfrontleft",
  "description": "This value indicates the front left window position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Window Position - Front Left (Relative)",
    "required": [
      "value",
      "timestamp",
      "unit"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Front left window position value."
      },
      "unit": {
        "type": "string",
        "title": "Front left window position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front left window position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Window Position - Front Right (Relative)

This value indicates the front right window position at the time of data capturing from 0% (closed) to 100% (open).

Name: windowpositionfrontright

Delivery Method: pull

ATTRIBUTES

value required
number Front right window position value.
unit required
string Front right window position unit.
timestamp required
string The timestamp the vehicle front right window position was recorded. Format according to ISO 8601 format.
{
  "name": "Window Position - Front Right (Relative)",
  "technicalName": "windowpositionfrontright",
  "description": "This value indicates the front right window position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Window Position - Front Right (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Front right window position value."
      },
      "unit": {
        "type": "string",
        "title": "Front right window position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle front right window position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Window Position - Rear Left (Relative)

This value indicates the rear left window position at the time of data capturing from 0% (closed) to 100% (open).

Name: windowpositionrearleft

Delivery Method: pull

ATTRIBUTES

value required
number Rear left window position value.
unit
string Rear left window position unit.
timestamp required
string The timestamp the vehicle rear left window position was recorded. Format according to ISO 8601 format.
{
  "name": "Window Position - Rear Left (Relative)",
  "technicalName": "windowpositionrearleft",
  "description": "This value indicates the rear left window position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Window Position - Rear Left (Relative)",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Rear left window position value."
      },
      "unit": {
        "type": "string",
        "title": "Rear left window position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear left window position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Window Position - Rear Right (Relative)

This value indicates the rear right window position at the time of data capturing from 0% (closed) to 100% (open).

Name: windowpositionrearright

Delivery Method: pull

ATTRIBUTES

value required
number Rear right window position value.
unit required
string Rear right window position unit.
timestamp required
string The timestamp the vehicle rear right window position was recorded. Format according to ISO 8601 format.
{
  "name": "Window Position - Rear Right (Relative)",
  "technicalName": "windowpositionrearright",
  "description": "This value indicates the rear right window position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Window Position - Rear Right (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Rear right window position value."
      },
      "unit": {
        "type": "string",
        "title": "Rear right window position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle rear right window position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Yellow Service Distance

Value indicates the first time customer receives a message about next service.

Name: yellowservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Yellow service distance value
unit required
string Yellow service distance unit
timestamp required
string The timestamp the yellow service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Yellow Service Distance",
  "technicalName": "yellowservicedistance",
  "description": "Value indicates the first time customer receives a message about next service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Yellow Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Yellow service distance value"
      },
      "unit": {
        "type": "string",
        "title": "Yellow service distance unit",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the yellow service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}

Yellow Service Time

Value indicates the first time customer receives a message about next service.

Name: yellowservicetime

Delivery Method: pull

ATTRIBUTES

value required
number Yellow service time value
unit required
string Yellow service time unit
timestamp required
string The timestamp the yellow service time was recorded. Format according to ISO 8601 format.
{
  "name": "Yellow Service Time",
  "technicalName": "yellowservicetime",
  "description": "Value indicates the first time customer receives a message about next service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Yellow Service Time",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Yellow service time value"
      },
      "unit": {
        "type": "string",
        "title": "Yellow service time unit",
        "enum": [
          "DAY",
          "WEEK",
          "MONTH"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the yellow service time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}