The Racing API · Schema
Payoff
Payoff schema from The Racing API
Horse RacingSportsStatisticsBettingAnalytics
Properties
| Name | Type | Description |
|---|---|---|
| base_amount | object | |
| carryover | object | |
| number_of_rights | object | |
| number_of_tickets_bet | object | |
| payoff_amount | object | |
| total_pool | object | |
| wager_name | object | |
| wager_type | object | |
| winning_numbers | object |
JSON Schema
{
"$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"
}
}
}