Mailchimp · Schema
TagInfo
Information and statistics for a message tag.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| tag | string | The tag name. |
| reputation | integer | The reputation score for the tag (0-100). |
| sent | integer | Total number of messages sent with this tag. |
| hard_bounces | integer | Total hard bounces for messages with this tag. |
| soft_bounces | integer | Total soft bounces for messages with this tag. |
| rejects | integer | Total rejects for messages with this tag. |
| complaints | integer | Total spam complaints for messages with this tag. |
| unsubs | integer | Total unsubscribes for messages with this tag. |
| opens | integer | Total opens for messages with this tag. |
| clicks | integer | Total clicks for messages with this tag. |
| unique_opens | integer | Unique opens for messages with this tag. |
| unique_clicks | integer | Unique clicks for messages with this tag. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TagInfo",
"type": "object",
"description": "Information and statistics for a message tag.",
"properties": {
"tag": {
"type": "string",
"description": "The tag name."
},
"reputation": {
"type": "integer",
"description": "The reputation score for the tag (0-100)."
},
"sent": {
"type": "integer",
"description": "Total number of messages sent with this tag."
},
"hard_bounces": {
"type": "integer",
"description": "Total hard bounces for messages with this tag."
},
"soft_bounces": {
"type": "integer",
"description": "Total soft bounces for messages with this tag."
},
"rejects": {
"type": "integer",
"description": "Total rejects for messages with this tag."
},
"complaints": {
"type": "integer",
"description": "Total spam complaints for messages with this tag."
},
"unsubs": {
"type": "integer",
"description": "Total unsubscribes for messages with this tag."
},
"opens": {
"type": "integer",
"description": "Total opens for messages with this tag."
},
"clicks": {
"type": "integer",
"description": "Total clicks for messages with this tag."
},
"unique_opens": {
"type": "integer",
"description": "Unique opens for messages with this tag."
},
"unique_clicks": {
"type": "integer",
"description": "Unique clicks for messages with this tag."
}
}
}