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