Home >>Json Tutorial >JSON Introduction
JSON example defines Students object with an array of three students:
{"students":[ {"FirstName":"ravi", "Lastname":"srivastva"}, {"FirstName":"Anju", "LastName":"Anju"}, {"FirstName":"Sanjeev", "LastName":"rai"} ]}
The following XML example also defines Students object with 3 students records:
ravi srivastva Anju Anju Sanjeev rai
Inside curly braces write json objects like:
{"Name": "ravi", "Profile":"Student"}
Json array must be written inside square braces. like:
"student": [ {"Name":"Ravi", "Course":"PHP"}, {"Name":"Abhi", "Course":"JAVA"}, {"Name":"Rexx","Course":"PHP"} ]