{ "$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-race-pool-schema.json", "title": "RacePool", "description": "RacePool schema from The Racing API", "type": "object", "properties": { "maximum_wager_amount": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Maximum Wager Amount" }, "minimum_box_amount": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Minimum Box Amount" }, "minimum_wager_amount": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Minimum Wager Amount" }, "minimum_wheel_amount": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Minimum Wheel Amount" }, "pool_code": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Pool Code" }, "pool_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Pool Name" }, "race_list": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Race List" } } }