{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionalEmailContent", "title": "TransactionalEmailContent", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "Recipient email address." }, "subject": { "type": "string", "description": "Rendered subject line of the sent email." }, "body": { "type": "string", "description": "Rendered HTML body of the sent email." }, "date": { "type": "string", "format": "date-time", "description": "UTC date-time when the email was sent." }, "messageId": { "type": "string", "description": "Unique message identifier." } } }