CockroachDB · Schema

ListSQLUsersResponse

Paginated list of SQL users for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
users array Array of SQL user objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listsqlusersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSQLUsersResponse",
  "title": "ListSQLUsersResponse",
  "type": "object",
  "description": "Paginated list of SQL users for a cluster.",
  "properties": {
    "users": {
      "type": "array",
      "description": "Array of SQL user objects.",
      "items": {
        "$ref": "#/components/schemas/SQLUser"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}