Open
Description
Found in elastic/elasticsearch-java#142
Index mapping dynamic templates provide more control on dynamic field mappings. Using them allows using the {dynamic_type}
property type that is missing in the API spec.
This requires a new DynamicTypeProperty
class with a type: '{dynamic_type}'
variant tag.
Dynamic properties can be of type object
, string
, long
, double
, boolean
, date
and binary
(see ES code). So DynamicTypeProperty
must aggregate the properties of all these types.