Teleservice Status

This value indicates whether teleservices are available for this vehicle.

Name: teleservicestatus

Delivery Method: pull

ATTRIBUTES

value required
string The teleservices status value
timestamp required
string The timestamp the teleservices status was recorded. Format according to ISO 8601 format.
{
  "name": "Teleservice Status",
  "technicalName": "teleservicestatus",
  "description": "This value indicates whether teleservices are available for this vehicle.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Teleservice Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The teleservices status value",
        "enum": [
          "PENDING",
          "SUCCESSFUL",
          "IDLE",
          "ERROR",
          "INITIAL"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the teleservices status was recorded. Format according to ISO 8601 format."
      }
    }
  }
}