Mercedes-Benz DTC Readout

Schema for a Mercedes-Benz Diagnostic Trouble Code readout returned by the Remote Diagnostic Support API.

AutomotiveConnected CarConnected VehicleDaimlerFleet ManagementMercedes meMercedes-BenzOEMTelematicsVehicle Data

Properties

Name Type Description
vehicleId string VIN/FIN of the Mercedes-Benz vehicle. 17-character VIN.
readoutId string Server-assigned identifier for this readout request.
status string Current readout status.
createdAt string Timestamp when the readout was requested.
completedAt string Timestamp when the readout finished (if applicable).
ecus array ECUs covered by the readout.
errors array Errors encountered during readout, if any.
View JSON Schema on GitHub

JSON Schema

mercedes-me-dtc-readout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mercedes-me/main/json-schema/mercedes-me-dtc-readout-schema.json",
  "title": "Mercedes-Benz DTC Readout",
  "description": "Schema for a Mercedes-Benz Diagnostic Trouble Code readout returned by the Remote Diagnostic Support API.",
  "type": "object",
  "required": ["vehicleId", "readoutId", "status"],
  "properties": {
    "vehicleId": {
      "type": "string",
      "description": "VIN/FIN of the Mercedes-Benz vehicle. 17-character VIN.",
      "minLength": 17,
      "maxLength": 17
    },
    "readoutId": {
      "type": "string",
      "description": "Server-assigned identifier for this readout request."
    },
    "status": {
      "type": "string",
      "description": "Current readout status.",
      "enum": ["PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "TIMED_OUT"]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the readout was requested."
    },
    "completedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the readout finished (if applicable)."
    },
    "ecus": {
      "type": "array",
      "description": "ECUs covered by the readout.",
      "items": {
        "type": "object",
        "required": ["ecuId"],
        "properties": {
          "ecuId": {"type": "string", "description": "Electronic Control Unit identifier."},
          "ecuName": {"type": "string"},
          "dtcs": {
            "type": "array",
            "description": "Diagnostic Trouble Codes reported by this ECU.",
            "items": {
              "type": "object",
              "required": ["dtcId"],
              "properties": {
                "dtcId": {"type": "string", "description": "DTC identifier (often UDS-format hex)."},
                "description": {"type": "string"},
                "severity": {"type": "string", "enum": ["INFO", "LOW", "MEDIUM", "HIGH", "CRITICAL"]},
                "active": {"type": "boolean"},
                "occurrenceCount": {"type": "integer", "minimum": 0}
              }
            }
          }
        }
      }
    },
    "errors": {
      "type": "array",
      "description": "Errors encountered during readout, if any.",
      "items": {
        "type": "object",
        "properties": {
          "code": {"type": "string"},
          "message": {"type": "string"}
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/mercedes-me-dtc-readout"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.