action gambitcomm_list_timer_scripts { label: "List the timer scripts currently running along with the their intervals." description: "The command mimic timer script list lists global timer scripts, the command /mimic/timer/script/{agentNum}/list is the per-agent equivalent NOTE Global timer scripts run globally but within them you can address individual agents using {agentNum}. To schedule timerscripts for an individual agent, use /mimic/timer/script/{agentNum}." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/timer/script/list" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { arg: { type: "string" } interval: { type: "integer" format: "int32" } script: { type: "string" } } } } }