[[dynamic-field-mapping]] === Dynamic field mapping By default, when a previously unseen field is found in a document, Elasticsearch will add the new field to the type mapping. This behaviour can be disabled, both at the document and at the <> level, by setting the <> parameter to `false` (to ignore new fields) or to `strict` (to throw an exception if an unknown field is encountered). Assuming `dynamic` field mapping is enabled, some simple rules are used to determine which data type the field should have: [horizontal] *JSON data type*:: *Elasticsearch data type* `null`:: No field is added. `true` or `false`:: <> field floating{nbsp}point{nbsp}number:: <> field integer:: <> field object:: <> field array:: Depends on the first non-`null` value in the array. string:: Either a <> field (if the value passes <>), a <> or <> field (if the value passes <>) or a <> field, with a <> sub-field. These are the only <> that are dynamically detected. All other data types must be mapped explicitly. Besides the options listed below, dynamic field mapping rules can be further customised with <>. [[date-detection]] ==== Date detection If `date_detection` is enabled (default), then new string fields are checked to see whether their contents match any of the date patterns specified in `dynamic_date_formats`. If a match is found, a new <> field is added with the corresponding format. The default value for `dynamic_date_formats` is: [ <>,`"yyyy/MM/dd HH:mm:ss Z||yyyy/MM/dd Z"`] For example: [source,console] -------------------------------------------------- PUT my-index-000001/_doc/1 { "create_date": "2015/09/02" } GET my-index-000001/_mapping <1> -------------------------------------------------- <1> The `create_date` field has been added as a <> field with the <>: + `"yyyy/MM/dd HH:mm:ss Z||yyyy/MM/dd Z"`. ===== Disabling date detection Dynamic date detection can be disabled by setting `date_detection` to `false`: [source,console] -------------------------------------------------- PUT my-index-000001 { "mappings": { "date_detection": false } } PUT my-index-000001/_doc/1 <1> { "create": "2015/09/02" } -------------------------------------------------- <1> The `create_date` field has been added as a <> field. ===== Customising detected date formats Alternatively, the `dynamic_date_formats` can be customised to support your own <>: [source,console] -------------------------------------------------- PUT my-index-000001 { "mappings": { "dynamic_date_formats": ["MM/dd/yyyy"] } } PUT my-index-000001/_doc/1 { "create_date": "09/25/2015" } -------------------------------------------------- [[numeric-detection]] ==== Numeric detection While JSON has support for native floating point and integer data types, some applications or languages may sometimes render numbers as strings. Usually the correct solution is to map these fields explicitly, but numeric detection (which is disabled by default) can be enabled to do this automatically: [source,console] -------------------------------------------------- PUT my-index-000001 { "mappings": { "numeric_detection": true } } PUT my-index-000001/_doc/1 { "my_float": "1.0", <1> "my_integer": "1" <2> } -------------------------------------------------- <1> The `my_float` field is added as a <> field. <2> The `my_integer` field is added as a <> field.