-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
460 lines (460 loc) · 14.8 KB
/
config.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Notion Steam API integration configuration schema",
"description": "Validates configuration input for the Notion Steam API integration.",
"type": "object",
"additionalProperties": false,
"properties": {
"$schema": {
"description": "The JSON schema for this configuration file.",
"type": "string",
"default": "config.schema.json"
},
"notionIntegrationKey": {
"description": "The secret integration key for your Notion integration. Find it on your integration dashboard after creating a new integration on https://www.notion.so/my-integrations",
"type": "string",
"default": ""
},
"notionDatabaseId": {
"description": "The ID of the database you want to run the integration on. You can find the ID in the URL of your database, e.g. https://www.notion.so/myworkspace/your-database-id",
"type": "string",
"default": ""
},
"updateInterval": {
"description": "The interval in which the integration will check for updates to your Notion database. The value is in milliseconds. Must be at least 60000 (1 minute).",
"type": "integer",
"default": 60000,
"minimum": 60000
},
"steamAppIdProperty": {
"description": "The name of the property in your Notion database that contains the Steam App ID of the games.",
"type": "string",
"default": "Steam App ID"
},
"forceReset": {
"description": "If true, the integration will reset the local database, fetch all Steam App ID's from the Notion database and refresh all game properties. This may take longer, depending on the size of your Notion database.",
"type": "boolean",
"default": false
},
"alwaysUpdate": {
"description": "If true, the integration will always update entries in the Notion database that were modified since it last ran, even if the game already exists in the local database. It will only update if another user than the integration has last modified the entry.",
"type": "boolean",
"default": false
},
"gameProperties": {
"description": "Which game properties should be fetched when a new Steam game is detected, and the name of the corresponding field in the Notion database.",
"type": "object",
"default": {
"gameName": {
"enabled": true,
"notionProperty": "Name",
"isPageTitle": true
},
"coverImage": {
"enabled": true,
"default": "https://cdn.cloudflare.steamstatic.com/store/home/store_home_share.jpg"
},
"gameIcon": {
"enabled": true,
"default": "https://help.steampowered.com/public/shared/images/responsive/share_steam_logo.png"
},
"releaseDate": {
"enabled": true,
"notionProperty": "Release Date"
},
"reviewScore": {
"enabled": true,
"format": "percentage",
"notionProperty": "Review Score"
},
"tags": {
"enabled": true,
"notionProperty": "Tags"
},
"gameDescription": {
"enabled": true,
"notionProperty": "Description"
},
"storePage": {
"enabled": true,
"notionProperty": "Store Page"
},
"gamePrice": {
"enabled": true,
"notionProperty": "Price"
},
"steamDeckCompatibility": {
"enabled": true,
"notionProperty": "Steam Deck Compatibility"
},
"gameDevelopers": {
"enabled": true,
"notionProperty": "Developers"
},
"gamePublishers": {
"enabled": true,
"notionProperty": "Publishers"
}
},
"additionalProperties": false,
"minProperties": 1,
"properties": {
"gameName": {
"description": "The name of the game as it appears on Steam. The database field in Notion must be of type \"Text\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Name",
"isPageTitle": true
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the name of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the game name in.",
"type": "string",
"default": "Name"
},
"isPageTitle": {
"description": "Indicates if this property is the \"Title\" of the Notion page or not.",
"type": "boolean",
"default": true
}
},
"required": [
"enabled",
"notionProperty"
]
},
"coverImage": {
"description": "The cover image of the game as it appears on the shop page. Will be set as the cover image for the page if enabled.",
"type": "object",
"default": {
"enabled": true,
"default": "https://cdn.cloudflare.steamstatic.com/store/home/store_home_share.jpg"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the cover image of the game should be set in the database.",
"type": "boolean",
"default": true
},
"default": {
"description": "The URL of the image to use if the game does not have a cover image through any of the two API's.",
"type": "string",
"default": "https://cdn.cloudflare.steamstatic.com/store/home/store_home_share.jpg",
"format": "uri",
"pattern": "^https?://"
}
},
"required": [
"enabled"
]
},
"gameIcon": {
"description": "The icon of the game as it appears in the game library. Will be set as the icon for the page if enabled.",
"type": "object",
"default": {
"enabled": true,
"default": "https://help.steampowered.com/public/shared/images/responsive/share_steam_logo.png"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the icon of the game should be set in the database.",
"type": "boolean",
"default": true
},
"default": {
"description": "The URL of the image to use if the game does not have an icon through any of the two API's.",
"type": "string",
"default": "https://help.steampowered.com/public/shared/images/responsive/share_steam_logo.png",
"format": "uri",
"pattern": "^https?://"
}
},
"required": [
"enabled"
]
},
"releaseDate": {
"description": "The release date of the game. The database field in Notion must be of type \"Date\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Release Date"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the release date of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the release date in.",
"type": "string",
"default": "Release Date"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"reviewScore": {
"description": "The user review score for the game, formatted as one of a number of options. The database field in Notion must match the type defined by the chosen \"format\".",
"type": "object",
"default": {
"enabled": true,
"format": "percentage",
"notionProperty": "Review Score"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the user review score should be set in the database.",
"type": "boolean",
"default": true
},
"format": {
"description": "How the review score should be formatted.",
"type": "string",
"default": "percentage",
"oneOf": [
{
"const": "percentage",
"title": "Notion database field type: \"Number\". A percentage value formatted as a float from 0.00-1.00."
},
{
"const": "sentiment",
"title": "Notion database field type: \"Select\". A sentiment value such as \"Overwhelmingly Positive\" or \"Mixed\"."
},
{
"const": "total",
"title": "Notion database field type: \"Number\". The total number of reviews submitted for the game, across all languages."
},
{
"const": "positive",
"title": "Notion database field type: \"Number\". The total number of positive reviews submitted for the game, across all languages."
},
{
"const": "negative",
"title": "Notion database field type: \"Number\". The total number of negative reviews submitted for the game, across all languages."
},
{
"const": "positive/negative",
"title": "Notion database field type: \"Text\". The total number of positive and negative reviews submitted for the game, across all languages, formatted as \"{numPositive} positive / {numNegative} negative\"."
}
]
},
"notionProperty": {
"description": "The name of the Notion property to set the user review score in.",
"type": "string",
"default": "Review Score"
}
},
"required": [
"enabled",
"format",
"notionProperty"
]
},
"tags": {
"description": "The user-defined tags of the game as they can be seen on the store page. The database field in Notion must be of type \"Multi-select\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Tags",
"tagLanguage": "english"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the tags of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the tags in. This field must be of type \"multi-select\".",
"type": "string",
"default": "Tags"
},
"tagLanguage": {
"description": "The language of the tags, e.g. \"english\" or \"spanish\".",
"type": "string",
"default": "english"
}
},
"required": [
"enabled",
"notionProperty",
"tagLanguage"
]
},
"gameDescription": {
"description": "The short description of the game as it appears on the store page. The database field in Notion must be of type \"Text\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Description"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the description of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the description in.",
"type": "string",
"default": "Description"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"storePage": {
"description": "The URL to the store page of the game. The database field in Notion must be of type \"URL\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Store Page"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the store page URL should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the store page URL in.",
"type": "string",
"default": "Store Page"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"gamePrice": {
"description": "The price of the game on Steam. Does not account for current sales or discounts (as this data would be outdated too quickly). The currency depends on your current country. The database field in Notion must be of type \"Number\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Price"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the price of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the price in.",
"type": "string",
"default": "Price"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"steamDeckCompatibility": {
"description": "The Steam Deck Compatibility score, which can be one of \"Verified\", \"Playable\", \"Unsupported\" or \"Unknown\". The database field in Notion must be of type \"Select\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Steam Deck Compatibility"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the Steam Deck compatibility should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the Steam Deck compatibility in.",
"type": "string",
"default": "Steam Deck Compatibility"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"gameDevelopers": {
"description": "The developer(s) of the game. The database field in Notion must be of type \"Multi-select\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Developers"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the developer(s) of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the developer(s) in.",
"type": "string",
"default": "Developers"
}
},
"required": [
"enabled",
"notionProperty"
]
},
"gamePublishers": {
"description": "The publisher(s) of the game. The database field in Notion must be of type \"Multi-select\".",
"type": "object",
"default": {
"enabled": true,
"notionProperty": "Publishers"
},
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Whether or not the publisher(s) of the game should be set in the database.",
"type": "boolean",
"default": true
},
"notionProperty": {
"description": "The name of the Notion property to set the publisher(s) in.",
"type": "string",
"default": "Publishers"
}
},
"required": [
"enabled",
"notionProperty"
]
}
}
}
},
"required": [
"notionIntegrationKey",
"notionDatabaseId",
"updateInterval",
"steamAppIdProperty",
"gameProperties"
]
}