Skip to main content
Accesses values in a list where each item has a configurable key field and value field. Use this when your data holds a list of items that each carry their own name and value, such as a product’s custom attributes or a set of option lines, and you want to turn that list into a simple lookup map where each name points straight to its value.

Fields

Sample data

FieldValue
Keycode
Valuevalue
Rootattributes
Input:
{
    "attributes": [
        { "code": "color", "value": "Navy" },
        { "code": "material", "value": "Wool" },
        { "code": "size", "value": "M" }
    ]
}
Output:
{
    "color": "Navy",
    "material": "Wool",
    "size": "M"
}