RunnerStatsBreakdown schema from The Racing API
{ "$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-runner-stats-breakdown-schema.json", "title": "RunnerStatsBreakdown", "description": "RunnerStatsBreakdown schema from The Racing API", "type": "object", "properties": { "total": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Total" }, "first": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "First" }, "second": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Second" }, "third": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Third" } } }