action apptigent_xml_to_json { label: "Data - XML to JSON" description: "Convert an XML string to a JSON object" provider: apptigent method: POST path: "/XMLtoJSON" encoding: json input: { type: "object" required: ["input"] properties: { input: { type: "string" description: "XML string" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }