README
¶
JSON-Patch
Provides the abiilty to modify and test a JSON according to a RFC6902 JSON patch and RFC7386 JSON Merge Patch.
Version: 1.0
API Usage
-
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)
-
Create a JSON Merge Patch document based on two json documents (a to b):
mergeDoc, err := jsonpatch.CreateMergePatch(a, b)
-
Bonus API: compare documents for structural equality
jsonpatch.Equal(doca, docb)
Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateMergePatch ¶
CreateMergePatch creates a merge patch as specified in http://tools.ietf.org/html/draft-ietf-appsawg-json-merge-patch-07
'a' is original, 'b' is the modified document. Both are to be given as json encoded content. The function will return a mergeable json document with differences from a to b.
An error will be returned if any of the two documents are invalid.
func Equal ¶
Equal indicates if 2 JSON documents have the same structural equality.