Mailchimp · JSON Structure

Mailchimp Transactional Message Content Structure

Type: object Properties: 11
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

MessageContent is a JSON Structure definition published by Mailchimp, describing 11 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

ts _id from_email from_name subject to tags headers text html attachments

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "MessageContent",
  "type": "object",
  "properties": {
    "ts": {
      "type": "integer"
    },
    "_id": {
      "type": "string"
    },
    "from_email": {
      "type": "string"
    },
    "from_name": {
      "type": "string"
    },
    "subject": {
      "type": "string"
    },
    "to": {
      "type": "object"
    },
    "tags": {
      "type": "array"
    },
    "headers": {
      "type": "object"
    },
    "text": {
      "type": "string"
    },
    "html": {
      "type": "string"
    },
    "attachments": {
      "type": "array"
    }
  }
}