Mailchimp · Schema

ScheduledMessage

A message scheduled for future delivery.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
_id string The unique scheduled message ID.
created_at string When the scheduled message was created.
send_at string When the message is scheduled to be sent.
from_email string The sender email address.
to string The recipient email address.
subject string The message subject line.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-scheduled-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ScheduledMessage",
  "type": "object",
  "description": "A message scheduled for future delivery.",
  "properties": {
    "_id": {
      "type": "string",
      "description": "The unique scheduled message ID."
    },
    "created_at": {
      "type": "string",
      "description": "When the scheduled message was created."
    },
    "send_at": {
      "type": "string",
      "description": "When the message is scheduled to be sent."
    },
    "from_email": {
      "type": "string",
      "description": "The sender email address."
    },
    "to": {
      "type": "string",
      "description": "The recipient email address."
    },
    "subject": {
      "type": "string",
      "description": "The message subject line."
    }
  }
}