{ "$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-owner-distance-analysis-schema.json", "title": "OwnerDistanceAnalysis", "description": "OwnerDistanceAnalysis schema from The Racing API", "type": "object", "properties": { "id": { "type": "string", "title": "Id" }, "owner": { "type": "string", "title": "Owner" }, "total_runners": { "type": "integer", "title": "Total Runners" }, "distances": { "items": { "$ref": "#/components/schemas/app__models__owners__Distance" }, "type": "array", "title": "Distances" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "title": "Query" } }, "required": [ "id", "owner", "total_runners", "distances", "query" ] }