Department of Transportation · Schema
NHTSA Vehicle Recall
A vehicle, equipment, child-seat, or tire recall record published by NHTSA.
Federal GovernmentTransportationVehiclesAviationMotor Carriers
Properties
| Name | Type | Description |
|---|---|---|
| NHTSACampaignNumber | string | NHTSA recall campaign identifier |
| Manufacturer | string | |
| ReportReceivedDate | string | |
| Component | string | |
| Summary | string | |
| Consequence | string | |
| Remedy | string | |
| Notes | stringnull | |
| ModelYear | string | |
| Make | string | |
| Model | string | |
| PotentialNumberOfUnitsAffected | stringinteger |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/department-of-transportation/schemas/recall.json",
"title": "NHTSA Vehicle Recall",
"description": "A vehicle, equipment, child-seat, or tire recall record published by NHTSA.",
"type": "object",
"required": ["NHTSACampaignNumber", "Manufacturer"],
"properties": {
"NHTSACampaignNumber": { "type": "string", "description": "NHTSA recall campaign identifier" },
"Manufacturer": { "type": "string" },
"ReportReceivedDate": { "type": "string" },
"Component": { "type": "string" },
"Summary": { "type": "string" },
"Consequence": { "type": "string" },
"Remedy": { "type": "string" },
"Notes": { "type": ["string", "null"] },
"ModelYear": { "type": "string" },
"Make": { "type": "string" },
"Model": { "type": "string" },
"PotentialNumberOfUnitsAffected": { "type": ["string", "integer"] }
}
}