Mailchimp · Schema

MetadataField

A custom metadata field definition.

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

Properties

Name Type Description
name string The unique name of the metadata field.
state string The current state of the field.
view_template string The Mustache template for displaying the field in the UI.
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-metadata-field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MetadataField",
  "type": "object",
  "description": "A custom metadata field definition.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The unique name of the metadata field."
    },
    "state": {
      "type": "string",
      "description": "The current state of the field."
    },
    "view_template": {
      "type": "string",
      "description": "The Mustache template for displaying the field in the UI."
    }
  }
}