CockroachDB · Schema

ListJWTIssuersResponse

Paginated list of JWT issuers.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
issuers array Array of JWT issuer objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listjwtissuersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListJWTIssuersResponse",
  "title": "ListJWTIssuersResponse",
  "type": "object",
  "description": "Paginated list of JWT issuers.",
  "properties": {
    "issuers": {
      "type": "array",
      "description": "Array of JWT issuer objects.",
      "items": {
        "$ref": "#/components/schemas/JWTIssuer"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}