{ "$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-trainer-owner-analysis-structure.json", "name": "TrainerOwnerAnalysis", "description": "TrainerOwnerAnalysis schema from The Racing API", "type": "object", "properties": { "id": { "type": "string", "name": "Id" }, "trainer": { "type": "string", "name": "Trainer" }, "total_runners": { "type": "integer", "name": "Total Runners" }, "owners": { "items": { "$ref": "#/components/schemas/app__models__trainers__Owner" }, "type": "array", "name": "Owners" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "name": "Query" } }, "required": [ "id", "trainer", "total_runners", "owners", "query" ] }