The Racing API · JSON Structure

The Racing Api Results Standard Page Structure

ResultsStandardPage schema from The Racing API

Type: object Properties: 5 Required: 5
Horse RacingSportsStatisticsBettingAnalytics

ResultsStandardPage 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

results 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-results-standard-page-structure.json",
  "name": "ResultsStandardPage",
  "description": "ResultsStandardPage schema from The Racing API",
  "type": "object",
  "properties": {
    "results": {
      "anyOf": [
        {
          "items": {
            "$ref": "#/components/schemas/ResultStandard"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "name": "Results"
    },
    "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": [
    "results",
    "total",
    "limit",
    "skip",
    "query"
  ]
}