Hi All,
By mistake I added a wrong mapping as below
"person_info" : {
"_timestamp" : {
"enabled" : true,
"store" : true
},
"properties" : {
"entry_time" : {
"type" : "date",
"format" : "dateOptionalTime"
},
"address" : {
"properties" : {
"local_address" : {
"properties" : {
"street" : {
"type" : "string"
},
"city" : {
"type" : "string"
},
"zip" : {
"type" : "string"
}
}
"local_address" : {
"properties" : {
"street" : {
"type" : "string"
},
"city" : {
"type" : "string"
},
"zip" : {
"type" : "long"
}
}
}
}
}
}
}
}
where zip is string in one mapping and long in another. Is there any way to remove any one of the mapping?
Regards,