Changes

no edit summary
Line 3: Line 3:  
[https://en.wikipedia.org/wiki/JSON JSON] data is a widely used format by many Web APIs to provide data in a structured/nested format. A typical example of such data is below:
 
[https://en.wikipedia.org/wiki/JSON JSON] data is a widely used format by many Web APIs to provide data in a structured/nested format. A typical example of such data is below:
   −
{
+
'''{
 
     "firstName": "Rajesh",
 
     "firstName": "Rajesh",
 
     "lastName": "Kumar",
 
     "lastName": "Kumar",
Line 17: Line 17:  
         { "type": "home", "number": "7383627627" }
 
         { "type": "home", "number": "7383627627" }
 
     ]
 
     ]
}
+
}'''
    
This data can be obtained from the following url: https://tools.learningcontainer.com/sample-json.json
 
This data can be obtained from the following url: https://tools.learningcontainer.com/sample-json.json