-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.json
289 lines (289 loc) · 6.61 KB
/
schema.json
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
{
"$defs": {
"ChannelEnum": {
"enum": [
"default",
"esr",
"release",
"beta",
"daily"
],
"title": "ChannelEnum",
"type": "string"
},
"Notification": {
"properties": {
"id": {
"description": "Unique ID set by the server",
"format": "uuid",
"title": "Id",
"type": "string"
},
"start_at": {
"description": "UTC Timestamp after which Thunderbird will show the event after startup",
"format": "date-time",
"title": "Start At",
"type": "string"
},
"end_at": {
"description": "UTC Timestamp after which Thunderbird will never show the event, even if it has never been shown to the user.",
"format": "date-time",
"title": "End At",
"type": "string"
},
"title": {
"description": "Short sentence describing the event which will be displayed in the Thunderbird UI.",
"title": "Title",
"type": "string"
},
"description": {
"description": "A short paragraph that can contain HTML and will be displayed in the Thunderbird UI.",
"title": "Description",
"type": "string"
},
"URL": {
"anyOf": [
{
"format": "uri",
"maxLength": 2083,
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "URL to open from the CTA, if any.",
"title": "Url"
},
"CTA": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Link text to show for the URL.",
"title": "Cta"
},
"severity": {
"allOf": [
{
"$ref": "#/$defs/SeverityEnum"
}
],
"description": "Severity level, where 1 is the most important/urgent and 5 is the least."
},
"type": {
"allOf": [
{
"$ref": "#/$defs/TypeEnum"
}
],
"description": "Category of notification."
},
"targeting": {
"allOf": [
{
"$ref": "#/$defs/Targeting"
}
],
"description": "Targeting criteria for the notification"
}
},
"required": [
"id",
"start_at",
"end_at",
"title",
"description",
"severity",
"type",
"targeting"
],
"title": "Notification",
"type": "object"
},
"OperatingSystemEnum": {
"enum": [
"win",
"macosx",
"linux",
"freebsd",
"openbsd",
"netbsd",
"solaris",
"other"
],
"title": "OperatingSystemEnum",
"type": "string"
},
"Profile": {
"properties": {
"displayed_notifications": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "An id of an event previously displayed by the client.",
"title": "Displayed Notifications"
},
"locales": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The selected UI language of the client.",
"title": "Locales"
},
"versions": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "A client application version string.",
"title": "Versions"
},
"channels": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/ChannelEnum"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The client release channel name.",
"title": "Channels"
},
"operating_systems": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/OperatingSystemEnum"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "The operating system the client is running under.",
"title": "Operating Systems"
}
},
"title": "Profile",
"type": "object"
},
"SeverityEnum": {
"enum": [
1,
2,
3,
4,
5
],
"title": "SeverityEnum",
"type": "integer"
},
"Targeting": {
"properties": {
"percent_chance": {
"anyOf": [
{
"maximum": 100.0,
"minimum": 0.0,
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Percent Chance"
},
"exclude": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/Profile"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Exclude"
},
"include": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/Profile"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Include"
}
},
"title": "Targeting",
"type": "object"
},
"TypeEnum": {
"enum": [
"donation",
"donation_old",
"message",
"security",
"blog"
],
"title": "TypeEnum",
"type": "string"
}
},
"items": {
"$ref": "#/$defs/Notification"
},
"title": "NotificationModel",
"type": "array"
}