I have a JSON structure like below:
"items": {
"Part1": {
"src": "xxxx"
},
"Part2": {
"src": "yyyy"
},
//...
}
And I want to fetch all the src strings into an array regardless which part it belongs to. So I am trying to navigate through the different parts. How should I achieve this.