Possible Duplicate:
I have a nested data structure / JSON, how can I access a specific value?
How to parse this JSON in jQuery or JSON?
Example:
{
"Travel": {
"Transport_type": "Road",
"Options": {
"Destination": "Delhi",
"BusType": "Volvo",
"Time": "Night",
},
"Carrier": {
"Private": {
"Service_Provider": "Sharma",
"Features": {
"Seats": "PushBack",
"Indoor Pantry": "Available",
}
},
}
}
}
I'm not able to use the json.parse
function to get the results.