Json – JQ – flatten out / unroll double-nested objects with different key names
Having the following json structure: { "outerDescription1": { "innerDescription1": { "otherProperties": 1, "items": [ "arrayItem1", "arrayItem2" ] } }, "outerDescription2": { "innerDescription2": { "otherProperties": 2, "items": [ "arrayItem3", "arrayItem4" ] } } } I would like to get the following…