The Racing API · JSON Structure

The Racing Api Times Going Structure

TimesGoing schema from The Racing API

Type: object Properties: 6 Required: 6
Horse RacingSportsStatisticsBettingAnalytics

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

Properties

date region course time going position

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