mirror of
https://github.com/nlohmann/json
synced 2024-11-22 12:00:05 +00:00
b21c345179
* 🚚 move files * 🚚 rename doc folder to docs * 🚚 rename test folder to tests
26 lines
317 B
Plaintext
26 lines
317 B
Plaintext
[
|
|
{
|
|
"op": "replace",
|
|
"path": "/baz",
|
|
"value": "boo"
|
|
},
|
|
{
|
|
"op": "remove",
|
|
"path": "/foo"
|
|
},
|
|
{
|
|
"op": "add",
|
|
"path": "/hello",
|
|
"value": [
|
|
"world"
|
|
]
|
|
}
|
|
]
|
|
|
|
{
|
|
"baz": "boo",
|
|
"hello": [
|
|
"world"
|
|
]
|
|
}
|