Service Flap Position (Relative)

This value indicates the service flap position at the time of data capturing from 0% (closed) to 100% (open).

Name: serviceflapposition

Delivery Method: pull

ATTRIBUTES

value required
number Service flap position value.
unit required
string Service flap position unit.
timestamp required
string The timestamp the vehicle service flap position was recorded. Format according to ISO 8601 format.
{
  "name": "Service Flap Position (Relative)",
  "technicalName": "serviceflapposition",
  "description": "This value indicates the service flap position at the time of data capturing from 0% (closed) to 100% (open).",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Service Flap Position (Relative)",
    "required": [
      "value",
      "timestamp",
      "unit"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Service flap position value."
      },
      "unit": {
        "type": "string",
        "title": "Service flap position unit.",
        "enum": [
          "PERCENTAGE"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle service flap position was recorded. Format according to ISO 8601 format."
      }
    }
  }
}