US Department of Transportation · Schema
Investigation
NHTSA Investigation schema
GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData
Properties
| Name | Type | Description |
|---|---|---|
| artemisId | integer | |
| closeDate | string | |
| createDate | string | |
| description | string | |
| id | integer | |
| investigationNumber | string | |
| investigationType | string | |
| issueYear | string | |
| latestActivityDate | string | |
| nhtsaId | string | |
| openDate | string | |
| status | string | |
| subject | string | |
| updateDate | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.nhtsa.gov/schemas/Investigation.json",
"title": "Investigation",
"description": "NHTSA Investigation schema",
"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"
}