-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-map.schema.json
More file actions
33 lines (33 loc) · 1.01 KB
/
template-map.schema.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Languages",
"description": "Should be an ISO 639-1 code",
"type": "object",
"patternProperties": {
"^[a-zA-Z]{2}$": {
"properties": {
"salvation": {
"type": "string",
"description": "The email template to send after a salvation."
},
"recommitment": {
"type": "string",
"description": "The email template to send after a recommitment"
},
"fromName": {
"type": "string",
"description": "The name to show as the sender, affects email template variable {{fromname}} and From name in email header (not the actual email address)."
},
"fromAddress": {
"type": "string",
"description": "The email address to send the email from. This should coincide with the SES Rule email address(es.)"
}
},
"required": [
"fromName",
"fromAddress"
]
}
},
"additionalProperties": false
}