The Racing API · Schema

TimesGoing

TimesGoing schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
date string
region string
course string
time string
going string
position string
View JSON Schema on GitHub

JSON Schema

the-racing-api-times-going-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-times-going-schema.json",
  "title": "TimesGoing",
  "description": "TimesGoing schema from The Racing API",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "title": "Date"
    },
    "region": {
      "type": "string",
      "title": "Region"
    },
    "course": {
      "type": "string",
      "title": "Course"
    },
    "time": {
      "type": "string",
      "title": "Time"
    },
    "going": {
      "type": "string",
      "title": "Going"
    },
    "position": {
      "type": "string",
      "title": "Position"
    }
  },
  "required": [
    "date",
    "region",
    "course",
    "time",
    "going",
    "position"
  ]
}