{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/backtest-simulation-parameters", "title": "Backtest Simulation Parameters", "type": "object", "properties": { "start": { "type": "string", "format": "date-time", "description": "The start time of the simulation" }, "end": { "type": "string", "format": "date-time", "description": "The end time of the simulation" } }, "required": [ "start", "end" ] }