Unable to form JQ as per requirement
I am using JQ Play.Here is my JSON Data -{"body":{"primarykey": ["book_id","edition_id"],"members": [ {"name": "book_id","type": "NUMBER" }, {"name": "edition_id","type": "NUMBER" }, {"name":...
View ArticleHow to copy from object with out using the table index
The input is{"zoo": [ { "x": { "guesst": "" } }, { "y": { "guesst": "zebra" } } ]}And i need the output like{"zoo": [ { "x": { "guesst": "zebra" } }, { "y": { "guesst": "zebra" } } ]}I did:jq...
View ArticleHow to copy field from nested object inside array
My json input is:{"zoo": [ { "room": { "name": "x" }, "gpu": { "id": "fish", "sum": 0 } }, { "room": { "name": "y" }, "gpu": { "id": "zebra", "sum": 797 } } ]}I need to copy from zebra's sum into...
View ArticleSyntax for extracting data from JSON [closed]
I need to extract some info from JSON. My JSON looks like this:{"pipeline1": {"description": "Desc 1","last_modified": "2023-11-14T09:27:50.235Z","pipeline_metadata": {"version": 1,"type":...
View Articlejson jq add an object to an existing array at the bottom of JSON
I'm trying to get some infos from lscpu and sensors in bash with jq:jq -s 'add' \<(LC_NUMERIC=C sensors -j coretemp-isa-0000) \<(LC_NUMERIC=C lscpu -J -e=cpu,mhz)here's what I...
View ArticleCan I use JQ to narrow the json object in an array?
Input:{"data": [ {"a": "a1","b": "b1","c": "1" }, {"a": "a2","b": "b2","c": "2" } ]}Expected output:{"a": "a1", "b": "b1"}{"a": "a2", "b": "b2"}The closest approach I can get so far...
View ArticleError while installing JQ of specific version
I am trying to install JQ using below command but ends up in error when I don't provide the version the installation works fine. I am using Ubuntu 22.04.4 LTS version.sudo apt-get install jq=1.6Reading...
View ArticleIn jq, how to select objects where an array contains at least one value...
I have input like this:{ "prop": ["apple", "banana"] }{ "prop": ["kiwi", "banana"] }{ "prop": ["cherry", "orange"] }How do I print objects where prop contains at least one of kiwi and orange?(The list...
View Articlejq - select an 1 attribute when matching another
Input JSON :{"data": {"zone": [ {"record": [ {"Line": 1,"raw": "; cPanel first:11.25.0-CURRENT_46156 (update_time):1708598274 Cpanel::ZoneFile::VERSION:1.3 hostname:server2.something.com...
View Articlehow to group_by with tables' key name
My input json file:{ "london": [ "x", 0 ] }{ "london": [ "y", 97 ] }{ "paris": [ "x", 15 ] }{ "paris": [ "y", 8 ] }I try to group by key and make the output:{ "london": ["x", 0], ["y", 97] },{ "paris":...
View ArticleAdding into each existing object within JSON array new values from...
I have json like this:[ {"id": "1" }, {"id": "2" }, {"id": "3" } ]I call some "sizes.sh" that give me result:102030How can I update my original json with these results, so it will look:[ {"id":...
View ArticleEditing json file in line with jq
I have a json file like this:{"arrays": [ {"name": "foo","properties": [ {"type": "app","url": "https://example.com","checksum": "d6fd580fe890b826250aa5d5a88bcdb28839cff4d447ba51536cda4ceae89c4e" } ] }...
View ArticleConcatenate strings in jq
My input looks like:{"font1": {"charInfo": [ {"char": "a","other_stuff": 12 }, {"char": "b","other_stuff": 63 } ] },"font2": {"charInfo": [ {"char": "s","other_stuff": 1 }, {"char": "x","other_stuff":...
View ArticleHow to conditionally select value with JQ
I am trying to select 1 price if it exists, otherwise I want to select a "default" price which always exists. My JQ works if the RMP price doesn't exist, I just get the 1 value back. But as you can...
View ArticleHow to instal JQ without homebrew?
I use Mac , how can I install JQ without home brew ? I installed 'jq-osx-amd64 'and executed this comments :chmod +x ~/Downloads/*jq-osx-amd64* cp ~/Downloads/jq-osx-amd64 /usr/local/binAfter that when...
View ArticleGrab top level json element with jq
I can grab sub elements without an issue, but if i try top level element it fails, i was wondering if anyone knew the best way to grab the value for the ID elementThis works to grab sub...
View ArticleJQ / Bash How to handle whitespace in JSON response?
I'm making calls to Azure DevOps API, and parsing the response with jq in a bash script. The JSON response contains whitespace in the form of new lines for some reason, and jq cannot handle and parse...
View ArticleJQ issues with comments on Json file
I'm using JQ https://stedolan.github.io/jq/ to work in bash with my json and when I read the json is throwing me an error parse error: Invalid numeric literal at line 2, column 5=Since my json has some...
View ArticleHow to use jq to return length of filtered array?
My json file is called my_locations.json and contains an array called locations. I want to filter this array by all objects that have keys location.is_shop and location.has_parking_space. I then want...
View Articlejq filter objects based on value of a property (not key)
I have a structure like this:[ { "name":"Genus", "value": "canis" } { "name":"env.VAR1", "value": "dogsdrool" { "name":"env.VAR2", "value": "catsrule" }]I want to select the objects where the value of...
View Article