Tire Pressure - Rear Right (Actual)

This value indicates the rear right tire pressure at the time of data capturing.

Name: tirepressurerearrightactual

Delivery Method: pull

ATTRIBUTES

value required
number Actual rear right tire pressure value
unit required
string Actual rear right tire pressure unit
timestamp required
string The timestamp the actual rear right tire pressure value was recorded. Format according to ISO 8601 format.
{
  "name": "Tire Pressure - Rear Right (Actual)",
  "technicalName": "tirepressurerearrightactual",
  "description": "This value indicates the rear right tire pressure at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Tire Pressure - Rear Right (Actual)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Actual rear right tire pressure value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "Bar",
          "PSI",
          "kPa"
        ],
        "title": "Actual rear right tire pressure unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the actual rear right tire pressure value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}