1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/deps/github.com/evanphx/json-patch
2018-02-13 16:06:36 +01:00
..
.travis.yml Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
LICENSE Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
merge.go Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
patch.go Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00
README.md Extending Spec object, moved vendor to deps for test support 2018-02-13 16:06:36 +01:00

JSON-Patch

Provides the ability to modify and test a JSON according to a RFC6902 JSON patch and RFC7396 JSON Merge Patch.

Version: 1.0

GoDoc

Build Status

API Usage

  • Given a []byte, obtain a Patch object

    obj, 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)