Couchbase · Schema

RoleConfig

Role configuration

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
name string Role name
admin_channels array Admin-assigned channels for this role
View JSON Schema on GitHub

JSON Schema

couchbase-roleconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleConfig",
  "title": "RoleConfig",
  "type": "object",
  "description": "Role configuration",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Role name"
    },
    "admin_channels": {
      "type": "array",
      "description": "Admin-assigned channels for this role",
      "items": {
        "type": "string"
      }
    }
  }
}