JsonPathComparer
public JsonPathComparer()
There are multiple ways to represent a JSON path. This method normalizes the JSON path to a canonical form that can be used for comparison.
As an example $.x is the same as $['x'] and also the same as $["x"]. This method will convert all of these to $.x.
In the event that the property name contains a dot that single property will use ['x.y'] format to represent the property name with a dot in it.