The Racing API · Schema

RacecardsBasicPage

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