skip to Main Content

Delete duplications in JSON file

I am trying to reedit json file to print only subgroups that has any attributes marked as "change": false. Json below: {"group":{ "subgroup1":{ "attributes":[ { "change":false, "name":"Name"}, { "change":false, "name":"SecondName"}, ], "id":1, "name":"MasterTest"}, "subgroup2":{ "attributes":[ { "change":true, "name":"Name" }, {…

VIEW QUESTION

Json – jq get values from complex object

I have an object that looks like this { "my_list": [ { "name": "an_image", "image": "an_image.com" }, { "name": "another_image", "image": "another_image.com" }, ...<more objects with image property> ], "foo": { "image": "foobar.io" }, "bar": { "image": "bar_image.io" }, ...<more…

VIEW QUESTION

having trouble converting csv to json using bash jq

I have one stream output stored in csv file, I need help converting csv to json: my csv looks like: cat output.csv "k","a1",1,"b1","c1","d1",1 "l","a2",2,"b2","c2","d2",2 "m","a3",3,"b3","c3","d3",3 "n","a4",4,"b4","c4","d4",4 "o","a5",5,"b5","c5","d5",5 Required output: note: I need key configuration to be added to json. {…

VIEW QUESTION

Combining multiple json arrays

I'm trying to combine two json files with arrays in common using jq (example below): file1.json { "veg": { "trolley": [ "potato" ], "total_items": [ 1 ] } } file2.json { "veg": { "trolley": [ "lettuce", "tomato" ], "total_items": […

VIEW QUESTION
Back To Top
Search