Engine Oil Level (Relative)

This value indicates the vehicle engine oil liquid fill in percentage.

Name: engineoillevelrelative

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle engine oil level value
unit required
string Vehicle engine oil level unit
timestamp required
string The timestamp the vehicle engine oil level was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Oil Level (Relative)",
  "technicalName": "engineoillevelrelative",
  "description": "This value indicates the vehicle engine oil liquid fill in percentage.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Oil Level (Relative)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle engine oil level value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE"
        ],
        "title": "Vehicle engine oil level unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle engine oil level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}