The Racing API · Schema

ResultStandard

ResultStandard schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
race_id string
date string
region string
course string
course_id string
off string
off_dt object
race_name string
type string
class string
pattern string
rating_band string
age_band string
sex_rest string
dist string
dist_y string
dist_m string
dist_f string
going string
surface object
jumps object
runners array
winning_time_detail object
comments object
non_runners object
tote_win object
tote_pl object
tote_ex object
tote_csf object
tote_tricast object
tote_trifecta object
View JSON Schema on GitHub

JSON Schema

the-racing-api-result-standard-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-result-standard-schema.json",
  "title": "ResultStandard",
  "description": "ResultStandard schema from The Racing API",
  "type": "object",
  "properties": {
    "race_id": {
      "type": "string",
      "title": "Race Id"
    },
    "date": {
      "type": "string",
      "title": "Date"
    },
    "region": {
      "type": "string",
      "title": "Region"
    },
    "course": {
      "type": "string",
      "title": "Course"
    },
    "course_id": {
      "type": "string",
      "title": "Course Id"
    },
    "off": {
      "type": "string",
      "title": "Off"
    },
    "off_dt": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Off Dt",
      "default": ""
    },
    "race_name": {
      "type": "string",
      "title": "Race Name"
    },
    "type": {
      "type": "string",
      "title": "Type"
    },
    "class": {
      "type": "string",
      "title": "Class"
    },
    "pattern": {
      "type": "string",
      "title": "Pattern"
    },
    "rating_band": {
      "type": "string",
      "title": "Rating Band"
    },
    "age_band": {
      "type": "string",
      "title": "Age Band"
    },
    "sex_rest": {
      "type": "string",
      "title": "Sex Rest"
    },
    "dist": {
      "type": "string",
      "title": "Dist"
    },
    "dist_y": {
      "type": "string",
      "title": "Dist Y"
    },
    "dist_m": {
      "type": "string",
      "title": "Dist M"
    },
    "dist_f": {
      "type": "string",
      "title": "Dist F"
    },
    "going": {
      "type": "string",
      "title": "Going"
    },
    "surface": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Surface",
      "default": ""
    },
    "jumps": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Jumps",
      "default": ""
    },
    "runners": {
      "items": {
        "$ref": "#/components/schemas/RunnerStandard"
      },
      "type": "array",
      "title": "Runners"
    },
    "winning_time_detail": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Winning Time Detail",
      "default": ""
    },
    "comments": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Comments",
      "default": ""
    },
    "non_runners": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Non Runners",
      "default": ""
    },
    "tote_win": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Win",
      "default": ""
    },
    "tote_pl": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Pl",
      "default": ""
    },
    "tote_ex": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Ex",
      "default": ""
    },
    "tote_csf": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Csf",
      "default": ""
    },
    "tote_tricast": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Tricast",
      "default": ""
    },
    "tote_trifecta": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tote Trifecta",
      "default": ""
    }
  },
  "required": [
    "race_id",
    "date",
    "region",
    "course",
    "course_id",
    "off",
    "race_name",
    "type",
    "class",
    "pattern",
    "rating_band",
    "age_band",
    "sex_rest",
    "dist",
    "dist_y",
    "dist_m",
    "dist_f",
    "going",
    "runners"
  ]
}