Apache CouchDB · JSON Structure

Apache Couchdb Session Request Structure

Authentication credentials for session creation

Type: object Properties: 2 Required: 2
ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

SessionRequest is a JSON Structure definition published by Apache CouchDB, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name password

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-session-request-structure.json",
  "name": "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"
  ]
}