EWRProduction

NHTSA EWRProduction schema

GovernmentTransportationTruckingAviationVehicleSafetyTransitOpenData

Properties

Name Type Description
make string
model string
modelYear string
fuelSystem string
brakeSystem string
typeCode string
platform string
totalProduction integer
fuelPropulsionSystem string
View JSON Schema on GitHub

JSON Schema

ewrproduction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.nhtsa.gov/schemas/EWRProduction.json",
  "title": "EWRProduction",
  "description": "NHTSA EWRProduction schema",
  "properties": {
    "make": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "modelYear": {
      "type": "string"
    },
    "fuelSystem": {
      "type": "string"
    },
    "brakeSystem": {
      "type": "string"
    },
    "typeCode": {
      "type": "string"
    },
    "platform": {
      "type": "string"
    },
    "totalProduction": {
      "format": "int64",
      "type": "integer"
    },
    "fuelPropulsionSystem": {
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "make",
    "model",
    "modelYear",
    "typeCode",
    "totalProduction"
  ]
}