Email

Email schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
PKey string
subject string
htmlContent string
status string
sender object
created string
View JSON Schema on GitHub

JSON Schema

campaign-api-email-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/campaign-api-email-schema.json",
  "title": "Email",
  "description": "Email schema",
  "type": "object",
  "properties": {
    "PKey": {
      "type": "string"
    },
    "subject": {
      "type": "string"
    },
    "htmlContent": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "sender": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "email": {
          "type": "string"
        }
      }
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}