1
0
mirror of https://github.com/nlohmann/json synced 2024-11-29 15:11:04 +00:00
nlohmannjson/docs/examples/diff.output

26 lines
317 B
Plaintext
Raw Normal View History

2016-04-25 21:17:04 +00:00
[
{
"op": "replace",
"path": "/baz",
"value": "boo"
},
{
"op": "remove",
"path": "/foo"
},
{
"op": "add",
"path": "/hello",
"value": [
"world"
]
}
]
{
"baz": "boo",
"hello": [
"world"
]
}