Options for the 'email' connection
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionOptionsEmail", "title": "ConnectionOptionsEmail", "description": "Options for the 'email' connection", "type": "object", "allOf": [ { "properties": { "authParams": { "$ref": "#/components/schemas/ConnectionAuthParamsEmail" }, "brute_force_protection": { "$ref": "#/components/schemas/ConnectionBruteForceProtection" }, "disable_signup": { "$ref": "#/components/schemas/ConnectionDisableSignup" }, "email": { "$ref": "#/components/schemas/ConnectionEmailEmail" }, "name": { "type": "string", "description": "Connection name", "minLength": 3, "maxLength": 128 }, "totp": { "$ref": "#/components/schemas/ConnectionTotpEmail" } }, "required": [ "brute_force_protection", "email", "name" ] }, { "$ref": "#/components/schemas/ConnectionOptionsCommon" } ], "additionalProperties": true }