The Racing API · Schema
ResultsFreePage
ResultsFreePage schema from The Racing API
Horse RacingSportsStatisticsBettingAnalytics
Properties
| Name | Type | Description |
|---|---|---|
| results | object | |
| total | integer | |
| limit | integer | |
| skip | integer | |
| query | array |
JSON Schema
{
"$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-results-free-page-schema.json",
"title": "ResultsFreePage",
"description": "ResultsFreePage schema from The Racing API",
"type": "object",
"properties": {
"results": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/ResultFree"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Results"
},
"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": [
"results",
"total",
"limit",
"skip",
"query"
]
}