The Racing API · Schema

app__models__aus_meets__Meet

app__models__aus_meets__Meet schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
meet_id object
date object
course object
course_id object
races array
state object
View JSON Schema on GitHub

JSON Schema

the-racing-api-app__models__aus_meets__-meet-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-app__models__aus_meets__-meet-schema.json",
  "title": "app__models__aus_meets__Meet",
  "description": "app__models__aus_meets__Meet schema from The Racing API",
  "type": "object",
  "properties": {
    "meet_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Meet Id"
    },
    "date": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Date"
    },
    "course": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Course"
    },
    "course_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Course Id"
    },
    "races": {
      "items": {
        "$ref": "#/components/schemas/MeetRaces"
      },
      "type": "array",
      "title": "Races"
    },
    "state": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "State"
    }
  },
  "required": [
    "races"
  ]
}