This json file has nested "dbg_info","status","start_element","num_elements" etc as object.I want to recursively go through json and recursivily remove objects with the name mentioned in this list.["dbg_info","status","start_element","num_elements"].In python.
My Json:
{
"status": "OK",
"start_element": 0,
"num_elements": 100,
}
]
}
How to remove nested json elements?.I am not able to set the logic for the same. Thankyou