Paste your XML, and the tool converts it into JSON, preserving the data hierarchy.
XML elements become JSON objects. Repeated elements become arrays. Text content and attributes are preserved in the structure.
Attributes are typically converted to properties with an @ prefix (like @id) to distinguish them from child elements.
Yes, the converter handles nested elements, mixed content, and attributes, but very complex XML may need specialized processing.