I have a json file I need to extract some values from. I've had a look through the docs and a few other examples but still have no idea how to do it (I'm completely new to dealing with jsons). Here is a bit from the json file
{
"response": {
"success": 1,
"current_time": 1436797884,
"items": {
"A Color Similar to Slate": {
"last_updated": 1436796007,
"quantity": 51,
"value": 101
},
"A Deep Commitment to Purple": {
"last_updated": 1436796007,
"quantity": 212,
"value": 101
},
"A Distinctive Lack of Hue": {
"last_updated": 1436796007,
"quantity": 141,
"value": 500
}
}
}
}
I need to get each key out eg "A Color Similar to Slate" and I need to get the items quantity and value out aswell for each key.