CockroachDB · Schema

Folder

Represents a folder used to organize clusters and resources within a CockroachDB Cloud organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
resource_id string Unique identifier of the folder.
name string Human-readable name of the folder.
parent_id string ID of the parent folder, if any.
path string Full path to the folder.
View JSON Schema on GitHub

JSON Schema

cockroachdb-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Folder",
  "title": "Folder",
  "type": "object",
  "description": "Represents a folder used to organize clusters and resources within a CockroachDB Cloud organization.",
  "properties": {
    "resource_id": {
      "type": "string",
      "description": "Unique identifier of the folder."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the folder."
    },
    "parent_id": {
      "type": "string",
      "description": "ID of the parent folder, if any."
    },
    "path": {
      "type": "string",
      "description": "Full path to the folder."
    }
  }
}