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