{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-structure/the-racing-api-time-data-structure.json", "name": "TimeData", "description": "TimeData schema from The Racing API", "type": "object", "properties": { "minutes": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "name": "Minutes" }, "seconds": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "name": "Seconds" }, "hundredths": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "name": "Hundredths" }, "milliseconds": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "name": "Milliseconds" }, "fifths": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "name": "Fifths" }, "str_fifths": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "name": "Str Fifths" }, "time_in_fifths": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "name": "Time In Fifths" }, "time_in_hundredths": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "name": "Time In Hundredths" } } }