I have following JSON
structure :
"123456789": {
"id": "Some_Id",
"code": "Some_Code",
"name": "Some_Name",
},
"123456789": {
"id": "Some_Id",
"code": "Some_Code",
"name": "Some_Name",
},,
"123456789": {
"id": "Some_Id",
"code": "Some_Code",
"name": "Some_Name",
}
}
Now if I have to find out name for every object inside JSON
, how can I iterate?