action gambitcomm_list_daemon_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/timer/script/list" encoding: json output: { type: "array" items: { type: "object" properties: { arg: { type: "string" } interval: { type: "integer" format: "int32" } script: { type: "string" } } } } }