Json – JOLT – Merge objects in an array based on a common key-value
I have this input JSON: { "people": [ { "foo_name": "jack", "id": 123, "some_attr1": "val1" }, { "foo_name": "bob", "id": 456, "some_other_attr1": "val2" }, { "foo_name": "jack", "cool_attr1": "val3", "not_cool_attr1": "val4", "some_attr1": "vvaaalllllll" } ] } The desired output is:…