The Racing API · JSON Structure

The Racing Api Race Pool Structure

RacePool schema from The Racing API

Type: object Properties: 7
Horse RacingSportsStatisticsBettingAnalytics

RacePool is a JSON Structure definition published by The Racing API, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

maximum_wager_amount minimum_box_amount minimum_wager_amount minimum_wheel_amount pool_code pool_name race_list

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-structure/the-racing-api-race-pool-structure.json",
  "name": "RacePool",
  "description": "RacePool schema from The Racing API",
  "type": "object",
  "properties": {
    "maximum_wager_amount": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "name": "Maximum Wager Amount"
    },
    "minimum_box_amount": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "name": "Minimum Box Amount"
    },
    "minimum_wager_amount": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "name": "Minimum Wager Amount"
    },
    "minimum_wheel_amount": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "name": "Minimum Wheel Amount"
    },
    "pool_code": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Pool Code"
    },
    "pool_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Pool Name"
    },
    "race_list": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Race List"
    }
  }
}