Auth0 · Schema

CreateEncryptionKeyPublicWrappingResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
public_key string Public wrapping key in PEM format
algorithm object
View JSON Schema on GitHub

JSON Schema

auth0-createencryptionkeypublicwrappingresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEncryptionKeyPublicWrappingResponseContent",
  "title": "CreateEncryptionKeyPublicWrappingResponseContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "public_key",
    "algorithm"
  ],
  "properties": {
    "public_key": {
      "type": "string",
      "description": "Public wrapping key in PEM format"
    },
    "algorithm": {
      "$ref": "#/components/schemas/EncryptionKeyPublicWrappingAlgorithm"
    }
  }
}