{ "$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-meet-races-schema.json", "title": "MeetRaces", "description": "MeetRaces schema from The Racing API", "type": "object", "properties": { "distance": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Distance" }, "class": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Class" }, "race_group": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Race Group" }, "race_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Race Name" }, "race_number": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Race Number" }, "race_status": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Race Status" }, "off_time": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Off Time" } } }