Apache CouchDB · Example Payload

Apache Couchdb View Response Example

ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

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

Top-level fields

total_rowsoffsetrows

Example Payload

Raw ↑
{
  "total_rows": 150,
  "offset": 0,
  "rows": [
    {
      "id": "doc001",
      "key": "active",
      "value": 1,
      "doc": {
        "_id": "doc001",
        "_rev": "1-abc123def456",
        "_deleted": false
      }
    }
  ]
}