The Racing API · Schema

RacecardsOddsPage

RacecardsOddsPage schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
racecards array
total integer
limit integer
skip integer
query array
View JSON Schema on GitHub

JSON Schema

the-racing-api-racecards-odds-page-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-racecards-odds-page-schema.json",
  "title": "RacecardsOddsPage",
  "description": "RacecardsOddsPage schema from The Racing API",
  "type": "object",
  "properties": {
    "racecards": {
      "items": {
        "$ref": "#/components/schemas/RacecardOdds"
      },
      "type": "array",
      "title": "Racecards"
    },
    "total": {
      "type": "integer",
      "title": "Total"
    },
    "limit": {
      "type": "integer",
      "title": "Limit"
    },
    "skip": {
      "type": "integer",
      "title": "Skip"
    },
    "query": {
      "items": {
        "items": {},
        "type": "array"
      },
      "type": "array",
      "title": "Query"
    }
  },
  "required": [
    "racecards",
    "total",
    "limit",
    "skip",
    "query"
  ]
}