If you want to take a look at some differences between the two formats, you can take a look at this article. Here, I am going to focus solely on the basics JSON.
Here is an example. Let’s suppose I have a data set, describing various computer parts, and I need to provide this data to an application. If I am going to think very abstract, there is a tree like structure, representing the base element (Computer Parts) and multiple child branches (for example: mainboard, keyboard, CPU, fan etc.)
By using the JSON data format, I can show the same tree-like structure just like this:
{ “parts” : {
“part” : [
{ “name” : “Mainboard” },{ “name” : “Keyboard” },{ “name” : “CPU” },{ “name” : “FAN” }
] }}
Read more: DZone