-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamazon-ses-openapi-email-message-structure.json
More file actions
99 lines (99 loc) · 2.53 KB
/
amazon-ses-openapi-email-message-structure.json
File metadata and controls
99 lines (99 loc) · 2.53 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ses/refs/heads/main/json-structure/amazon-ses-openapi-email-message-structure.json",
"description": "An object that defines the email message content including simple, raw, and template options.",
"type": "object",
"properties": {
"Simple": {
"type": "object",
"description": "The simple email message with subject and body.",
"properties": {
"Subject": {
"type": "object",
"properties": {
"Data": {
"type": "string",
"description": "The content of the message subject."
},
"Charset": {
"type": "string",
"description": "The character set for the content."
}
},
"required": [
"Data"
]
},
"Body": {
"type": "object",
"properties": {
"Text": {
"type": "object",
"properties": {
"Data": {
"type": "string"
},
"Charset": {
"type": "string"
}
},
"required": [
"Data"
]
},
"Html": {
"type": "object",
"properties": {
"Data": {
"type": "string"
},
"Charset": {
"type": "string"
}
},
"required": [
"Data"
]
}
}
}
},
"required": [
"Subject",
"Body"
]
},
"Raw": {
"type": "object",
"description": "The raw email message.",
"properties": {
"Data": {
"type": "string",
"format": "byte",
"description": "The raw email message in MIME format."
}
},
"required": [
"Data"
]
},
"Template": {
"type": "object",
"description": "The template email message.",
"properties": {
"TemplateName": {
"type": "string",
"description": "The name of the template."
},
"TemplateArn": {
"type": "string"
},
"TemplateData": {
"type": "string",
"description": "JSON object of replacement values for template variables."
}
}
}
},
"name": "EmailMessage"
}