action apptigent_csv_to_json { label: "Data - CSV to JSON" description: "Convert a CSV string to a JSON array" provider: apptigent method: POST path: "/CSVtoJSON" encoding: json input: { type: "object" required: ["header", "input"] properties: { header: { type: "boolean" description: "Include header row" } input: { type: "string" description: "CSV string" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }