JQ
From DWIKI
JSON processor
Links
Related tools
- gron
- yq
Examples
get values of just one field
jq '.[].fieldname'
or when hyphen in name
jq '.[]."field-name"'
or just
jq '.fieldname'
FAQ
Error messages
parse error: Invalid numeric literal at line 1
In case of python outpout try
print(json.dumps(yourjson))
