lowercase.asciidoc 918 B

12345678910111213141516171819202122232425262728
  1. [[lowercase-processor]]
  2. === Lowercase processor
  3. ++++
  4. <titleabbrev>Lowercase</titleabbrev>
  5. ++++
  6. Converts a string to its lowercase equivalent. If the field is an array of strings, all members of the array will be converted.
  7. [[lowercase-options]]
  8. .Lowercase Options
  9. [options="header"]
  10. |======
  11. | Name | Required | Default | Description
  12. | `field` | yes | - | The field to make lowercase
  13. | `target_field` | no | `field` | The field to assign the converted value to, by default `field` is updated in-place
  14. | `ignore_missing` | no | `false` | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
  15. include::common-options.asciidoc[]
  16. |======
  17. [source,js]
  18. --------------------------------------------------
  19. {
  20. "lowercase": {
  21. "field": "foo"
  22. }
  23. }
  24. --------------------------------------------------
  25. // NOTCONSOLE