Last active
July 25, 2024 00:55
-
-
Save joar/776b7d176196592ed5d8 to your computer and use it in GitHub Desktop.
Add a field to an object with JQ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add field | |
echo '{"hello": "world"}' | jq --arg foo bar '. + {foo: $foo}' | |
# { | |
# "hello": "world", | |
# "foo": "bar" | |
# } | |
# Override field value | |
echo '{"hello": "world"}' | jq --arg foo bar '. + {hello: $foo}' | |
{ | |
"hello": "bar" | |
} | |
# { | |
# "hello": "bar" | |
# } | |
# Concat and add | |
echo '{"hello": "world"}' | jq --arg foo bar '. + {foo: ("not" + $foo)}' | |
# { | |
# "hello": "world", | |
# "foo": "notbar" | |
# } |
Example for adding an element to an array:
$ echo '[ {"data1":"A"}, {"data2":"B"} ]' | jq --arg val True '.[] += {uppercase: $val}'
[
{
"data1": "A",
"uppercase": "True"
},
{
"data2": "B",
"uppercase": "True"
}
]
Hi,
I have this input
{
"a":{"fieldA":2,"fieldB":"foo"},
"b":{"fieldA":2,"fieldB":"foo"}
}
And I would like for each key, to add its value inside the related json object
{
"a":{"fieldA":2,"fieldB":"foo","key":"a"},
"b":{"fieldA":2,"fieldB":"foo","key":"b"}
}
If I run this
<input.json jq '[.|keys[] as $key | .[] + {key: $key}]'
I obtain something similar, but I have the cartesian product
[
{
"fieldA": 2,
"fieldB": "foo",
"key": "a"
},
{
"fieldA": 2,
"fieldB": "foo",
"key": "a"
},
{
"fieldA": 2,
"fieldB": "foo",
"key": "b"
},
{
"fieldA": 2,
"fieldB": "foo",
"key": "b"
}
]
How to avoid it?
Thank you
@aborruso This seems to work:
jq 'to_entries | map( { (.key) : (.value + { key: .key }) }) | add'
thank you @MaxNanasy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you are only adding or modifying a single value, there is no need to merge JSON. Same output as above: