Schema for information about the server instance.

interface ServerInformation {
    couchdb: string;
    features: string[];
    features_flags: string[];
    vendor: ServerVendor;
    version: string;
}

Properties

couchdb: string

Welcome message.

features: string[]

List of enabled optional features.

features_flags: string[]

List of feature flags.

vendor: ServerVendor

Schema for server vendor information.

version: string

Apache CouchDB version.

Generated using TypeDoc