CockroachDB · Schema

ListServiceAccountsResponse

Paginated list of service accounts.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
service_accounts array Array of service account objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listserviceaccountsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListServiceAccountsResponse",
  "title": "ListServiceAccountsResponse",
  "type": "object",
  "description": "Paginated list of service accounts.",
  "properties": {
    "service_accounts": {
      "type": "array",
      "description": "Array of service account objects.",
      "items": {
        "$ref": "#/components/schemas/ServiceAccount"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}