Auth0 · Schema

FlowActionAuth0SendEmailParamsFrom

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string
email object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0sendemailparamsfrom-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0SendEmailParamsFrom",
  "title": "FlowActionAuth0SendEmailParamsFrom",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "email"
  ],
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 125
    },
    "email": {
      "$ref": "#/components/schemas/FlowActionAuth0SendEmailParamsFromEmail"
    }
  }
}