action gambitcomm_mget_value { label: "Get multiple variables in the Value Space." description: "This is a performance optimization of the mimic value get command, to be used when many variables are requested." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/mget/{objInsVarArray}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } objInsVarArray: { type: "array" items: { type: "array" items: { type: "string" } } } } required: ["agentNum", "objInsVarArray"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }