Provides the abiilty to modify and test a JSON according to a RFC6902 JSON patch.
Version: 1.0
-
Given a
[]byte
, obtain a Patch objectobj, err := jsonpatch.DecodePatch(patch)
-
Apply the patch and get a new document back
out, err := obj.Apply(doc)
-
Bonus API: compare documents for structural equality
jsonpatch.Equal(doca, docb)