action apptigent_sort_collection { label: "Collections - Sort collection" description: "Sort a collection of strings" provider: apptigent method: POST path: "/SortCollection" encoding: json input: { type: "object" required: ["input", "order"] properties: { input: { type: "array" description: "Collection of strings to sort" items: { type: "string" } } order: { type: "string" description: "Sort order" enum: ["Ascending", "Descending"] } } } output: { type: "object" properties: { result: { type: "array" description: "Modified collection result" items: { type: "string" } } } } }