{ "$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 } } }