3
I have the JSON file below:
{
"uid1":{
"start_time":"20140815",
"name":"name 1"
},
"uid2":{
"start_time":"20141229",
"name":"name 2"
},
"uid3":{
"start_time":"20140809",
"name":"name 3"
},
"uid4":{
"start_time":"20140830",
"name":"name 4"
},
"uid5":{
"start_time":"20140920",
"name":"name 5"
}
}
I need not only return the values within each "uid" but also the "name" of "uid" where the result is something like this:
uid1,20140815,name 1
perfect blemish,
– LeandroLuk