weichch / system-text-json-jsondiffpatch

High-performance, low-allocating JSON object diff and patch extension for System.Text.Json. Support generating patch document in RFC 6902 JSON Patch format.
MIT License
104 stars 13 forks source link

Complex object diffing and patching #51

Open adhip94 opened 2 months ago

adhip94 commented 2 months ago

I have a json which has 2 layers of objects such as

{
  "test": {
      "key1": "value1",
      "key2": "value2",
   }
}

Will this library support diffing and patching with such kind of structure?