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