Smart Compare json files

19 views Asked by At

Say I have 2 json files.

#1

{
"ID": 1,
"Value": "A"
}
{
"ID": 2,
"Value": "B",
}

#2

{
"ID": 2,
"Value": "B"
},
{
"ID": 1,
"Value": "A",
}

I would like a compare that says these 2 files are the same. Just because they are not in the same order, they are not different. Are there any tools that will tell me they are the same?

thanks

I have tried online tools such as https://www.jsondiff.com/

But they just do a not smart compare.

0

There are 0 answers