The Racing API · Schema
app__models__damsires__Class
app__models__damsires__Class schema from The Racing API
Horse RacingSportsStatisticsBettingAnalytics
Properties
| Name | Type | Description |
|---|---|---|
| class | string | |
| runners | integer | |
| 1st | integer | |
| 2nd | integer | |
| 3rd | integer | |
| 4th | integer | |
| a/e | number | |
| win_% | number | |
| 1_pl | number |
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-app__models__damsires__-class-schema.json",
"title": "app__models__damsires__Class",
"description": "app__models__damsires__Class schema from The Racing API",
"type": "object",
"properties": {
"class": {
"type": "string",
"title": "Class"
},
"runners": {
"type": "integer",
"title": "Runners"
},
"1st": {
"type": "integer",
"title": "1st place finishes"
},
"2nd": {
"type": "integer",
"title": "2nd place finishes"
},
"3rd": {
"type": "integer",
"title": "3rd place finishes"
},
"4th": {
"type": "integer",
"title": "4th place finishes"
},
"a/e": {
"type": "number",
"title": "Actual/expected"
},
"win_%": {
"type": "number",
"title": "Win percentage (decimal)"
},
"1_pl": {
"type": "number",
"title": "One unit p/l at SP"
}
},
"required": [
"class",
"runners",
"1st",
"2nd",
"3rd",
"4th",
"a/e",
"win_%",
"1_pl"
]
}