Hello, many thanks for your input. The challenge I am facing is that I can’t directly reference the target path. I will have input pairs of fields that I will need to merge and all they have in common will be the starting part of the key. Let me provide another example:
INPUT
{ "name": "val1", "name_b": "val2", "surname": "val3", "surname_b": "val4" }
OUTPUT
{ "name": "val1_val2", "surname": "val3_val4"}
I am flexible to generate a new key or updating an existing one, but I can’t refer to them in the target path because in every execution the input fields will be different.
Thanks again