I\'ve got an arbitrary structure with many levels, etc. I need to select all objects that contain a key named updateDate. How do I do that with jq? I came up with o
updateDate
Not tested: how about jq 'recurse(.[]?) | objects | has("updateDate")' ?
jq 'recurse(.[]?) | objects | has("updateDate")'