{ "$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-style-schema.json", "title": "Style", "description": "Complete vehicle style (trim) with specs, options, and pricing", "type": "object", "properties": { "id": { "type": "integer", "description": "Style ID", "example": 401890697 }, "name": { "type": "string", "description": "Full style name", "example": "LE 4dr Sedan" }, "year": { "$ref": "#/components/schemas/ModelYear" }, "make": { "$ref": "#/components/schemas/MakeSummary" }, "model": { "$ref": "#/components/schemas/ModelSummary" }, "price": { "$ref": "#/components/schemas/StylePrice" }, "squishVins": { "type": "array", "description": "VIN squish codes for this style", "items": { "type": "string" } }, "categories": { "type": "object", "description": "Vehicle category classifications", "properties": { "primaryBodyType": { "type": "string", "example": "Cars" }, "vehicleStyle": { "type": "string", "example": "Sedan" }, "vehicleType": { "type": "string", "example": "Car" }, "market": { "type": "string", "example": "Mainstream" } } } } }