CockroachDB · Schema

ListRoleGrantsResponse

Paginated list of role grants in the organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
grants array Array of role grant objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listrolegrantsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListRoleGrantsResponse",
  "title": "ListRoleGrantsResponse",
  "type": "object",
  "description": "Paginated list of role grants in the organization.",
  "properties": {
    "grants": {
      "type": "array",
      "description": "Array of role grant objects.",
      "items": {
        "type": "object"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}