CockroachDB · Schema

GetAllRolesForUserResponse

All role grants assigned to a specific user.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
roles array Array of role grant objects.
View JSON Schema on GitHub

JSON Schema

cockroachdb-getallrolesforuserresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAllRolesForUserResponse",
  "title": "GetAllRolesForUserResponse",
  "type": "object",
  "description": "All role grants assigned to a specific user.",
  "properties": {
    "roles": {
      "type": "array",
      "description": "Array of role grant objects.",
      "items": {
        "type": "object"
      }
    }
  }
}