action apptigent_count_collection { label: "Collections - Count collection" description: "Count a collection of items" provider: apptigent method: POST path: "/CountCollection" encoding: json input: { type: "object" required: ["input"] properties: { input: { type: "array" description: "Collection of items to count" items: { type: "string" } } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }