US Department of Transportation · Schema
EWRInjury
NHTSA EWRInjury schema
GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData
Properties
| Name | Type | Description |
|---|---|---|
| sequenceId | integer | |
| year | string | |
| incidentDate | string | |
| deaths | integer | |
| injuries | integer | |
| stateOrCountryCode | string | |
| components | array | |
| make | string | |
| model | string | |
| vin | string | |
| productIdentifier | string | |
| tin | string | |
| vehicleMake | string | |
| vehicleModel | string | |
| vehicleYear | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.nhtsa.gov/schemas/EWRInjury.json",
"title": "EWRInjury",
"description": "NHTSA EWRInjury schema",
"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"
]
}