{ "$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-horse-pool-schema.json", "title": "HorsePool", "description": "HorsePool schema from The Racing API", "type": "object", "properties": { "pool_type_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Pool Type Name" }, "amount": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Amount" }, "fractional_odds": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Fractional Odds" }, "dollar": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Dollar" } } }