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