The Racing API · Schema

HorsePool

HorsePool schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
pool_type_name object
amount object
fractional_odds object
dollar object
View JSON Schema on GitHub

JSON Schema

the-racing-api-horse-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-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"
    }
  }
}