DTC (Diagnostic Trouble Codes)

A list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.

Name: dtc

Delivery Method: pull

ATTRIBUTES

value required
object undefined
timestamp
string The last time the error occurred. Format according to ISO 8601 format.
{
  "name": "DTC (Diagnostic Trouble Codes)",
  "technicalName": "dtc",
  "description": "A list of diagnostic trouble codes that hint at potential errors or technical faults for a vehicle with a given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diagnostic Trouble Code (DTC)",
    "required": [
      "value"
    ],
    "properties": {
      "value": {
        "type": "object",
        "properties": {
          "asyncStatus": {
            "type": "string"
          },
          "messageTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "receivedTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "string"
          },
          "dtcs": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "dtcId"
              ],
              "properties": {
                "dtcId": {
                  "type": "string"
                },
                "ecuId": {
                  "type": "string"
                },
                "occurrences": {
                  "type": "number"
                },
                "status": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string",
                  "format": "date-time"
                }
              }
            }
          }
        }
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The last time the error occurred. Format according to ISO 8601 format."
      }
    }
  }
}