StackOne · Schema

EmailMessageContents

IntegrationsiPaaS

Properties

Name Type Description
subject string
body string
from string
reply-to string
preheader string
View JSON Schema on GitHub

JSON Schema

stackone-emailmessagecontents-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailMessageContents",
  "title": "EmailMessageContents",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "from": {
      "type": "string"
    },
    "reply-to": {
      "type": "string"
    },
    "preheader": {
      "type": "string"
    }
  },
  "required": [
    "subject",
    "body",
    "from"
  ]
}