The Racing API · Schema

MeetRaces

MeetRaces schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
distance object
class object
race_group object
race_name object
race_number object
race_status object
off_time object
View JSON Schema on GitHub

JSON Schema

the-racing-api-meet-races-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-meet-races-schema.json",
  "title": "MeetRaces",
  "description": "MeetRaces schema from The Racing API",
  "type": "object",
  "properties": {
    "distance": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Distance"
    },
    "class": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Class"
    },
    "race_group": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Race Group"
    },
    "race_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Race Name"
    },
    "race_number": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Race Number"
    },
    "race_status": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Race Status"
    },
    "off_time": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Off Time"
    }
  }
}