{ "$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-racecards-page-structure.json", "name": "RacecardsPage", "description": "RacecardsPage schema from The Racing API", "type": "object", "properties": { "racecards": { "items": { "$ref": "#/components/schemas/Racecard" }, "type": "array", "name": "Racecards" }, "total": { "type": "integer", "name": "Total" }, "limit": { "type": "integer", "name": "Limit" }, "skip": { "type": "integer", "name": "Skip" }, "query": { "items": { "items": {}, "type": "array" }, "type": "array", "name": "Query" } }, "required": [ "racecards", "total", "limit", "skip", "query" ] }