NHTSA EWRManufacturer schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.nhtsa.gov/schemas/EWRManufacturer.json", "title": "EWRManufacturer", "description": "NHTSA EWRManufacturer schema", "properties": { "id": { "format": "int64", "type": "integer" }, "name": { "type": "string" }, "reportTypes": { "items": { "type": "string" }, "type": "array" } }, "required": [ "id", "name", "reportTypes" ], "type": "object" }