Tire Pressure - Rear Right

Pressure of named tire measured in the provided unit

Name: tirepressurerearright

Delivery Method: pull

ATTRIBUTES

value required
string The measure of the pressure.
unit required
string The measurement unit.
timestamp required
timestamp The timestamp of the measure in ISO 8601 format..
{
      "name": "Tire Pressure - Rear Right",
      "technicalName": "tirepressurerearright",
      "description": "Pressure of named tire measured in the provided unit",
      "lifecycleStatus": "PUBLISHED",
      "type": "IN_VEHICLE",
      "personalData": false,
      "schema": {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "object",
        "title": "Tire Pressure - Rear Right",
        "required": [
          "value",
          "unit",
          "timestamp"
        ],
        "properties": {
          "value": {
            "type": "number",
            "title": "The measure of the pressure"
          },
          "unit": {
            "type": "string",
            "enum": [
              "kPa",
              "bar",
              "psi"
            ],
            "title": "The measurement unit"
          },
          "timestamp": {
            "type": "string",
            "title": "The timestamp of the measure in ISO 8601 format.",
            "format": "date-time"
          }
        }
      }
    }