Mailchimp · JSON Structure

Mailchimp Transactional Parsed Message Structure

Type: object Properties: 9
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

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

Properties

subject from_email from_name to headers text html attachments images

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

JSON Structure

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