Skip to main content
Array: Extract field The “Array: Extract field” mapper gets the values from a single key of the provided array.

Fields

ColumnKey

The key to get the value from

IndexKey

The key in the provided array to use as the index for the returned array.

Sample Data

InputColumnKeyIndexKeyResult
[{“name”: “A”,“price”: 19 }, { “name”: “B”,“price”: 10 }]name[“A”, “B”]
[{“name”: “A”,“price”: 19 }, { “name”: “B”,“price”: 10 }]nameprice{ “10”: “B”,“19”: “A”}