VehicleMinimal

NHTSA VehicleMinimal schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
class string
make string
model string
modelYear string
safetyIssues object
safetyRatings object
series string
trim string
vehicleId integer
View JSON Schema on GitHub

JSON Schema

vehicleminimal.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/VehicleMinimal.json",
  "title": "VehicleMinimal",
  "description": "NHTSA VehicleMinimal schema",
  "properties": {
    "class": {
      "type": "string"
    },
    "make": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "modelYear": {
      "type": "string"
    },
    "safetyIssues": {
      "$ref": "#/definitions/SafetyIssueAggregate"
    },
    "safetyRatings": {
      "$ref": "#/definitions/SafetyRatingAggregate"
    },
    "series": {
      "type": "string"
    },
    "trim": {
      "type": "string"
    },
    "vehicleId": {
      "type": "integer"
    }
  },
  "type": "object"
}