Skip to content

Instantly share code, notes, and snippets.

@dlwhitehurst
Created May 1, 2019 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlwhitehurst/25139a295ba8010d21cc26a5c4c2d91a to your computer and use it in GitHub Desktop.
Save dlwhitehurst/25139a295ba8010d21cc26a5c4c2d91a to your computer and use it in GitHub Desktop.
%dw 1.0
%output application/json
%var idToFieldName = {
"5324": "firstName",
"5325": "lastName",
...
}
---
payload.elements[0].fieldValues reduce (field, entity={}) ->
entity ++ { (idToFieldName[field.id]): field.value }
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment