-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglossary.yml
More file actions
522 lines (506 loc) · 12.2 KB
/
glossary.yml
File metadata and controls
522 lines (506 loc) · 12.2 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
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
entities:
User:
description: Core user entity.
attributes:
ID:
type: uuid
description: Unique identifier for the user.
primary_key: true
checks:
- name: not_null
- name: unique
Username:
type: varchar
description: Unique username.
checks:
- name: not_null
- name: unique
Name:
type: varchar
description: Display name.
checks:
- name: not_null
Email:
type: varchar
description: User email address.
Password:
type: varchar
description: Hashed password.
IsDonator:
type: boolean
description: Flag indicating if the user is a donator.
checks:
- name: not_null
CreatedAt:
type: timestamp
description: Creation timestamp.
UpdatedAt:
type: timestamp
description: Last update timestamp.
Character:
description: RPG character associated with a user.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
UserID:
type: uuid
description: Foreign key to User.
checks:
- name: not_null
Experience:
type: integer
description: Character experience points.
checks:
- name: not_null
- name: positive
Reputation:
type: integer
description: Character reputation points.
checks:
- name: not_null
DailyBonusClaimedAt:
type: timestamp
description: Timestamp of last daily bonus claim.
Provider:
description: OAuth provider link for a user.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
UserID:
type: uuid
description: Foreign key to User.
checks:
- name: not_null
Provider:
type: varchar
description: Name of the provider (e.g., discord).
checks:
- name: not_null
ProviderID:
type: varchar
description: Unique ID from the provider.
checks:
- name: not_null
Email:
type: varchar
description: Email associated with the provider account.
Badge:
description: Achievement badge.
attributes:
ID:
type: bigint
primary_key: true
checks:
- name: not_null
- name: unique
Name:
type: varchar
description: Name of the badge.
checks:
- name: not_null
Description:
type: text
description: Description of the badge.
RedeemCode:
type: varchar
description: Code to redeem the badge.
checks:
- name: not_null
Active:
type: boolean
description: Whether the badge is active.
checks:
- name: not_null
Meeting:
description: Scheduled meeting.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
AdminID:
type: uuid
description: User ID of the meeting admin.
checks:
- name: not_null
MeetingTypeID:
type: bigint
description: ID of the meeting type.
checks:
- name: not_null
StartsAt:
type: timestamp
description: Start time of the meeting.
checks:
- name: not_null
EndsAt:
type: timestamp
description: End time of the meeting.
Content:
type: text
description: Meeting content/description.
Message:
description: Chat message log.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
ProviderID:
type: uuid
description: Provider ID of the sender.
checks:
- name: not_null
ProviderMessageID:
type: varchar
description: ID of the message from the provider.
SeasonID:
type: integer
description: ID of the season.
checks:
- name: not_null
ChannelID:
type: varchar
description: ID of the channel.
Content:
type: text
description: Message content.
checks:
- name: not_null
ObtainedExperience:
type: integer
description: XP gained from the message.
checks:
- name: not_null
SentAt:
type: timestamp
description: Timestamp when message was sent.
VoiceMessage:
description: Voice activity log.
attributes:
ID:
type: bigint
primary_key: true
checks:
- name: not_null
- name: unique
ProviderID:
type: uuid
description: Provider ID of the user.
checks:
- name: not_null
SeasonID:
type: integer
description: ID of the season.
checks:
- name: not_null
ChannelName:
type: varchar
description: Name of the voice channel.
checks:
- name: not_null
State:
type: varchar
description: State of the voice activity.
checks:
- name: not_null
ObtainedExperience:
type: integer
description: XP gained from voice activity.
checks:
- name: not_null
Feedback:
description: User feedback.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
SenderID:
type: uuid
description: User ID of the sender.
checks:
- name: not_null
TargetID:
type: uuid
description: User ID of the target (if applicable).
checks:
- name: not_null
Type:
type: varchar
description: Type of feedback.
checks:
- name: not_null
Message:
type: text
description: Feedback message.
checks:
- name: not_null
FeedbackReview:
description: Staff review of a feedback.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
FeedbackID:
type: uuid
description: ID of the feedback being reviewed.
checks:
- name: not_null
StaffID:
type: uuid
description: User ID of the staff member.
checks:
- name: not_null
Status:
type: varchar
description: Status of the review.
checks:
- name: not_null
Reason:
type: text
description: Reason for the status.
ReceivedAt:
type: timestamp
description: Timestamp when review was received.
checks:
- name: not_null
Season:
description: Competitive season.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
Name:
type: varchar
description: Season name.
checks:
- name: not_null
Description:
type: text
description: Season description.
checks:
- name: not_null
StartedAt:
type: timestamp
description: Start date.
EndedAt:
type: timestamp
description: End date.
MessagesCount:
type: integer
description: Total messages in season.
ParticipantsCount:
type: integer
description: Total participants.
MeetingCount:
type: integer
description: Total meetings.
BadgesCount:
type: integer
description: Total badges awarded.
SeasonRanking:
description: Character ranking in a season.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
SeasonID:
type: varchar
description: ID of the season.
checks:
- name: not_null
CharacterID:
type: uuid
description: ID of the character.
checks:
- name: not_null
RankingPosition:
type: integer
description: Rank position.
checks:
- name: not_null
Level:
type: integer
description: Character level at end of season.
checks:
- name: not_null
Experience:
type: integer
description: Total XP.
checks:
- name: not_null
MessagesCount:
type: integer
description: Messages sent by character.
BadgesCount:
type: integer
description: Badges earned by character.
MeetingsCount:
type: integer
description: Meetings attended by character.
CharacterBadge:
description: Badge earned by a character.
attributes:
CharacterID:
type: uuid
description: ID of the character.
checks:
- name: not_null
BadgeID:
type: bigint
description: ID of the badge.
checks:
- name: not_null
ClaimedAt:
type: timestamp
description: Timestamp when badge was claimed.
checks:
- name: not_null
UserAddress:
description: User physical address.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
UserID:
type: uuid
description: Foreign key to User.
checks:
- name: not_null
Country:
type: varchar
description: Country code.
State:
type: varchar
description: State code.
City:
type: varchar
description: City name.
ZipCode:
type: varchar
description: Zip code.
UserInformation:
description: Extended user profile information.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
UserID:
type: uuid
description: Foreign key to User.
checks:
- name: not_null
Name:
type: varchar
description: Full name.
Nickname:
type: varchar
description: Nickname.
LinkedinURL:
type: varchar
description: LinkedIn profile URL.
GithubURL:
type: varchar
description: GitHub profile URL.
Birthdate:
type: date
description: Date of birth.
About:
type: text
description: About me text.
MeetingType:
description: Type of meeting.
attributes:
ID:
type: bigint
primary_key: true
checks:
- name: not_null
- name: unique
Name:
type: varchar
description: Name of the meeting type.
checks:
- name: not_null
WeekDay:
type: integer
description: Day of the week.
checks:
- name: not_null
StartAt:
type: time
description: Start time.
checks:
- name: not_null
MeetingParticipant:
description: Participant in a meeting.
attributes:
MeetingID:
type: uuid
description: Foreign key to Meeting.
checks:
- name: not_null
UserID:
type: uuid
description: Foreign key to User.
checks:
- name: not_null
AttendAt:
type: timestamp
description: Timestamp of attendance.
checks:
- name: not_null
CharacterLevelingLog:
description: Log of character level ups.
attributes:
ID:
type: uuid
primary_key: true
checks:
- name: not_null
- name: unique
SeasonID:
type: integer
description: ID of the season.
checks:
- name: not_null
CharacterID:
type: uuid
description: ID of the character.
checks:
- name: not_null
Level:
type: integer
description: Level reached.
checks:
- name: not_null