I recevied the search result. ```"order.appointmen...
# community-help
a
I recevied the search result.
Copy code
"order.appointment_address.city": "urham",
"order.appointment_address.state_abbreviation": "NC",
"order.appointment_address.state_name": "North Carolina",
I want to parse it like this
Copy code
{
  "order: {
     appointment_address: {
       "city": "urham",
       "state_abbreviation": "NC",
       "state_name": "North Carolina"
     }
  } 
}
Is there any effective way to parse it?