-
CALL:
{ "type": "get_scenarios" }
-
RESULT:
{ "type": "scenarios_list", "scenarios": [{ "id": 11, "name": "…", "description": "", "eventCount": 6 }] }
-
CALL:
{ "type": "launch_scenario", "scenarioId": 11 }
-
RESULT:
{ "type": "scenario_state", "runs": [{ "scenarioId": 11, "status": "running", "stepIndex": 0 }] }
-
CALL:
{ "type": "pause_scenario", "scenarioId": 11 }
-
RESULT:
{ "type": "scenario_state", "runs": [{ "scenarioId": 11, "status": "paused", "stepIndex": 0 }] }
-
CALL:
{ "type": "next_step", "scenarioId": 11 }
-
RESULT:
{ "type": "scenario_state", "runs": [{ "scenarioId": 11, "stepIndex": 1 }] }