Request body for POST _all_docs with specific keys
{ "$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" ] } } }