Yellow Service Time

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

Name: yellowservicetime

Delivery Method: pull

ATTRIBUTES

value required
number Yellow service time value
unit required
string Yellow service time unit
timestamp required
string The timestamp the yellow service time was recorded. Format according to ISO 8601 format.
{
  "name": "Yellow Service Time",
  "technicalName": "yellowservicetime",
  "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 Time",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Yellow service time value"
      },
      "unit": {
        "type": "string",
        "title": "Yellow service time unit",
        "enum": [
          "DAY",
          "WEEK",
          "MONTH"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the yellow service time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}