JSON: moving item's key/name into attribute and convert it to array with jq
here is original json example:{"item1": {"foo1": 1,"foo2": 2},"item2": {"foo1": 11,"foo2": 22 }}how can i convert it into json array with new attribute using jq:[ {"name": "item1","foo1": 1,"foo2": 2...
View ArticleTransforming a JSON input subarray into a string sequential list output
Here is my input:{"alias-name": "soufriere","member-entry": {"alias-entry-name": ["21:00:f4:e9:d4:50:56:7e","21:00:f4:e9:d4:50:56:7f" ] }}{"alias-name": "stromboli","member-entry": {"alias-entry-name":...
View ArticleHow do I replace a JSON string with its parsed equivalent in place with jq?
I have a JSON array with a bunch of objects, all the same keys, but some of the keys contain serialized JSON instead of actual JSON. Something like this.[ {"a": 1,"b": "{\"c\":2}" },]and I'd like to...
View ArticleI want to convert a text file into one JSON string using jq
I have a text file, I want to make it into a single JSON string with quotes and \n, ideally from the command line. I don't want multiple strings, or dictionaries.
View Articleescaping characters when passing JSON to aws secretsmanager
I have tried to write a script that updates AWS secrets. Yes, the update-secret command already does this, but that will overwrite existing secrets instead of merging them w/ the new content.For...
View ArticleHow to include a object when it doesn't include a field from a select() call
I want to list a couple fields from a JSON structure, including an optional one, that is potentially in an array with other fields I don't want to display. I've been using select() to get the one value...
View Articlejq to output results as JSON
jq is suppose to process/filter JSON inputs and producing the filter's results as JSONHowever, I found that after the jq process/filter, output result is no longer in JSON format any more. E.g.,...
View ArticleHow to merge unique values for a child array when merging objects
I want to merge the .environments.default and .environments.dev objects together, so that dev values override any default values and default values fill in anything not defined in the dev object. If I...
View ArticleRun jq in fzf preview with arguments
I have some json data and I want to interactively query it with fzf and jq, by sending the data through stdin and typing the jq query into the fzf query box. My attempt so far is showing one result in...
View ArticleHow to form correct JQ Expression to get exact output data from JSON file?
I am using JQ Play.Here is my JSON Data -{"body": {"name": "DATATYPES","primarykey": ["db_number" ],"members": [ {"name": "db_number","type": "NUMBER" }, {"name": "db_date","type": "DATE" }, {"name":...
View ArticleComplex sorting and output by values in jq
I'm trying to get a human-readable representation of thread siblings.I have following output: output.undercloud) [stack@undercloud ~]$ os baremetal introspection data save compute0 |jq...
View ArticleRun a command for each item in jq array
This is how my input file looks like:[ {"ConfigType": "ABC","Prop1": 3,"Prop2": 30 }, {"ConfigType": "XYZ","Prop3": "Hello","Prop4": "World","Prop5": "Application" }]I need to prepare insert statement...
View ArticleUnable to form correct JQ to get proper output from JSON data
I am using JQ Play.Here is my JSON Data -{"body": {"name": "DATATYPES","primarykey": ["db_number"],"members": [ {"name": "db_number","type": "NUMBER" }, {"name": "db_date","type": "DATE" }, {"name":...
View ArticleParse error when text is split on multi lines: "control characters from...
I'm getting a "parse error" when I split a text line on multiple lines and show the JSON file on screen with the command jq . words.json.The JSON file with the text value on a single line looks like...
View ArticleJSON payload in shell script using CURL [duplicate]
In my shell script, I'm reading a JSON array from a file. Then I'm looping over the array and send a POST request with each item from the array as json payload;data.json[ {"orderId": "abc111","amount":...
View ArticleCheck for duplicate keys in a json file
I have a json file with the following contents:{"id1": {"key": "value" },"id2": {"key": "value" }}I want to check that each top level key ie. id1, id2 is present only once in a file and if not produce...
View Articlejq - Cannot index string with string "key"
I have a JSON file, which contains similar records like following: {"timeZone": "+0200","deviceCode": 202590286,"type": 8,"version": 1622385523034,"recordId": "TkgTDAAAAAAIAAAArF62vXkBAAA=","dataId":...
View ArticleRedirect tee output to the variable instead of file
I'm trying to do the loop where output of each curl command which is returning json data is allocated to the variable/array. I'm using tee command to get my wanted value plus next token for next json...
View ArticleIs it possible to convert from JSON or YAML to XML using jq/yq/xq
I have managed to successfully convert an XML file to a YAML file using xqIs it possible using the following tools jq, yq, xq, to convert from either YAML or JSON back to an XML format ?Here is a...
View Articlejq curl contain output of two curl
I use curl to have this answer :curl -sX https://xx.com | jq -r '.res.out[].server // empty | {host: .host, description: .description}'{ "host": "server1","description": "server 1"}{ "host":...
View Article