Using standard json library i have to fetch the value for key in the json string similar to this one, Also the key position is not fixed in the json string and it may be under some multiple json object, so how would i navigate to the entire json string and look for key to fetch corresponding value
{
"app": {
"GardenCategory": {
"label": {
"Flower": "Rose",
"Fruits": "Apple"
}
},
"Flowers": {
"Red_Flowers": "Rose",
"Thorn_Flowers": "Marigold",
"beautiful_flower": "sunflower",
},
"FruitState": {
"label": {
"Sweet Fruit": "Mango",
"Healthy fruits": "Orange",
"Liquid fruits": "Water-Melon",
}
}
}