Apache CouchDB · JSON Structure

Apache Couchdb Server Info Structure

CouchDB server meta information

Type: object Properties: 5
ApacheDatabaseDocument StoreJSONNoSQLOpen SourceReplicationREST

ServerInfo is a JSON Structure definition published by Apache CouchDB, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

couchdb version git_sha uuid vendor

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-server-info-structure.json",
  "name": "ServerInfo",
  "description": "CouchDB server meta information",
  "type": "object",
  "properties": {
    "couchdb": {
      "type": "string",
      "description": "Always \"Welcome\"",
      "example": "Welcome"
    },
    "version": {
      "type": "string",
      "description": "CouchDB version number",
      "example": "3.5.1"
    },
    "git_sha": {
      "type": "string",
      "description": "Git commit SHA of the build",
      "example": "abc1234"
    },
    "uuid": {
      "type": "string",
      "description": "Server-wide unique identifier",
      "example": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6"
    },
    "vendor": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "The Apache Software Foundation"
        }
      }
    }
  }
}