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