{ "$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__aus_races__-runner-schema.json", "title": "app__models__aus_races__Runner", "description": "app__models__aus_races__Runner schema from The Racing API", "type": "object", "properties": { "horse_id": { "type": "string", "title": "Horse Id" }, "horse": { "type": "string", "title": "Horse" }, "age": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Age" }, "comment": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Comment" }, "colour": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Colour" }, "dam": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Dam" }, "dam_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Dam Id" }, "draw": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Draw" }, "form": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Form" }, "jockey": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Jockey" }, "jockey_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Jockey Id" }, "jockey_claim": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Jockey Claim" }, "margin": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Margin" }, "number": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Number" }, "odds": { "anyOf": [ { "items": { "$ref": "#/components/schemas/app__models__aus_races__RunnerOdds" }, "type": "array" }, { "type": "null" } ], "title": "Odds" }, "owner": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Owner" }, "position": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Position" }, "prize": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Prize" }, "rating": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Rating" }, "scratched": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Scratched" }, "sex": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Sex" }, "silk_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Silk Url" }, "sire": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Sire" }, "sire_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Sire Id" }, "sp": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Sp" }, "stats": { "anyOf": [ { "$ref": "#/components/schemas/RunnerStats" }, { "type": "null" } ] }, "trainer": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Trainer" }, "trainer_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Trainer Id" }, "weight": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Weight" } }, "required": [ "horse_id", "horse" ] }