Next Service Distance

This value indicates how many kilometres or miles remain before the next service at the time of recording the data.

Name: nextservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Next service distance value
unit required
string Next service distance unit
timestamp required
string The timestamp the vehicle next service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Next Service Distance",
  "technicalName": "nextservicedistance",
  "description": "This value indicates how many kilometres or miles remain before the next service at the time of recording the data.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Next service distance value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Next service distance unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle next service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}