Auth0 · Schema

ResourceServerTokenEncryptionKey

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Name of the encryption key.
alg object
kid string Key ID.
pem string PEM-formatted public key. Must be JSON escaped.
View JSON Schema on GitHub

JSON Schema

auth0-resourceservertokenencryptionkey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceServerTokenEncryptionKey",
  "title": "ResourceServerTokenEncryptionKey",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "alg",
    "pem"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the encryption key.",
      "minLength": 1,
      "maxLength": 128
    },
    "alg": {
      "$ref": "#/components/schemas/ResourceServerTokenEncryptionAlgorithmEnum"
    },
    "kid": {
      "type": "string",
      "description": "Key ID.",
      "minLength": 1,
      "maxLength": 128
    },
    "pem": {
      "type": "string",
      "description": "PEM-formatted public key. Must be JSON escaped.",
      "default": "-----BEGIN PUBLIC KEY-----\r\nMIIBIjANBg...\r\n-----END PUBLIC KEY-----\r\n",
      "minLength": 1,
      "maxLength": 4096
    }
  }
}