Apache CouchDB · Example Payload

Apache Couchdb Find Request Example

ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

Apache Couchdb Find Request Example is an example object payload from Apache CouchDB, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

selectorfieldslimitskipsortbookmark

Example Payload

Raw ↑
{
  "selector": {
    "type": "product",
    "status": "active"
  },
  "fields": [
    "_id",
    "name"
  ],
  "limit": 25,
  "skip": 0,
  "sort": [
    {
      "name": "asc"
    }
  ],
  "bookmark": "g1AAAABleJzLYWBg"
}