action gambitcomm_mget_info { label: "Get multiple sets of information about MIMIC, where infoArray is one of the parameters defined in the mimic get command." description: "Get multiple sets of information about MIMIC, where infoArray is one of the parameters defined in the mimic get command." provider: gambitcomm method: GET path: "/mimic/mget/{infoArray}" encoding: json input: { type: "object" properties: { infoArray: { type: "array" items: { type: "string" } } } required: ["infoArray"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }