CockroachDB · Schema

Organization

Represents a CockroachDB Cloud organization, which is the top-level container for all clusters, users, and billing.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
id string Unique identifier of the organization.
name string Human-readable name of the organization.
label string Short label for the organization.
created_at string Timestamp when the organization was created.
View JSON Schema on GitHub

JSON Schema

cockroachdb-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Organization",
  "title": "Organization",
  "type": "object",
  "description": "Represents a CockroachDB Cloud organization, which is the top-level container for all clusters, users, and billing.",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the organization."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the organization."
    },
    "label": {
      "type": "string",
      "description": "Short label for the organization."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the organization was created."
    }
  }
}