Nest and elastic search- update mapping for nested object?
问题 I am trying to add a new property to an existing nested document. My document looks like: "mappings": { "test": { "_routing": { "required": true, "path": "tId" }, "properties": { "series": { "type": "nested", "properties": { "iType": { "type": "string", "index": "not_analyzed", "doc_values": true }, "isValid": { "type": "boolean" }, }, }, } } The property i want to insert to nested document "series" is "iType". How can i use the NEST put mapping API to update the existing mapping? Any help