{ "$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-payoff-schema.json", "title": "Payoff", "description": "Payoff schema from The Racing API", "type": "object", "properties": { "base_amount": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Base Amount" }, "carryover": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "title": "Carryover" }, "number_of_rights": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Number Of Rights" }, "number_of_tickets_bet": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Number Of Tickets Bet" }, "payoff_amount": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Payoff Amount" }, "total_pool": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Total Pool" }, "wager_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Wager Name" }, "wager_type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Wager Type" }, "winning_numbers": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Winning Numbers" } } }