The following is the first two items in my json file
{
"ReferringUrl": "N",
"OpenAccess": "0",
"Properties": {
"ItmId": "1694738780"
}
}
{
"ReferringUrl": "L",
"OpenAccess": "1",
"Properties": {
"ItmId": "1347809133"
}
}
I want to count the number of items by each ItmId appeared in the json. For example, items that with "ItmId" 1694738780 appears 10 times and items with "ItmId" 1347809133 appears 14 times in my json file. Then return a json like this
{"ItemId": "1694738780",
"Count": 10
}
{"ItemId": "1347809133",
"Count": 14
}
I am using bash. And prefer do this totally by jq. But it's ok to use other method.
Thank you!!!
Here's a super-efficient solution -- in particular, no sorting is required. The following implementation requires a version of jq with
inputs
but it is easy to adapt the program to use earlier versions of jq. Please remember to use the -n command-line option if using the following:Here is a variation using reduce, setpath and getpath to do the aggregation and to_entries to do the final formatting which assumes you run jq as
where data.json contains your data and query.jq contains
Using jq command
Here's one solution (assuming the input is a stream of valid JSON objects) and that you invoke jq with the -s option:
A more memory-efficient approach would be to use
inputs
if your jq has it; but in that case, use -n instead of -s, and replace the first line above by: [inputs | {ItemId: .Properties.ItmId} ]