Spoiler Status

This value indicates the spoiler status at the time of data capturing.

Name: spoilerstatus

Delivery Method: pull

ATTRIBUTES

value required
string Spoiler status value
timestamp required
string The timestamp the Spoiler status value was recorded. Format according to ISO 8601 format.
{
  "name": "Spoiler Status",
  "technicalName": "spoilerstatus",
  "description": "This value indicates the spoiler status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Spoiler Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Spoiler status value",
        "enum": [
          "OPENED",
          "CLOSED",
          "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the Spoiler status value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}