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