{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SimulationHookCallStarted", "title": "SimulationHookCallStarted", "type": "object", "properties": { "on": { "type": "string", "enum": [ "simulation.run.started" ], "maxLength": 1000 }, "do": { "type": "array", "items": { "oneOf": [ { "$ref": "#/components/schemas/SimulationHookWebhookAction", "title": "SimulationHookWebhookAction" } ] } } }, "required": [ "on", "do" ] }