Engine Oil Amount

This value indicates the engine oil amount at the time of data collection.

Name: engineoilamount

Delivery Method: pull

ATTRIBUTES

value required
number Engine oil amount value
unit required
string Engine oil amount unit
timestamp required
string The timestamp the vehicle engine oil amount value was recorded. Format according to ISO 8601 format.
{
  "name": "Engine Oil Amount",
  "technicalName": "engineoilamount",
  "description": "This value indicates the engine oil amount at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Engine Oil Amount",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Engine oil amount value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "L",
          "GAL"
        ],
        "title": "Engine oil amount unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle engine oil amount value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}