CockroachDB · Schema

ListApiKeysResponse

Paginated list of API keys.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
api_keys array Array of API key objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listapikeysresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListApiKeysResponse",
  "title": "ListApiKeysResponse",
  "type": "object",
  "description": "Paginated list of API keys.",
  "properties": {
    "api_keys": {
      "type": "array",
      "description": "Array of API key objects.",
      "items": {
        "$ref": "#/components/schemas/ApiKey"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}