The Racing API · Schema

RaceKey

RaceKey schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
race_number object
day_evening object
View JSON Schema on GitHub

JSON Schema

the-racing-api-race-key-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-key-schema.json",
  "title": "RaceKey",
  "description": "RaceKey schema from The Racing API",
  "type": "object",
  "properties": {
    "race_number": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Race Number"
    },
    "day_evening": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Day Evening"
    }
  }
}