shell> curl --dump - http://localhost:8529/_api/document/products/706605963 HTTP/1.1 200 OK content-type: application/json; charset=utf-8 etag: "706605963" { "inhabitants" : { "china" : 1366980000, "india" : 1263590000, "usa" : 319220000 }, "_id" : "products/706605963", "_rev" : "706605963", "_key" : "706605963" } shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/706605963?mergeObjects=true < curl --dump - http://localhost:8529/_api/document/products/706605963 HTTP/1.1 200 OK content-type: application/json; charset=utf-8 etag: "707130251" { "inhabitants" : { "china" : 1366980000, "india" : 1263590000, "usa" : 319220000, "indonesia" : 252164800, "brazil" : 203553000 }, "_id" : "products/706605963", "_rev" : "707130251", "_key" : "706605963" } shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/706605963?mergeObjects=false < curl --dump - http://localhost:8529/_api/document/products/706605963 HTTP/1.1 200 OK content-type: application/json; charset=utf-8 etag: "707589003" { "inhabitants" : { "pakistan" : 188346000 }, "_id" : "products/706605963", "_rev" : "707589003", "_key" : "706605963" }