{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmailTemplateContent", "title": "EmailTemplateContent", "type": "object", "properties": { "subject": { "type": "string", "maxLength": 1024, "nullable": true }, "title": { "type": "string", "maxLength": 1024, "nullable": true }, "body": { "type": "string", "maxLength": 4096, "nullable": true }, "button_label": { "type": "string", "maxLength": 128, "nullable": true } }, "nullable": true }