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