{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-api/refs/heads/main/json-schema/vehicle-api-make-schema.json", "title": "Make", "description": "Vehicle manufacturer make", "type": "object", "properties": { "id": { "type": "integer", "description": "Unique make ID", "example": 200001444 }, "name": { "type": "string", "description": "Make display name", "example": "Toyota" }, "niceName": { "type": "string", "description": "URL-friendly make name (slug)", "example": "toyota" }, "models": { "type": "array", "description": "Models for this make (in full view)", "items": { "$ref": "#/components/schemas/ModelSummary" } } } }