Next Oil Service Distance

This value indicates remaining distance until the next oil service is due.

Name: nextoilservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Next oil service value
unit required
string Next oil service unit
timestamp required
string The timestamp the vehicle next oil service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Next Oil Service Distance",
  "technicalName": "nextoilservicedistance",
  "description": "This value indicates remaining distance until the next oil service is due.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Oil Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Next oil service value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Next oil service unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next oil service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}