{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-schema/the-racing-api-sire-distance-analysis-schema.json", "title": "SireDistanceAnalysis", "description": "SireDistanceAnalysis schema from The Racing API", "type": "object", "properties": { "id": { "type": "string", "title": "Id" }, "sire": { "type": "string", "title": "Sire" }, "total_runners": { "type": "integer", "title": "Total Runners" }, "distances": { "items": { "$ref": "#/components/schemas/app__models__sires__Distance" }, "type": "array", "title": "Distances" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "title": "Query" } }, "required": [ "id", "sire", "total_runners", "distances", "query" ] }