Auth0 · Schema

ConnectionEmailEmail

Email template configuration

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
body object
from object
subject object
syntax string Email template syntax type
View JSON Schema on GitHub

JSON Schema

auth0-connectionemailemail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionEmailEmail",
  "title": "ConnectionEmailEmail",
  "description": "Email template configuration",
  "type": "object",
  "properties": {
    "body": {
      "$ref": "#/components/schemas/ConnectionEmailBodyEmail"
    },
    "from": {
      "$ref": "#/components/schemas/ConnectionEmailFromEmail"
    },
    "subject": {
      "$ref": "#/components/schemas/ConnectionEmailSubjectEmail"
    },
    "syntax": {
      "type": "string",
      "description": "Email template syntax type",
      "const": "liquid"
    }
  },
  "additionalProperties": false
}