shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/simple/by-example <<EOF
{
"collection" : "products",
"example" : {
"a" : {
"j" : 1
}
}
}
EOF
HTTP/1.1 Created
content-type: application/json; charset=utf-8
x-content-type-options: nosniff
{
"result" : [
{
"_key" : "70648",
"_id" : "products/70648",
"_rev" : "_ZXF6Z5q--A",
"a" : {
"j" : 1
},
"i" : 1
}
],
"hasMore" : false,
"count" : 1,
"cached" : false,
"extra" : {
"stats" : {
"writesExecuted" : 0,
"writesIgnored" : 0,
"scannedFull" : 4,
"scannedIndex" : 0,
"filtered" : 3,
"httpRequests" : 0,
"executionTime" : 0.00019240379333496094,
"peakMemoryUsage" : 37201
},
"warnings" : [ ]
},
"error" : false,
"code" : 201
}