{ "$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-odds-history-schema.json", "title": "OddsHistory", "description": "OddsHistory schema from The Racing API", "type": "object", "properties": { "bookmaker": { "type": "string", "title": "Bookmaker" }, "fractional": { "type": "string", "title": "Fractional" }, "decimal": { "type": "string", "title": "Decimal" }, "ew_places": { "type": "string", "title": "Ew Places" }, "ew_denom": { "type": "string", "title": "Ew Denom" }, "updated": { "type": "string", "title": "Updated" }, "history": { "anyOf": [ { "items": {}, "type": "array" }, { "type": "null" } ], "title": "History", "default": [] } }, "required": [ "bookmaker", "fractional", "decimal", "ew_places", "ew_denom", "updated" ] }