action gambitcomm_store_get { label: "Fetches the value associated with a variable." description: "The value will be returned as a string (like all Tcl values)." provider: gambitcomm method: GET path: "/mimic/store/get/{var}" encoding: json input: { type: "object" properties: { var: { type: "string" } } required: ["var"] additionalProperties: false } output: { type: "string" } }