action gambitcomm_agent_store_exists { label: "This command can be used as a predicate to ascertain the existence of a given variable." description: "It returns \"1\" if the variable exists, else \"0\"." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/store/exists/{var}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } var: { type: "string" } } required: ["agentNum", "var"] additionalProperties: false } output: { type: "string" } }