JQ to filter JSON by value The article explains how to use the `jq` command-line tool to filter JSON data by a specific value. It provides the syntax `cat | jq -c '.[] | select( . | contains(""))'` and notes that numeric values should not be enclosed in quotes within the `contains()` function. An example filters for records where the `_id` key equals the numeric value 611. Syntax: cat