Vehicle Connectivity

This value indicates vehicle connectivity at the time of data capturing.

Name: vehicleconnectivity

Delivery Method: pull

ATTRIBUTES

eligibleVehicle required
string The eligibility of this VIN for data collection
telematicsCapable required
string The vehicle telematics capability state
registeredPrimaryUser required
string The primary user for the vehicle is registered
timestamp required
string The timestamp the vehicle connectivity was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Connectivity",
  "technicalName": "vehicleconnectivity",
  "description": "This value indicates vehicle connectivity 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": "Vehicle Connectivity",
    "required": [
      "eligibleVehicle",
      "telematicsCapable",
      "registeredPrimaryUser",
      "timestamp"
    ],
    "properties": {
      "eligibleVehicle": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The eligibility of this VIN for data collection"
      },
      "telematicsCapable": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The vehicle telematics capability state"
      },
      "registeredPrimaryUser": {
        "type": "string",
        "enum": [
          "TRUE",
          "FALSE",
          "UNKNOWN"
        ],
        "title": "The primary user for the vehicle is registered"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle connectivity was recorded. Format according to ISO 8601 format."
      }
    }
  }
}