Source .json
JSON
Nested key/value data, the lingua franca of web APIs.
- Compression
- Lossless
- Transparency
- Not supported
- Keeps
- Nesting, arrays, numbers, booleans and nulls
- Gives up
- Comments and column ordering guarantees
Data converter
Turn JSON files into XML without installing anything. The target format on this page is already set to XML, so a single file or a whole folder is one press of Convert away.
JSON XML
Files travel over TLS and are deleted from the server as soon as the conversion finishes.
JSON is nested key/value data, the lingua franca of web APIs. XML is verbose, schema-validated markup still standard in enterprise and publishing.
Records are read out of the JSON with their structure intact and written as XML, so this is a real parse rather than a text substitution — quoting, escaping and character encoding are all handled for you. The XML you get back keeps attributes, namespaces and validation against a schema, and gives up brevity. The thing to check before you rely on the output is typing: dates, leading zeros and very large integers are where formats disagree.
How it goes3 steps
What each side of this conversion is good at, so you know what you are trading away.
Source .json
Nested key/value data, the lingua franca of web APIs.
Result .xml
Verbose, schema-validated markup still standard in enterprise and publishing.
Other routes in and out of these formats.