Tire Pressure - Spare (Delta)

This value indicates the difference between the nominal and actual spare tire pressure at the time of data capturing (nominal - actual).

Name: tirepressuresparedelta

Delivery Method: pull

ATTRIBUTES

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