# stackstorm-xml **Repository Path**: siem-soar-package/stackstorm-xml ## Basic Information - **Project Name**: stackstorm-xml - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-11-12 - **Last Updated**: 2021-11-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # XML Integration pack Pack containing various actions for working with XML documents / data. ## Actions ### parse Parse the provided XML string and return a JSON object (dictionary). #### Example Input: ```xml Tove Jani Reminder Don't forget me this weekend! ``` Output (result): ```json { "note": { "to": "Tove", "from": "Jani", "heading": "Reminder", "body": "Don't forget me this weekend" } } ```