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