action iqualify_get_offerings_info_text_pattern { label: "Find offerings where info field matches the specified textPattern" description: "Find offerings where info field matches the specified text pattern." provider: iqualify method: GET path: "/offerings/info/{textPattern}" encoding: json input: { type: "object" properties: { textPattern: { type: "string" } } required: ["textPattern"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { contentId: { type: "string" } end: { type: "string" format: "date-time" } id: { type: "string" } info: { type: "string" } learnersCount: { type: "number" description: "number of learners in the offering, excluding facilitators and coaches" } metadata: { type: "object" properties: { rootContentId: { type: "string" } } } name: { type: "string" } start: { type: "string" format: "date-time" } } } } }