Couchbase · Schema

BackupClusterInfo

Cluster backup information

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
name string Cluster name
repositories array List of repository names
plans array List of plan names
View JSON Schema on GitHub

JSON Schema

couchbase-backupclusterinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackupClusterInfo",
  "title": "BackupClusterInfo",
  "type": "object",
  "description": "Cluster backup information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Cluster name"
    },
    "repositories": {
      "type": "array",
      "description": "List of repository names",
      "items": {
        "type": "string"
      }
    },
    "plans": {
      "type": "array",
      "description": "List of plan names",
      "items": {
        "type": "string"
      }
    }
  }
}