JSON Patch
JSON Patch is a format for describing changes to a JSON document. It can be used to avoid sending a whole document when only a part has changed
jsonpatch.com#jsonpatch#json#api#http
#JSON#Graft is a more robust version of JSON Patch. Allowing you to cherry pick changes made between two versions in one branch and apply these to the data in another branch. Available through our DeltaJSON app, give it a try: buff.ly/3pVctGL#jsonpatch#api#saas#java
Today I learned that JSON Patch doesn't create the intermediate parts of a path.
This leads to a lot of *if* blocks when adding k8s anti-affinity rules to a pod spec in a mutating webhook.
#jsonpatch#k8s