action gambitcomm_agent_store_list { label: "This command will return the list of variables in the said scope." description: "The list will be a Tcl format list with curly braces \"{}\" around each list element. These elements in turn are space separated." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/store/list" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }