Auth0 · Schema

ImportEncryptionKeyRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
wrapped_key string Base64 encoded ciphertext of key material wrapped by public wrapping key.
View JSON Schema on GitHub

JSON Schema

auth0-importencryptionkeyrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportEncryptionKeyRequestContent",
  "title": "ImportEncryptionKeyRequestContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "wrapped_key"
  ],
  "properties": {
    "wrapped_key": {
      "type": "string",
      "description": "Base64 encoded ciphertext of key material wrapped by public wrapping key."
    }
  }
}