json/doc/mkdocs/docs/features/merge_patch.md

21 lines
760 B
Markdown
Raw Normal View History

2020-05-24 13:03:04 +02:00
# JSON Merge Patch
2020-05-24 22:45:38 +02:00
The library supports JSON Merge Patch ([RFC 7386](https://tools.ietf.org/html/rfc7386)) as a patch format.
The merge patch format is primarily intended for use with the HTTP PATCH method as a means of describing a set of modifications to a target resource's content. This function applies a merge patch to the current JSON value.
2020-05-24 13:03:04 +02:00
2020-05-24 22:45:38 +02:00
Instead of using [JSON Pointer](json_pointer.md) to specify values to be manipulated, it describes the changes using a syntax that closely mimics the document being modified.
2020-05-24 13:03:04 +02:00
2020-05-24 22:45:38 +02:00
??? example
2020-05-24 13:03:04 +02:00
2020-05-24 22:45:38 +02:00
The following code shows how a JSON Merge Patch is applied to a JSON document.
```cpp
--8<-- "examples/merge_patch.cpp"
```
Output:
```json
--8<-- "examples/merge_patch.output"
```