action apptigent_collection_contains_number { label: "Collections - Contains number" description: "Determine if a collection contains a specific number" provider: apptigent method: POST path: "/CollectionContainsNumber" encoding: json input: { type: "object" required: ["input", "match"] properties: { input: { type: "array" description: "Collection of strings to search" items: { type: "number" } } match: { type: "number" description: "Number to match" } type: { type: "string" description: "Type of number - integer or decimal" enum: ["Integer", "Decimal"] } } } output: { type: "object" properties: { item: { type: "number" description: "First Value" } items: { type: "array" description: "All Values" items: { type: "number" } } status: { type: "boolean" description: "Success" } } } }