Skip to main content
Transforms the values in your data while leaving their keys in place. You point at the values you want to change with an accessor, then choose one or more conversions to apply to each of them. Use this to clean up or reshape values without moving them, for example translating a status code into a readable label, trimming whitespace, or changing text to uppercase. Each matched value is run through the conversions in turn, and the result is written back where it came from; values the conversions leave unchanged are kept as they were.

Fields

Sample data

FieldValue
AccessorPattern accessor matching status
MappersMap value using dictionary: paid to Paid in full, open to Awaiting payment
Input:
{
    "sku": "A1",
    "status": "paid",
    "total": 49.95
}
Output:
{
    "sku": "A1",
    "status": "Paid in full",
    "total": 49.95
}