←back to thread

JSON Patch

(zuplo.com)
299 points DataOverload | 2 comments | | HN request time: 0.458s | source
1. terrelln ◴[] No.41882101[source]
You can also use general purpose compressors like Zstandard to create a generic patch:

    zstd --patch-from old.json new.json -o patch.zst
    zstd --patch-from old.json -d patch.zst -o updated.json
replies(1): >>41882336 #
2. SahAssar ◴[] No.41882336[source]
JSON-patch is not a generic patch. It's not the same thing.