VehicleDetails

NHTSA VehicleDetails schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
class string
complaintsCount integer
investigationsCount integer
make string
manufacturer string
manufacturerCommunicationsCount integer
model string
modelYear string
ncapRated boolean
recallsCount integer
safetyIssues object
safetyRatings object
series string
trim string
vehicleDescription string
vehicleId integer
vehiclePicture string
View JSON Schema on GitHub

JSON Schema

vehicledetails.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/VehicleDetails.json",
  "title": "VehicleDetails",
  "description": "NHTSA VehicleDetails schema",
  "properties": {
    "class": {
      "type": "string"
    },
    "complaintsCount": {
      "type": "integer"
    },
    "investigationsCount": {
      "type": "integer"
    },
    "make": {
      "type": "string"
    },
    "manufacturer": {
      "type": "string"
    },
    "manufacturerCommunicationsCount": {
      "type": "integer"
    },
    "model": {
      "type": "string"
    },
    "modelYear": {
      "type": "string"
    },
    "ncapRated": {
      "type": "boolean"
    },
    "recallsCount": {
      "type": "integer"
    },
    "safetyIssues": {
      "$ref": "#/definitions/SafetyIssueAggregate"
    },
    "safetyRatings": {
      "$ref": "#/definitions/SafetyRatingAggregate"
    },
    "series": {
      "type": "string"
    },
    "trim": {
      "type": "string"
    },
    "vehicleDescription": {
      "type": "string"
    },
    "vehicleId": {
      "type": "integer"
    },
    "vehiclePicture": {
      "type": "string"
    }
  },
  "type": "object"
}