{
"address_id":1
"residential_address": {
"current": "USA",
"previous": "India"
},
"office_address": {
"current": "Okemos",
"previous": "Bangalore"
},
"id": 1
}
In the above mentioned data structure I have Map of address which internally holds map of current and previous address. What is the efficient way to index this data structure in app-search??
can I use dictionary to efficiently save the structure(if so can anyone tell me how)?