The Racing API · Schema

RacecardsPage

RacecardsPage 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-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-page-schema.json",
  "title": "RacecardsPage",
  "description": "RacecardsPage schema from The Racing API",
  "type": "object",
  "properties": {
    "racecards": {
      "items": {
        "$ref": "#/components/schemas/Racecard"
      },
      "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"
  ]
}