The Racing API · Schema

WagerType

WagerType schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
wager_type object
wager_description object
base_amount object
View JSON Schema on GitHub

JSON Schema

the-racing-api-wager-type-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-wager-type-schema.json",
  "title": "WagerType",
  "description": "WagerType schema from The Racing API",
  "type": "object",
  "properties": {
    "wager_type": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Wager Type"
    },
    "wager_description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Wager Description"
    },
    "base_amount": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Base Amount"
    }
  }
}