shell> curl --dump - http://localhost:8529/_api/document/products/9904 HTTP/1.1 200 OK x-content-type-options: nosniff content-type: application/json; charset=utf-8 etag: "_VReqjh6---" { "_key" : "9904", "_id" : "products/9904", "_rev" : "_VReqjh6---", "inhabitants" : { "china" : 1366980000, "india" : 1263590000, "usa" : 319220000 } } shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/9904?mergeObjects=true <<EOF { "inhabitants" : { "indonesia" : 252164800, "brazil" : 203553000 } } EOF shell> curl --dump - http://localhost:8529/_api/document/products/9904 HTTP/1.1 200 OK x-content-type-options: nosniff content-type: application/json; charset=utf-8 etag: "_VReqjiC---" { "_key" : "9904", "_id" : "products/9904", "_rev" : "_VReqjiC---", "inhabitants" : { "china" : 1366980000, "india" : 1263590000, "usa" : 319220000, "indonesia" : 252164800, "brazil" : 203553000 } } shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/9904?mergeObjects=false <<EOF { "inhabitants" : { "pakistan" : 188346000 } } EOF HTTP/1.1 202 Accepted content-type: application/json; charset=utf-8 x-content-type-options: nosniff etag: "_VReqjiO---" location: /_db/_system/_api/document/products/9904 { "_id" : "products/9904", "_key" : "9904", "_rev" : "_VReqjiO---", "_oldRev" : "_VReqjiC---" } shell> curl --dump - http://localhost:8529/_api/document/products/9904 HTTP/1.1 200 OK x-content-type-options: nosniff content-type: application/json; charset=utf-8 etag: "_VReqjiO---" { "_key" : "9904", "_id" : "products/9904", "_rev" : "_VReqjiO---", "inhabitants" : { "pakistan" : 188346000 } }