Auth0 · Schema

RotateSigningKeysResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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