Apache CouchDB · Schema

KeysRequest

Request body for POST _all_docs with specific keys

ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

Properties

Name Type Description
keys array Array of document IDs to retrieve
View JSON Schema on GitHub

JSON Schema

apache-couchdb-keys-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-couchdb/refs/heads/main/json-schema/apache-couchdb-keys-request-schema.json",
  "title": "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"
      ]
    }
  }
}