elasticsearch/docs/reference/mapping
Nik Everett 02138dc70a
Docs: synthetic _source can remove some arrays (#91632)
Synthetic _source's array flattening activities can remove some arrays
entirely. Specifically:
```
{
  "foo": [
    {
      "bar": 1
    },
    {
      "baz": 2
    }
  ]
}
```

Turns into:
```
{
  "foo": {
    "bar": 1,
    "baz": 2
  }
}
```

See, no more array! It's because the values are flattend to the leaf
fields and didn't have multiple values. This is implied by the docs we
had, but sure wasn't obvious. So now it's documented specifically.
2022-11-16 15:19:42 -05:00
..
dynamic [DOCS] Warn only one date format is added to the field date formats when using dynamic_date_formats (#88915) 2022-08-11 10:43:53 +02:00
fields Docs: synthetic _source can remove some arrays (#91632) 2022-11-16 15:19:42 -05:00
params Added reference to terms_set query in regular terms query documentation (#91204) 2022-11-09 16:00:52 +01:00
types Revert "Update tech preview notice for synthetic source (#91474)" (#91589) 2022-11-15 09:33:40 -05:00
dynamic-mapping.asciidoc
explicit-mapping.asciidoc
fields.asciidoc
mapping-settings-limit.asciidoc Include runtime fields in total fields count (#89251) 2022-08-15 09:43:12 -04:00
params.asciidoc Add support for dots in field names for metrics usecases (#86166) 2022-05-17 16:34:39 +02:00
removal_of_types.asciidoc
runtime.asciidoc [DOCS] Clarify that lookup runtime sub-fields can't be used in queries and aggs (#91410) 2022-11-08 19:05:31 +01:00
types.asciidoc [DOCS] Move completion type asciidoc (#89086) 2022-08-04 10:02:28 +02:00