Yellow Service Distance

Value indicates the first time customer receives a message about next service.

Name: yellowservicedistance

Delivery Method: pull

ATTRIBUTES

value required
number Yellow service distance value
unit required
string Yellow service distance unit
timestamp required
string The timestamp the yellow service distance was recorded. Format according to ISO 8601 format.
{
  "name": "Yellow Service Distance",
  "technicalName": "yellowservicedistance",
  "description": "Value indicates the first time customer receives a message about next service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Yellow Service Distance",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Yellow service distance value"
      },
      "unit": {
        "type": "string",
        "title": "Yellow service distance unit",
        "enum": [
          "km",
          "mi"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the yellow service distance was recorded. Format according to ISO 8601 format."
      }
    }
  }
}