Auth0 · Schema

RevokedSigningKeysResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
cert string Revoked key certificate
kid string Revoked key id
View JSON Schema on GitHub

JSON Schema

auth0-revokedsigningkeysresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RevokedSigningKeysResponseContent",
  "title": "RevokedSigningKeysResponseContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "cert",
    "kid"
  ],
  "properties": {
    "cert": {
      "type": "string",
      "description": "Revoked key certificate",
      "default": "-----BEGIN CERTIFICATE-----\r\nMIIDDTCCA...YiA0TQhAt8=\r\n-----END CERTIFICATE-----"
    },
    "kid": {
      "type": "string",
      "description": "Revoked key id",
      "default": "21hi274Rp02112mgkUGma"
    }
  }
}