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.