{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-structure/the-racing-api-jockey-owner-analysis-structure.json", "name": "JockeyOwnerAnalysis", "description": "JockeyOwnerAnalysis schema from The Racing API", "type": "object", "properties": { "id": { "type": "string", "name": "Id" }, "jockey": { "type": "string", "name": "Jockey" }, "total_rides": { "type": "integer", "name": "Total Rides" }, "owners": { "items": { "$ref": "#/components/schemas/app__models__jockeys__Owner" }, "type": "array", "name": "Owners" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "name": "Query" } }, "required": [ "id", "jockey", "total_rides", "owners", "query" ] }