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