Apache CouchDB · JSON Structure

Apache Couchdb Keys Request Structure

Request body for POST _all_docs with specific keys

Type: object Properties: 1
ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

KeysRequest is a JSON Structure definition published by Apache CouchDB, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

keys

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-couchdb/refs/heads/main/json-structure/apache-couchdb-keys-request-structure.json",
  "name": "KeysRequest",
  "description": "Request body for POST _all_docs with specific keys",
  "type": "object",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of document IDs to retrieve",
      "example": [
        "doc001",
        "doc002"
      ]
    }
  }
}