CockroachDB · Schema

SQLUser

Represents a SQL user on a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string Username of the SQL user.
View JSON Schema on GitHub

JSON Schema

cockroachdb-sqluser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SQLUser",
  "title": "SQLUser",
  "type": "object",
  "description": "Represents a SQL user on a CockroachDB cluster.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Username of the SQL user."
    }
  }
}