action apptigent_collection_to_json { label: "Collections - Collection to JSON" description: "Convert a collection to a named JSON object" provider: apptigent method: POST path: "/CollectionToJSON" encoding: json input: { type: "object" required: ["input", "name"] properties: { input: { type: "array" description: "Collection containing strings to convert" items: { type: "string" } } name: { type: "string" description: "Collection name" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }