{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchPortalEmailConfig", "title": "PatchPortalEmailConfig", "type": "object", "properties": { "domain_name": { "description": "The domain name to use for sending emails. Null means default.", "type": "string", "nullable": true }, "from_name": { "description": "The name to display in the 'From' field of emails.", "type": "string", "nullable": true }, "from_email": { "description": "The email address to use in the 'From' field.", "type": "string", "format": "email", "nullable": true }, "reply_to_email": { "description": "The email address to use in the 'Reply-To' field. If set to null, 'Reply-To' header is omitted.", "type": "string", "format": "email", "nullable": true } }, "additionalProperties": false }