I need help with extracting specific values from an array. The array looks like this:
{
"123456": {
"name": "tom",
"projects": {
"987654": {
"cli": "abcd",
"org": "123456",
"cli_e": "abcd",
"pro": "abcd",
"status": "6"
}
}
}
},
{
"654321": {
"name": "jerry",
"projects": {
"123": {
"cli": "xyz",
"org": "000",
"cli_e": "xyz",
"pro": "xyz",
"status": "3"
}
}
}
}
My goal is to extract the following values:
{
"cli": "abcd",
"org": "123456",
"cli_e": "abcd",
"pro": "abcd",
"status": "6"
},
{
"cli": "xyz",
"org": "000",
"cli_e": "xyz",
"pro": "xyz",
"status": "3"
}
Is there a way to achieve this extraction?