action gambitcomm_get_objects { label: "Display the MIB objects below the current position" description: "This command is similar to the ls or dir operating system commands to list filesystem directories." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/list/{OID}" encoding: json input: { type: "object" properties: { OID: { type: "string" } agentNum: { type: "integer" format: "int32" } } required: ["OID", "agentNum"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }