I have the JSON file with that structure:
[ {"id": "6a6176c1-b879-8f66-6ccb-2532ec151589","name": "Name","data": {"payload": [ {"initiator": "Manager","action": "update","userId": "user","createdAt": "2023-11-29T08:46:30.202778Z","message": "<bulky message 1>" }, {"initiator": "clusterManager","action": "update","userId": "user","createdAt": "2023-11-29T08:46:30.202778Z","message": "<bulky message 2>" } ] } }]
I use the jq
command to parse that JSON.I could obtain the createdAt
field to put it into an array.
CHANGELOG_DATES=($(jq '.[].data.payload[].createdAt' /tmp/changelog.json))echo ${CHANGELOG_DATES[@]}"2023-11-29T08:46:30.202778Z" "2023-11-29T08:46:30.202778Z"
But I can't imagine how to select the message
field by the createdAt
field. If I select "2023-11-29T08:46:30.202778Z"
I'll get <bulky message 1>
.
But if try to use map I'll get an error
jq '.[].data.payload[].map(select(.type == "2023-11-29T08:46:30.202778Z")' /tmp/changelog.json.[].data.payload[].map(select(.type == "2023-11-29T08:46:30.202778Z"): Unknown hostifconfig: `--help' gives usage information.
So I can't understand how to find a field by a value name.