Next Service Advisor Notification

Indicates when service advisor will be notified about next vehicle service.

Name: nextserviceadvisornotification

Delivery Method: pull

ATTRIBUTES

value required
number The value of next service advisor notification period.
units
string The next service advisor notification period unit.
timestamp required
string The timestamp when next service advisor notification was recorded. Format according to ISO 8601 format.
{
  "name": "Next Service Advisor Notification",
  "technicalName": "nextserviceadvisornotification",
  "description": "Indicates when service advisor will be notified about next vehicle service.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Next Service Advisor Notification",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The value of next service advisor notification period."
      },
      "units": {
        "type": "string",
        "enum": [
          "DAY",
          "WEEK",
          "MONTH"
        ],
        "title": "The next service advisor notification period unit."
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when next service advisor notification was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}