{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://therundown.io/schemas/MarketLinePriceResponse", "title": "MarketLinePriceResponse", "type": "object", "properties": { "id": { "type": "string" }, "price": { "type": "number", "description": "American odds price. Value of 0.0001 means \"off the board\".", "example": -110 }, "price_delta": { "type": "number", "nullable": true, "description": "Change from previous price" }, "is_main_line": { "type": "boolean", "description": "Whether this is the primary/main line" }, "updated_at": { "type": "string", "format": "date-time" }, "closed_at": { "type": "string", "format": "date-time", "nullable": true } } }