Vehicle Connectivity Details

This data item provide information on the vehicle connectivity and the supported use cases.

Name: vehicleconnectivitydetails

Delivery Method: pull

ATTRIBUTES

oemSupported required
string Contract with OEM available.
eligibleVehicle required
string The status whether or not vehicle is eligible for the data delivery. If true, the VIN was valid, the brand is supported and the region (where the vehicle is registered) is supported for data delivery by the data provider.
telematicsCapable required
string The status whether or not the vehicle is equipped with a telematics control unit (TCU). If true, the vehicle is technically able to provide telematics data.
registeredPrimaryUser required
string The status whether or not a primary user for the vehicle is registered at the portal of the data provider. A registered primary user may be required to provide consent for data sharing of telematics data.
supportedUseCases required
object undefined
PAYD
string The vehicle supports Pay As You Drive (PAYD).
PHYD
string The vehicle supports Pay How You Drive (PHYD).
FNOL
string The vehicle supports First Notification of Loss (FNOL).
timestamp required
string The timestamp the vehicle connectivity details were requested. Format according to ISO 8601 format.
{
  "name": "Vehicle Connectivity Details",
  "technicalName": "vehicleconnectivitydetails",
  "description": "This data item provide information on the vehicle connectivity and the supported use cases.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Detailed Vehicle Connectivity",
    "required": [
      "oemSupported"
      "eligibleVehicle",
      "telematicsCapable",
      "registeredPrimaryUser",
      "supportedUseCases",
      "timestamp"
    ],
    "properties": {
      "oemSupported": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"					
        ],
        "title": "Contract with OEM available"
      },			
      "eligibleVehicle": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not vehicle is eligible for the data delivery. If true, the VIN was valid, the brand is supported and the region (where the vehicle is registered) is supported for data delivery by the data provider."
      },
      "telematicsCapable": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not the vehicle is equipped with a telematics control unit (TCU). If true, the vehicle is technically able to provide telematics data."
      },
      "registeredPrimaryUser": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The status whether or not a primary user for the vehicle is registered at the portal of the data provider. A registered primary user may be required to provide consent for data sharing of telematics data."
      },
      "supportedUseCases": {
        "type": "object",
        "properties": {
          "PAYD": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports Pay As You Drive (PAYD)."
          },
          "PHYD": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports Pay How You Drive (PHYD)."
          },
          "FNOL": {
            "type": "string",
            "enum": [
              "TRUE",
              "FALSE",
              "UNKNOWN"
            ],
            "title": "The vehicle supports First Notification of Loss (FNOL)."
          }
        },
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle connectivity details were requested. Format according to ISO 8601 format."
      }
    }
  }
}