The Racing API · Schema

app__models__courses__Course

app__models__courses__Course schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
id string
course string
region_code string
region string
View JSON Schema on GitHub

JSON Schema

the-racing-api-app__models__courses__-course-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__courses__-course-schema.json",
  "title": "app__models__courses__Course",
  "description": "app__models__courses__Course schema from The Racing API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "course": {
      "type": "string",
      "title": "Course"
    },
    "region_code": {
      "type": "string",
      "title": "Region Code"
    },
    "region": {
      "type": "string",
      "title": "Region"
    }
  },
  "required": [
    "id",
    "course",
    "region_code",
    "region"
  ]
}