{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReplyCreate", "title": "ReplyCreate", "type": "object", "required": [ "body" ], "properties": { "body": { "type": "string", "description": "HTML content of the reply." }, "cc_emails": { "type": "array", "items": { "type": "string", "format": "email" }, "description": "Email addresses to CC." }, "bcc_emails": { "type": "array", "items": { "type": "string", "format": "email" }, "description": "Email addresses to BCC." } } }