UNPKG

dancecard-email-schemas

Version:

Schemas for objects for Dancecard Email Nurturing System

32 lines (30 loc) 815 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var 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"] }; exports.OptInEmailSubtype = OptInEmailSubtype;