Sunroof Position

The current position of the sunroof.

Name: sunroofposition

Delivery Method: pull

ATTRIBUTES

value required
number The sunroof position value
unit required
string The sunroof position unit
timestamp required
string The timestamp the sunroof position was recorded. Format according to ISO 8601 format.
{
  "name": "Sunroof Position",
  "technicalName": "sunroofposition",
  "description": "The current position of the sunroof.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Sunroof Position",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The sunroof position value"
      },
      "unit": {
        "type": "string",
        "title": "The sunroof position unit",
        "enum": [
          "cm",
          "in"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the sunroof position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}