Couchbase · Schema

Organization

Capella organization

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
id string Organization UUID
name string Organization name
description string Organization description
preferences object Organization preferences
audit object
View JSON Schema on GitHub

JSON Schema

couchbase-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Organization",
  "title": "Organization",
  "type": "object",
  "description": "Capella organization",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Organization UUID"
    },
    "name": {
      "type": "string",
      "description": "Organization name"
    },
    "description": {
      "type": "string",
      "description": "Organization description"
    },
    "preferences": {
      "type": "object",
      "description": "Organization preferences"
    },
    "audit": {
      "$ref": "#/components/schemas/AuditInfo"
    }
  }
}