Couchbase · Schema

Project

Capella project within an organization

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

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

JSON Schema

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