Skip to main content
Returns the values of an array or object as an indexed array. Use this when you have a set of values stored under named keys but the target system only wants the values themselves, as a plain numbered list. It throws away the keys and renumbers what is left from 0 upwards, keeping the values in their original order.

Fields

This mapper has no settings to configure. Point it at the list or object whose values you want and it does the rest.

Sample data

FieldValue
(no settings)
Input:
{
    "prices": { "small": 9.99, "medium": 14.99, "large": 19.99 }
}
Output:
{
    "prices": [9.99, 14.99, 19.99]
}