NHTSA Datasets and APIs

NHTSA provides public datasets and APIs covering vehicle safety complaints, recalls, safety ratings (NCAP), and defect investigations. Complaint data entered into NHTSA's Office of Defects Investigation database is searchable by make, model, and year, providing safety defect details, crash/fire/injury records, and recall campaign remedies.

OpenAPI Specification

nhtsa-datasets-api.json Raw ↑
{
  "definitions": {
    "AssociatedProduct": {
      "properties": {
        "beginningManufactureDate": {
          "type": "string"
        },
        "endManufactureDate": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "make": {
          "type": "string"
        },
        "manufacturer": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "productYear": {
          "type": "string"
        },
        "tireSize": {
          "type": "string"
        },
        "typeCode": {
          "enum": [
            "V",
            "C",
            "T",
            "E"
          ],
          "type": "string"
        }
      },
      "type": "object"
    },
    "AssociatedProductWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/AssociatedProduct"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Attributes": {
      "properties": {
        "name": {
          "type": "string"
        },
        "value": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "AttributesWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Attributes"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ChildSeatMode": {
      "properties": {
        "harnessType": {
          "type": "string"
        },
        "maxChildHeight": {
          "type": "number"
        },
        "maxChildHeightFinal": {
          "type": "number"
        },
        "maxChildWeightFinal": {
          "type": "number"
        },
        "maxUsingLowerAnchors": {
          "type": "number"
        },
        "maxUsingLowerAnchorsFinal": {
          "type": "number"
        },
        "maxUsingSeatBelts": {
          "type": "number"
        },
        "minChildHeight": {
          "type": "number"
        },
        "minUsingLowerAnchors": {
          "type": "number"
        },
        "minUsingSeatBelts": {
          "type": "number"
        },
        "mode": {
          "description": "Name of the mode, example \"Foward-Facing\"",
          "type": "string"
        },
        "modeWeight": {
          "type": "number"
        },
        "ratings": {
          "items": {
            "$ref": "#/definitions/ChildSeatModeRating"
          },
          "type": "array"
        },
        "recommendedAge": {
          "type": "boolean"
        },
        "weightHeightRange": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ChildSeatModeRating": {
      "properties": {
        "label": {
          "type": "string"
        },
        "notes": {
          "type": "string"
        },
        "rating": {
          "type": "integer"
        },
        "ratingType": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ChildSeatModeRatingWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/ChildSeatModeRating"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ChildSeatModeWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/ChildSeatMode"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Childseat": {
      "properties": {
        "id": {
          "type": "integer"
        },
        "make": {
          "type": "string"
        },
        "manufactureDate": {
          "type": "string"
        },
        "modelNumber": {
          "type": "string"
        },
        "modes": {
          "items": {
            "$ref": "#/definitions/ChildSeatMode"
          },
          "type": "array"
        },
        "productModel": {
          "type": "string"
        },
        "safetyIssues": {
          "$ref": "#/definitions/SafetyIssueAggregate"
        },
        "seatType": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ChildseatWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Childseat"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Complaint": {
      "properties": {
        "artemisId": {
          "format": "int64",
          "type": "integer"
        },
        "childSeat": {
          "type": "boolean"
        },
        "city": {
          "type": "string"
        },
        "consumerLocation": {
          "type": "string"
        },
        "crash": {
          "type": "boolean"
        },
        "createDate": {
          "format": "date",
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "equipment": {
          "type": "boolean"
        },
        "fire": {
          "type": "boolean"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "incidentDate": {
          "format": "date",
          "type": "string"
        },
        "issueYear": {
          "type": "string"
        },
        "numberInjured": {
          "format": "int32",
          "type": "integer"
        },
        "numberOfDeaths": {
          "format": "int32",
          "type": "integer"
        },
        "odiId": {
          "format": "int64",
          "type": "integer"
        },
        "receivedDate": {
          "format": "date",
          "type": "string"
        },
        "stateAbbreviation": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        },
        "tire": {
          "type": "boolean"
        },
        "updateDate": {
          "format": "date",
          "type": "string"
        },
        "vehicle": {
          "type": "boolean"
        },
        "vin": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ComplaintAggregate": {
      "properties": {
        "city": {
          "type": "string"
        },
        "components": {
          "items": {
            "$ref": "#/definitions/Components"
          },
          "type": "array"
        },
        "crash": {
          "type": "integer"
        },
        "dateFiled": {
          "type": "string"
        },
        "dateOfIncident": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "fire": {
          "type": "integer"
        },
        "nhtsaIdNumber": {
          "type": "string"
        },
        "numberOfDeaths": {
          "type": "integer"
        },
        "numberOfInjuries": {
          "type": "integer"
        },
        "stateAbbreviation": {
          "type": "string"
        },
        "vin": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ComplaintAggregateWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/ComplaintAggregate"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ComplaintComponent": {
      "properties": {
        "complaint": {
          "$ref": "#/definitions/Complaint"
        },
        "component": {
          "$ref": "#/definitions/Component"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "originalPart": {
          "type": "boolean"
        }
      },
      "type": "object"
    },
    "ComplaintComponentWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/ComplaintComponent"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ComplaintWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Complaint"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Component": {
      "properties": {
        "artemisId": {
          "format": "int64",
          "type": "integer"
        },
        "description": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "name": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ComponentWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Component"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Components": {
      "properties": {
        "name": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ComponentsWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Components"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "CrashTestRating": {
      "properties": {
        "curbWeight": {
          "type": "string"
        },
        "display": {
          "type": "string"
        },
        "media": {
          "items": {
            "$ref": "#/definitions/Media"
          },
          "type": "array"
        },
        "mmy": {
          "type": "string"
        },
        "ncapVehicleId": {
          "type": "integer"
        },
        "ratings": {
          "items": {
            "$ref": "#/definitions/Rating"
          },
          "type": "array"
        },
        "reports": {
          "items": {
            "$ref": "#/definitions/Report"
          },
          "type": "array"
        },
        "testNo": {
          "type": "integer"
        },
        "testedWith": {
          "type": "string"
        },
        "type": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "CrashTestRatingWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/CrashTestRating"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Document": {
      "properties": {
        "foreignCampaign": {
          "$ref": "#/definitions/ForeignCampaign"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "ncapRating": {
          "$ref": "#/definitions/NCAPRating"
        },
        "safetyIssue": {
          "$ref": "#/definitions/SafetyIssue"
        },
        "summary": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "DocumentWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Document"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Documents": {
      "properties": {
        "description": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "size": {
          "type": "string"
        },
        "type": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "DocumentsWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Documents"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "EWRManufacturer": {
      "properties": {
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "name": {
          "type": "string"
        },
        "reportTypes": {
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "required": [
        "id",
        "name",
        "reportTypes"
      ],
      "type": "object"
    },
    "EWRManufacturerDetail": {
      "properties": {
        "damages": {
          "items": {
            "$ref": "#/definitions/EWRReportPeriod"
          },
          "type": "array"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "injuries": {
          "items": {
            "$ref": "#/definitions/EWRReportPeriod"
          },
          "type": "array"
        },
        "name": {
          "type": "string"
        },
        "productions": {
          "items": {
            "$ref": "#/definitions/EWRReportPeriod"
          },
          "type": "array"
        }
      },
      "required": [
        "id",
        "name",
        "injuries",
        "productions",
        "damages"
      ],
      "type": "object"
    },
    "EWRManufacturerDetailWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/EWRManufacturerDetail"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "EWRManufacturersWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/EWRManufacturer"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "EWRReportPeriod": {
      "properties": {
        "quarter": {
          "format": "int32",
          "type": "integer"
        },
        "reports": {
          "items": {
            "$ref": "#/definitions/EWRReportPeriodCategory"
          },
          "type": "array"
        },
        "year": {
          "format": "int32",
          "type": "integer"
        }
      },
      "required": [
        "year",
        "quarter",
        "reports"
      ],
      "type": "object"
    },
    "EWRReportPeriodCategory": {
      "properties": {
        "category": {
          "type": "string"
        },
        "categoryCode": {
          "type": "string"
        },
        "count": {
          "format": "int32",
          "type": "integer"
        },
        "reportId": {
          "format": "int64",
          "type": "integer"
        },
        "reportUrl": {
          "type": "string"
        }
      },
      "required": [
        "category",
        "categoryCode",
        "count",
        "reportId",
        "reportUrl"
      ],
      "type": "object"
    },
    "EWRInjury": {
      "properties": {
        "sequenceId": {
          "format": "int32",
          "type": "integer"
        },
        "year": {
          "type": "string"
        },
        "incidentDate": {
          "type": "string"
        },
        "deaths": {
          "format": "int32",
          "type": "integer"
        },
        "injuries": {
          "format": "int32",
          "type": "integer"
        },
        "stateOrCountryCode": {
          "type": "string"
        },
        "components": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "make": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "vin": {
          "type": "string"
        },
        "productIdentifier": {
          "type": "string"
        },
        "tin": {
          "type": "string"
        },
        "vehicleMake": {
          "type": "string"
        },
        "vehicleModel": {
          "type": "string"
        },
        "vehicleYear": {
          "type": "string"
        }
      },
      "type": "object",
      "required": [
        "sequenceId",
        "year",
        "incidentDate",
        "deaths",
        "injuries",
        "stateOrCountryCode",
        "components"
      ]
    },
    "EWRInjuryWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/EWRInjury"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "EWRProduction": {
      "properties": {
        "make": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "modelYear": {
          "type": "string"
        },
        "fuelSystem": {
          "type": "string"
        },
        "brakeSystem": {
          "type": "string"
        },
        "typeCode": {
          "type": "string"
        },
        "platform": {
          "type": "string"
        },
        "totalProduction": {
          "format": "int64",
          "type": "integer"
        },
        "fuelPropulsionSystem": {
          "type": "string"
        }
      },
      "type": "object",
      "required": ["make", "model", "modelYear", "typeCode", "totalProduction"]
    },
    "EWRProductionWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/EWRProduction"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "EWRPropertyDamage": {
      "properties": {
        "year": {
          "type": "string"
        },
        "make": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "typeCode": {
          "type": "string"
        },
        "fuelPropulsionSystem": {
          "type": "string"
        },
        "steering": {
          "format": "int32",
          "type": "integer"
        },
        "suspension": {
          "format": "int32",
          "type": "integer"
        },
        "serviceBrake": {
          "format": "int32",
          "type": "integer"
        },
        "serviceBrakeAir": {
          "format": "int32",
          "type": "integer"
        },
        "parkingBrake": {
          "format": "int32",
          "type": "integer"
        },
        "engAndEngCooling": {
          "format": "int32",
          "type": "integer"
        },
        "fuelSystem": {
          "format": "int32",
          "type": "integer"
        },
        "fuelSystemDiesel": {
          "format": "int32",
          "type": "integer"
        },
        "fuelSystemOther": {
          "format": "int32",
          "type": "integer"
        },
        "powerTrain": {
          "format": "int32",
          "type": "integer"
        },
        "electrical": {
          "format": "int32",
          "type": "integer"
        },
        "extLighting": {
          "format": "int32",
          "type": "integer"
        },
        "visibility": {
          "format": "int32",
          "type": "integer"
        },
        "airbags": {
          "format": "int32",
          "type": "integer"
        },
        "seatbelts": {
          "format": "int32",
          "type": "integer"
        },
        "structure": {
          "format": "int32",
          "type": "integer"
        },
        "latch": {
          "format": "int32",
          "type": "integer"
        },
        "speedControl": {
          "format": "int32",
          "type": "integer"
        },
        "tiresRelated": {
          "format": "int32",
          "type": "integer"
        },
        "wheels": {
          "format": "int32",
          "type": "integer"
        },
        "trailerHitch": {
          "format": "int32",
          "type": "integer"
        },
        "seats": {
          "format": "int32",
          "type": "integer"
        },
        "fireRelated": {
          "format": "int32",
          "type": "integer"
        },
        "rollover": {
          "format": "int32",
          "type": "integer"
        },
        "buckle": {
          "format": "int32",
          "type": "integer"
        },
        "seatShell": {
          "format": "int32",
          "type": "integer"
        },
        "handle": {
          "format": "int32",
          "type": "integer"
        },
        "base": {
          "format": "int32",
          "type": "integer"
        },
        "electronicStabilityCtrl": {
          "format": "int32",
          "type": "integer"
        },
        "forwardCollision": {
          "format": "int32",
          "type": "integer"
        },
        "laneDeparture": {
          "format": "int32",
          "type": "integer"
        },
        "backoverPrevention": {
          "format": "int32",
          "type": "integer"
        },
        "tireLine": {
          "type": "string"
        },
        "tireSize": {
          "type": "string"
        },
        "sku": {
          "type": "string"
        },
        "plantCode": {
          "type": "string"
        },
        "tread": {
          "format": "int32",
          "type": "integer"
        },
        "sidewall": {
          "format": "int32",
          "type": "integer"
        },
        "bead": {
          "format": "int32",
          "type": "integer"
        },
        "other": {
          "format": "int32",
          "type": "integer"
        }
      },
      "type": "object",
      "required": [
        "year"
      ]
    },
    "EWRPropertyDamageWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/EWRPropertyDamage"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Equipment": {
      "properties": {
        "brand": {
          "type": "string"
        },
        "productName": {
          "type": "string"
        },
        "safetyIssues": {
          "$ref": "#/definitions/SafetyIssueAggregate"
        }
      },
      "type": "object"
    },
    "EquipmentWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Equipment"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Feature": {
      "properties": {
        "label": {
          "type": "string"
        },
        "notes": {
          "type": "string"
        },
        "value": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "FeatureWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Feature"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ForeignCampaign": {
      "properties": {
        "associatedDocuments": {
          "items": {
            "$ref": "#/definitions/Documents"
          },
          "type": "array"
        },
        "dateReceived": {
          "format": "date",
          "type": "string"
        },
        "foreignRecallNumber": {
          "type": "string"
        },
        "id": {
          "type": "integer"
        },
        "manufacturer": {
          "type": "string"
        },
        "recallTypeCode": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "ForeignCampaignWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/ForeignCampaign"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "InspectionStationDetails": {
      "properties": {
        "city": {
          "type": "string"
        },
        "contact": {
          "type": "string"
        },
        "hasEvent": {
          "type": "boolean"
        },
        "hours": {
          "type": "string"
        },
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        },
        "name": {
          "type": "string"
        },
        "note": {
          "description": "a list of dates.",
          "type": "string"
        },
        "phone": {
          "type": "string"
        },
        "spanishSpeaking": {
          "type": "boolean"
        },
        "state": {
          "type": "string"
        },
        "stateAbbr": {
          "type": "string"
        },
        "streetAddress": {
          "type": "string"
        },
        "zip": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "InspectionStationDetailsWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/InspectionStationDetails"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Investigation": {
      "properties": {
        "artemisId": {
          "format": "int64",
          "type": "integer"
        },
        "closeDate": {
          "format": "date",
          "type": "string"
        },
        "createDate": {
          "format": "date",
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "investigationNumber": {
          "type": "string"
        },
        "investigationType": {
          "enum": [
            "AQ",
            "C",
            "DP",
            "EA",
            "EQ",
            "ID",
            "IE",
            "IQ",
            "IR",
            "PE",
            "RP",
            "RQ",
            "SQ",
            "TA",
            "TQ"
          ],
          "type": "string"
        },
        "issueYear": {
          "type": "string"
        },
        "latestActivityDate": {
          "format": "date",
          "type": "string"
        },
        "nhtsaId": {
          "type": "string"
        },
        "openDate": {
          "format": "date",
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        },
        "updateDate": {
          "format": "date",
          "type": "string"
        }
      },
      "type": "object"
    },
    "InvestigationAggregate": {
      "properties": {
        "components": {
          "items": {
            "$ref": "#/definitions/Components"
          },
          "type": "array"
        },
        "dateClosed": {
          "type": "string"
        },
        "dateOpened": {
          "type": "string"
        },
        "nhtsaCampaignNumber": {
          "type": "string"
        },
        "recalls": {
          "items": {
            "$ref": "#/definitions/Recalls"
          },
          "type": "array"
        },
        "subject": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "type": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "InvestigationAggregateWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/InvestigationAggregate"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "InvestigationComponent": {
      "properties": {
        "component": {
          "$ref": "#/definitions/Component"
        },
        "description": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "investigation": {
          "$ref": "#/definitions/Investigation"
        }
      },
      "type": "object"
    },
    "InvestigationComponentWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/InvestigationComponent"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "InvestigationWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Investigation"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Investigations": {
      "properties": {
        "nhtsaActionNumber": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "InvestigationsWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Investigations"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "MFRCommunicationAggregate": {
      "properties": {
        "communicationDate": {
          "type": "string"
        },
        "components": {
          "items": {
            "$ref": "#/definitions/Components"
          },
          "type": "array"
        },
        "manufacturerCommunicationNumber": {
          "type": "string"
        },
        "nhtsaIdNumber": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "MFRCommunicationAggregateWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/MFRCommunicationAggregate"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Makes": {
      "properties": {
        "make": {
          "type": "string"
        },
        "modelYear": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "MakesWrapped": {
      "properties": {
        "meta": {
          "$ref": "#/definitions/Meta"
        },
        "results": {
          "items": {
            "$ref": "#/definitions/Makes"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "Manufacturer": {
      "properties": {
        "artemisId": {
          "format": "int64",
          "type": "integer"
        },
        "displayName": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "name": {
          "type": "string"
        },
        "ncapId": {
          "format": "int64",
          "type": "integer"
        },
        "products": {
          "items": {
            "$ref": "#/definitions/Product"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "ManufacturerCommunication": {
      "properties": {
        "artemisId": {
          "format": "int64",
          "type": "integer"
        },
        "communicationDate": {
          "format": "date",
          "type": "string"
        },
        "createDate": {
          "format": "date",
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "externalManufacturerId": {
          "type": "string"
        },
        "id": {
          "format": "int64",
          "type": "integer"
        },
        "issueYear": {
          "type": "string"
        },
        "microfisheId": {
          "type": "string"
        },
        "replacedTsbsId": {
          "type": "string"
        },
        "subject": {
          "type": "string"
        },
        "updateDate": {
          "format": "date",
          "type": "string"
        }
      },
      "type": "object"
    },
    "ManufacturerCommunicationComponent": {
      "properties": {
        "component": {
          "$ref": "#/definitions/Component"
        },
        "id": {
          "format": "int64",
          "t

# --- truncated at 32 KB (166 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dot/refs/heads/main/openapi/nhtsa-datasets-api.json