Search notes:

jq -r

jq's -r (or --raw-output) option removes the quotes from string in the result:
$ echo '{"txt": "Hello world", "num": 42}' | jq .txt
"Hello world"

$ echo '{"txt": "Hello world", "num": 42}' | jq .txt -r
Hello world

Index