Mailchimp · Schema
MessageInfo
Summary information about a sent message.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| ts | integer | The Unix timestamp when the message was sent. |
| _id | string | The unique message ID. |
| sender | string | The sender email address. |
| template | string | The template slug used, if any. |
| subject | string | The subject line of the message. |
| string | The recipient email address. | |
| tags | array | Tags applied to the message. |
| opens | integer | The number of times the message was opened. |
| opens_detail | array | Detailed open tracking events. |
| clicks | integer | The number of link clicks in the message. |
| clicks_detail | array | Detailed click tracking events. |
| state | string | The current state of the message. |
| metadata | object | Custom metadata attached to the message. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MessageInfo",
"type": "object",
"description": "Summary information about a sent message.",
"properties": {
"ts": {
"type": "integer",
"description": "The Unix timestamp when the message was sent."
},
"_id": {
"type": "string",
"description": "The unique message ID."
},
"sender": {
"type": "string",
"description": "The sender email address."
},
"template": {
"type": "string",
"description": "The template slug used, if any."
},
"subject": {
"type": "string",
"description": "The subject line of the message."
},
"email": {
"type": "string",
"description": "The recipient email address."
},
"tags": {
"type": "array",
"description": "Tags applied to the message."
},
"opens": {
"type": "integer",
"description": "The number of times the message was opened."
},
"opens_detail": {
"type": "array",
"description": "Detailed open tracking events."
},
"clicks": {
"type": "integer",
"description": "The number of link clicks in the message."
},
"clicks_detail": {
"type": "array",
"description": "Detailed click tracking events."
},
"state": {
"type": "string",
"description": "The current state of the message."
},
"metadata": {
"type": "object",
"description": "Custom metadata attached to the message."
}
}
}