Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 483 Bytes

File metadata and controls

32 lines (21 loc) · 483 Bytes

Comparing to other formats

Comparing patch format with other.

Replace

JSON Patch

[
  { "op": "replace", "path": "/baz", "value": "boo" },
]

JSON Merge Patch

{ "baz": "boo" }

JSON Diff

{ "baz": "boo" }