{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionAuth0SendEmailParams", "title": "FlowActionAuth0SendEmailParams", "type": "object", "additionalProperties": false, "required": [ "to", "subject", "body" ], "properties": { "from": { "$ref": "#/components/schemas/FlowActionAuth0SendEmailParamsFrom" }, "to": { "$ref": "#/components/schemas/FlowActionAuth0SendEmailParamsTo" }, "subject": { "type": "string", "minLength": 1, "maxLength": 255 }, "body": { "type": "string", "minLength": 1, "maxLength": 102400 }, "custom_vars": { "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsCustomVars" } } }