action apptigent_filter_collection { label: "Collections - Filter collection" description: "Filter a collection of strings by keyword" provider: apptigent method: POST path: "/FilterCollection" encoding: json input: { type: "object" required: ["input", "keywords", "match"] properties: { input: { type: "array" description: "Collection of strings to filter" items: { type: "string" } } keywords: { type: "string" description: "Keywords (separate multiple values with commas)" } match: { type: "string" description: "Match type" enum: ["Any", "All", "None"] } } } output: { type: "object" properties: { result: { type: "array" description: "Modified collection result" items: { type: "string" } } } } }