dancecard-email-schemas
Version:
Schemas for objects for Dancecard Email Nurturing System
28 lines (26 loc) • 722 B
JavaScript
let SingleEmailSubtype = {
"id": "./SingleEmailSubtype",
"title": "SingleEmailSubtype",
"description": "Single EMail Subtype's associated fields/properties.",
"type": "object",
"properties": {
"subject": {
"description": "Subject line for single email.",
"type": "string"
},
"salutation": {
"description": "Salutation used for single email.",
"type": "string"
},
"body": {
"description": "Body of email used for single email.",
"type": "string"
},
"signature": {
"description": "Signature used for single email.",
"type": "string"
}
},
"required": ["subject", "salutation", "body", "signature"]
}
export { SingleEmailSubtype }