The Racing API · JSON Structure

The Racing Api Racecards Basic Page Structure

RacecardsBasicPage schema from The Racing API

Type: object Properties: 5 Required: 5
Horse RacingSportsStatisticsBettingAnalytics

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

Properties

racecards total limit skip query

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-racecards-basic-page-structure.json",
  "name": "RacecardsBasicPage",
  "description": "RacecardsBasicPage schema from The Racing API",
  "type": "object",
  "properties": {
    "racecards": {
      "items": {
        "$ref": "#/components/schemas/RacecardBasic"
      },
      "type": "array",
      "name": "Racecards"
    },
    "total": {
      "type": "integer",
      "name": "Total"
    },
    "limit": {
      "type": "integer",
      "name": "Limit"
    },
    "skip": {
      "type": "integer",
      "name": "Skip"
    },
    "query": {
      "items": {
        "items": {},
        "type": "array"
      },
      "type": "array",
      "name": "Query"
    }
  },
  "required": [
    "racecards",
    "total",
    "limit",
    "skip",
    "query"
  ]
}