The Racing API · Schema

RacePool

RacePool schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
maximum_wager_amount object
minimum_box_amount object
minimum_wager_amount object
minimum_wheel_amount object
pool_code object
pool_name object
race_list object
View JSON Schema on GitHub

JSON Schema

the-racing-api-race-pool-schema.json Raw ↑
{
  "$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"
    }
  }
}