JockeyOwnerAnalysis schema from The Racing API
{ "$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-jockey-owner-analysis-schema.json", "title": "JockeyOwnerAnalysis", "description": "JockeyOwnerAnalysis schema from The Racing API", "type": "object", "properties": { "id": { "type": "string", "title": "Id" }, "jockey": { "type": "string", "title": "Jockey" }, "total_rides": { "type": "integer", "title": "Total Rides" }, "owners": { "items": { "$ref": "#/components/schemas/app__models__jockeys__Owner" }, "type": "array", "title": "Owners" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "title": "Query" } }, "required": [ "id", "jockey", "total_rides", "owners", "query" ] }