Skip to main content
Converts every letter in a text value to lower case. Use this to normalise values that should always be stored the same way no matter how they arrive, such as email addresses, product codes, or tags, so that “ABC-123” and “abc-123” are treated as the same value later on. Digits, punctuation, and symbols are left untouched; only letters change.

Fields

This mapper has no settings. It always converts the whole value to lower case.

Sample data

FieldValue
(none)converts the value to lower case
Input:
{ "sku": "ABC-123-XL" }
Output:
{ "sku": "abc-123-xl" }