{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmailDeliveryUpdatePayload", "title": "EmailDeliveryUpdatePayload", "type": "object", "properties": { "enabled": { "type": "boolean" }, "from_email": { "type": "string", "format": "email", "nullable": true }, "reply_to_email": { "type": "string", "format": "email", "nullable": true } }, "additionalProperties": false }