Apache CouchDB · Schema

SessionRequest

Authentication credentials for session creation

ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

Properties

Name Type Description
name string CouchDB username
password string CouchDB password
View JSON Schema on GitHub

JSON Schema

apache-couchdb-session-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-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"
  ]
}