I have two RapidJSON documents. One I created at runtime and other one is read from disk.
I want to compare if these two documents are similar or not. What is the best way to compare RapidJSON documents?
My JSON looks like this
{
"SimpleCompany:Manager":
{
"read":true,
"update":true,
"delete":true,
"insert":true
},
"SimpleCompany:Manager":
{
"read":true,
"update":true,
"delete":true,
"insert":true
},
}