"Dilute" JSON as a template?
I have a JSON with over 18,000 lines and would like to thin out the arrays so that in the end each JSON attribute is represented only once, so that I have this JSON in "simple" form, so that the creation of graphs is not so cumbersome and the creator does not have to feel through the thousands of lines first.
Is there a generator, code snippet or something similar that can make this easier for me?
Are you sure your JSON looks like that? Is that supposed to be an array of objects? An object which contains several times the same property “Mattri” is not possible.
In your case, when converting into an object, only in each step of the Property Mattri would the currently object array [ {“Attribute”: “Value1”}, {“Attribute”: “Value2”}] assigned. see Powershelldemo:
As a result, a shoe would be:
…that all duplicates will fly out.
You just want to destroy the following duplicates
instead of my static JsonStrings it is cheap to import from/in a file: https://devblogs.microsoft.com/scripting/powertip-convert-json-file-to-powershell-object/
Otherwise, it is possible to play out the power of Powershell’s string operations and to disassemble any Json as a string to compare and resume the parts.
but no longer today…😴
Yes, I had tipped off when I entered it. x)
Basically, I would like to have my JSON like a template that there are virtually as little data as possible, as many as necessary. Maybe we’d be at a few hundred lines, but not 18,000. 😀
to the quick way through brutal stringacrobatics
…but this is less flexible than to act with objects and convert them
The Delimiter alone needs some RegEX art (there is already enough an inconspicuous space and the thing flies around your ears)
The usual all-purpose weapon for JSON is jq.
I can’t give you an ad hoc command for exactly your task, but a creative Google search could bring you (“jq remove duplicate object members” or the like)
Doesn’t look bad. I’ll definitely look at it!
I like to use ChatGPT for this.
For such annoying tasks, which may last unnecessarily long as tables, rewrite values or customize Jsons, this is really good.
Of course, in the end, you have to check if everything is as you want.
But generally it works pretty well.
Unfortunately, I come far beyond the limit with the over 18,000 lines. ^^
Hoppla, the part I’ve read over smoothly and rather paid attention to the example in demand. ^^
It’s supposed to happen. :
But I was so surprised that I couldn’t find anything online.