AhaSend · Schema
MessageContentParsed
MessageContentParsed schema from AhaSend API
EmailTransactional EmailDeveloper ToolsSMTPWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| parts | array | Array of message content parts (text, HTML, etc.) |
| attachments | array | Array of message attachments |
| headers | object | Email headers as key-value pairs (values are arrays to handle multiple headers with same name) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-message-content-parsed-schema.json",
"title": "MessageContentParsed",
"description": "MessageContentParsed schema from AhaSend API",
"type": "object",
"properties": {
"parts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MessageContentPart"
},
"description": "Array of message content parts (text, HTML, etc.)",
"example": [
{
"content_type": "example_value",
"content": "example_value"
}
]
},
"attachments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MessageAttachment"
},
"description": "Array of message attachments",
"example": [
{
"filename": "Example Name",
"content": "example_value",
"content_type": "example_value",
"content_id": "500123"
}
]
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
},
"description": "Email headers as key-value pairs (values are arrays to handle multiple headers with same name)",
"example": {
"Content-Type": [
"text/html; charset=utf-8"
],
"X-Custom-Header": [
"value1",
"value2"
]
}
}
},
"required": [
"parts",
"attachments",
"headers"
]
}