I have created below index. I want to insert nested data to "companyaddress" recursively using RestHighLevelClient in Spring Boot. Means I want to insert data into companyaddress for every request time.
"mappings" : {
"properties" : {
"company_id" : {
"type" : "long"
},
"company_name" : {
"type" : "text",
"analyzer" : "likely_analyzer",
"search_analyzer" : "standard"
},
"companyaddress" : {
"type" : "nested",
"properties" : {
"address3" : {
"type" : "text",
"analyzer" : "likely_analyzer",
"search_analyzer" : "standard"
},
"main_phone1" : {
"type" : "long"
}
}
}
}
}