-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-types.yaml
638 lines (555 loc) · 14.3 KB
/
01-types.yaml
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: x-api-key
schemas:
User:
description: >
Represents an interactive user account.
A user may have one or more projects.
This resource type is not available via the API.
type: object
properties:
user_id:
type: string
description: User ID
x-tags:
- read-only
email:
type: string
description: User email address
format: email
display:
type: string
description: User display name
minLength: 1
maxLength: 255
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
description: Date and time of last update
format: date-time
x-default: now()
x-tags:
- read-only
deleted:
type: string
description: Date and time of deletion
format: date-time
nullable: true
x-tags:
- read-only
Project:
description: >
Represents a user project.
This resource type is not available via the API.
type: object
properties:
project_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Project ID
x-tags:
- read-only
user_id:
type: string
description: Related user ID
x-tags:
- write-once
display:
type: string
minLength: 1
maxLength: 255
description: Project display name
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
format: date-time
description: Date and time of last update
x-default: now()
x-tags:
- read-only
deleted:
type: string
format: date-time
nullable: true
description: Date and time of deletion
x-tags:
- read-only
extra:
type: object
nullable: true
description: Arbitrary application data
ApiKey:
description: >
Represents a project API key.
This resource type is not available via the API.
type: object
properties:
api_key_id:
type: string
minLength: 36
maxLength: 36
description: API Key ID
x-tags:
- read-only
project_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related project ID
x-tags:
- write-once
display:
type: string
minLength: 1
maxLength: 255
description: API Key display name
capability:
type: string
enum:
- r
- rw
description: API Key capability
deactivated:
type: string
format: date-time
nullable: true
description: Date and time of most recent deactivation
last_used:
type: string
format: date-time
nullable: true
description: Date and time of most recent use
x-tags:
- read-only
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
format: date-time
description: Date and time of last update
x-default: now()
x-tags:
- read-only
deleted:
type: string
format: date-time
nullable: true
description: Date and time of deletion
x-tags:
- read-only
Achievement:
description: >
Represents a project achievement definition.
type: object
x-resource-name: achievement
properties:
achievement_id:
type: string
format: ulid
default: gen_ulid()
minLength: 26
maxLength: 26
description: Achievement ID
x-tags:
- read-only
project_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related project ID
x-tags:
- write-once
display:
type: string
minLength: 1
maxLength: 255
description: Achievement display name
goal:
type: integer
minimum: 1
description: Achievement goal
repeats:
type: integer
minimum: 0
description: Achievement repeats; zero for unlimited
locked_image:
type: string
nullable: true
description: Achievement locked or non-obtained image
unlocked_image:
type: string
nullable: true
description: Achievement unlocked or obtained image
position:
type: integer
minimum: 1
default: 1
description: Achievement position within project
public:
type: boolean
default: false
description: Achievement public flag
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
format: date-time
description: Date and time of last update
x-default: now()
x-tags:
- read-only
deleted:
type: string
format: date-time
nullable: true
description: Date and time of deletion
x-tags:
- read-only
extra:
type: object
nullable: true
description: Arbitrary application data
Participant:
description: >
Represents a project participant definition.
type: object
x-resource-name: participant
properties:
participant_id:
type: string
format: ulid
default: gen_ulid()
minLength: 26
maxLength: 26
description: Participant ID
x-tags:
- read-only
project_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related project ID
x-tags:
- write-once
display:
type: string
minLength: 1
maxLength: 255
description: Participant display name
external_id:
type: string
description: Participant external ID
image:
type: string
nullable: true
description: Participant image
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
format: date-time
description: Date and time of last update
x-default: now()
x-tags:
- read-only
deleted:
type: string
format: date-time
nullable: true
description: Date and time of deletion
x-tags:
- read-only
extra:
type: object
nullable: true
description: Arbitrary application data
Scoreboard:
description: >
Represents a project scoreboard definition.
type: object
x-resource-name: scoreboard
properties:
scoreboard_id:
type: string
format: ulid
default: gen_ulid()
minLength: 26
maxLength: 26
description: Scoreboard ID
x-tags:
- read-only
project_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related project ID
x-tags:
- write-once
display:
type: string
minLength: 1
maxLength: 255
description: Scoreboard display name
rank_dir:
type: string
enum:
- asc
- desc
description: Scoreboard rank direction
public:
type: boolean
default: false
description: Scoreboard public flag
created:
type: string
format: date-time
description: Date and time of creation
x-default: now()
x-tags:
- read-only
updated:
type: string
format: date-time
description: Date and time of last update
x-default: now()
x-tags:
- read-only
deleted:
type: string
format: date-time
nullable: true
description: Date and time of deletion
x-tags:
- read-only
extra:
type: object
description: Arbitrary application data
nullable: true
Progress:
description: >
Represents an achievement progress record.
type: object
properties:
progress_id:
type: integer
description: Progress ID
x-tags:
- read-only
achievement_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related achievement ID
x-tags:
- write-once
participant_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related participant ID
x-tags:
- write-once
value:
type: integer
description: Progress value
recorded:
type: string
format: date-time
nullable: true
description: Date and time progress recorded
x-default: now()
x-tags:
- write-once
Score:
description: >
Represents a scoreboard score record.
type: object
properties:
score_id:
type: integer
description: Score ID
x-tags:
- read-only
scoreboard_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related scoreboard ID
x-tags:
- write-once
participant_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Related participant ID
x-tags:
- write-once
value:
type: integer
description: Score value
recorded:
type: string
format: date-time
nullable: true
description: Date and time score recorded
x-default: now()
x-tags:
- write-once
AchievementLeaderboardItem:
type: object
properties:
participant:
type: object
$ref: '#/components/schemas/Participant'
progress:
type: integer
iterations:
type: integer
ParticipantProgressItem:
type: object
properties:
achievement:
type: object
$ref: '#/components/schemas/Achievement'
progress:
type: integer
iterations:
type: integer
ParticipantScoreItem:
type: object
properties:
scoreboard:
type: object
$ref: '#/components/schemas/Scoreboard'
rank:
type: integer
total:
type: integer
ScoreboardScoreItem:
type: object
properties:
participant_id:
type: string
format: ulid
participant:
type: object
$ref: '#/components/schemas/Participant'
rank:
type: integer
total:
type: integer
AchievementLeaderboardResponse:
type: object
properties:
achievement_leaderboard:
type: array
items:
$ref : '#/components/schemas/AchievementLeaderboardItem'
AchievementProgressResponse:
type: object
properties:
insert_progress_one:
type: object
$ref: '#/components/schemas/Progress'
ParticipantProgressResponse:
type: object
properties:
participant_progress:
type: array
items:
$ref: '#/components/schemas/ParticipantProgressItem'
ParticipantScoresResponse:
type: object
properties:
participant_scores:
type: array
items:
$ref: '#/components/schemas/ParticipantScoreItem'
ScoreboardScoreResponse:
type: object
properties:
insert_score_one:
type: object
$ref: '#/components/schemas/Score'
ScoreboardScoresResponse:
type: object
properties:
scoreboard_scores:
type: array
items:
$ref: '#/components/schemas/ScoreboardScoreItem'
AchievementProgressRequest:
type: object
properties:
participant_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Participant ID
value:
type: integer
description: Progress value
recorded:
type: string
format: date-time
nullable: true
description: Date and time progress recorded
ScoreboardScoreRequest:
type: object
properties:
participant_id:
type: string
format: ulid
minLength: 26
maxLength: 26
description: Participant ID
value:
type: integer
description: Score value
recorded:
type: string
format: date-time
nullable: true
description: Date and time score recorded