The Racing API · Schema

Races

Races schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
races array
View JSON Schema on GitHub

JSON Schema

the-racing-api-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-races-schema.json",
  "title": "Races",
  "description": "Races schema from The Racing API",
  "type": "object",
  "properties": {
    "races": {
      "items": {
        "$ref": "#/components/schemas/app__models__aus_races__Race"
      },
      "type": "array",
      "title": "Races"
    }
  },
  "required": [
    "races"
  ]
}