CockroachDB · Schema

Database

Represents a database within a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string Name of the database.
table_count integer Number of tables in the database.
View JSON Schema on GitHub

JSON Schema

cockroachdb-database-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Database",
  "title": "Database",
  "type": "object",
  "description": "Represents a database within a CockroachDB cluster.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the database."
    },
    "table_count": {
      "type": "integer",
      "description": "Number of tables in the database."
    }
  }
}