action gambitcomm_get_mib { label: "Return the MIB that defines the specified object." description: "This will only return a MIB name if the object is unmistakeably defined in a MIB." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/mib/{object}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } object: { type: "string" } } required: ["agentNum", "object"] additionalProperties: false } output: { type: "string" } }