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