CockroachDB · Schema

UpdateJWTIssuerRequest

Request body for updating a JWT issuer.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
issuer_url string Updated URL of the JWT issuer.
jwks_id string Updated JWKS identifier.
View JSON Schema on GitHub

JSON Schema

cockroachdb-updatejwtissuerrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateJWTIssuerRequest",
  "title": "UpdateJWTIssuerRequest",
  "type": "object",
  "description": "Request body for updating a JWT issuer.",
  "properties": {
    "issuer_url": {
      "type": "string",
      "description": "Updated URL of the JWT issuer."
    },
    "jwks_id": {
      "type": "string",
      "description": "Updated JWKS identifier."
    }
  }
}