action gambitcomm_get_value { label: "Get a variable in the Value Space." description: "Get a variable in the Value Space." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/get/{object}/{instance}/{variable}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } instance: { type: "string" } object: { type: "string" } variable: { type: "string" } } required: ["agentNum", "instance", "object", "variable"] additionalProperties: false } output: { type: "string" } }