Walk and transform all strings jq

Recursively lowercase all string values in a JSON document

jq 'walk(if type == "string" then ascii_downcase else . end)' data.json
#jq