dancecard-email-schemas
Version:
Schemas for objects for Dancecard Email Nurturing System
24 lines (21 loc) • 533 B
JavaScript
let Account = {
"id": "./Account",
"title": "Account",
"description": "An Account object that is associated with programs, template blocks, and emails",
"type": "object",
"properties": {
"_id": {
"description": "Unique ID generated by database.",
"type": "string"
},
"account_name": {
"description": "User provided Account name.",
"type": "string"
},
"external_id": {
"description": "Account ID in external system.",
"type": "string"
}
}
}
export { Account }