Apache CouchDB · Schema

ClusterSetupResponse

Cluster setup status

ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

Properties

Name Type Description
state string Cluster setup state
View JSON Schema on GitHub

JSON Schema

apache-couchdb-cluster-setup-response-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-cluster-setup-response-schema.json",
  "title": "ClusterSetupResponse",
  "description": "Cluster setup status",
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "description": "Cluster setup state",
      "enum": [
        "cluster_disabled",
        "single_node_disabled",
        "single_node_enabled",
        "cluster_enabled",
        "cluster_finished"
      ],
      "example": "cluster_enabled"
    }
  }
}