The Racing API · JSON Structure

The Racing Api App__Models__Aus_Meets__ Meet Structure

app__models__aus_meets__Meet schema from The Racing API

Type: object Properties: 6 Required: 1
Horse RacingSportsStatisticsBettingAnalytics

app__models__aus_meets__Meet is a JSON Structure definition published by The Racing API, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

meet_id date course course_id races state

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-structure/the-racing-api-app__models__aus_meets__-meet-structure.json",
  "name": "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"
        }
      ],
      "name": "Meet Id"
    },
    "date": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Date"
    },
    "course": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Course"
    },
    "course_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "Course Id"
    },
    "races": {
      "items": {
        "$ref": "#/components/schemas/MeetRaces"
      },
      "type": "array",
      "name": "Races"
    },
    "state": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "name": "State"
    }
  },
  "required": [
    "races"
  ]
}