The Racing API · Schema
Results
Results schema from The Racing API
Horse RacingSportsStatisticsBettingAnalytics
Properties
| Name | Type | Description |
|---|---|---|
| meet_id | string | |
| track_id | string | |
| track_name | string | |
| country | string | |
| date | string | |
| races | object | |
| weather | object |
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-schema.json",
"title": "Results",
"description": "Results schema from The Racing API",
"type": "object",
"properties": {
"meet_id": {
"type": "string",
"title": "Meet Id"
},
"track_id": {
"type": "string",
"title": "Track Id"
},
"track_name": {
"type": "string",
"title": "Track Name"
},
"country": {
"type": "string",
"title": "Country"
},
"date": {
"type": "string",
"title": "Date"
},
"races": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/app__models__na_results__Race"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Races"
},
"weather": {
"anyOf": [
{
"$ref": "#/components/schemas/app__models__na_results__Weather"
},
{
"type": "null"
}
]
}
},
"required": [
"meet_id",
"track_id",
"track_name",
"country",
"date"
]
}