Authentication credentials for session creation
{ "$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-session-request-schema.json", "title": "SessionRequest", "description": "Authentication credentials for session creation", "type": "object", "properties": { "name": { "type": "string", "description": "CouchDB username", "example": "admin" }, "password": { "type": "string", "description": "CouchDB password", "example": "secretpassword" } }, "required": [ "name", "password" ] }