-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
858 lines (832 loc) · 22.5 KB
/
openapi.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
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
openapi: 3.0.0
info:
title: Chat Application APIs
description: A set of APIs for managing members, channels, and messages in a chat application.
version: "1.0.0"
servers:
- url: https://api.example.com/v1
description: Production server
tags:
- name: Members
- name: Channels
- name: Messages
paths:
/members:
post:
tags:
- Members
summary: Create a new member
description: Create a new member in the `/members` table.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MemberCreateRequest'
responses:
'201':
description: Member created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Member'
'400':
description: Bad Request
/members/{memberId}/deactivate:
patch:
tags:
- Members
summary: Deactivate a member
description: Deactivates a member, changing their `isActive` state to `false` or removing any access privileges.
parameters:
- in: path
name: memberId
required: true
schema:
type: string
format: uuid
description: The GUID of the member
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason for deactivation
example:
reason: "Member requested account deactivation"
responses:
'200':
description: Member deactivated successfully
'404':
description: Member not found
/channels:
post:
tags:
- Channels
summary: Create a new channel and optionally add members
description: Create a new channel in the `/channels` table. You can also provide an array of member IDs to add them upon creation.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ChannelCreateRequest'
responses:
'201':
description: Channel created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Channel'
'400':
description: Bad Request
/channels/{channelId}/members:
post:
tags:
- Channels
summary: Add members to an existing channel
description: Add one or more members to the specified channel in the `/sessionMembers` table.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
description: The GUID of the channel
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SessionMembersCreateRequest'
responses:
'200':
description: Members added to the channel
'400':
description: Bad Request
'404':
description: Channel not found
/channels/{channelId}/deactivate:
patch:
tags:
- Channels
summary: Deactivate a channel
description: Deactivates a channel, changing its `isActive` state to `false` or preventing further use.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
description: The GUID of the channel
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason for channel deactivation
example:
reason: "Channel is no longer needed"
responses:
'200':
description: Channel deactivated successfully
'404':
description: Channel not found
/channels/{channelId}/messages:
post:
tags:
- Messages
summary: Add a message to a channel
description: Add a new message to the `/messages` table for the specified channel.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
description: The GUID of the channel
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MessageCreateRequest'
responses:
'201':
description: Message created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'400':
description: Bad Request
'404':
description: Channel not found
/channels/{channelId}/members/{memberId}:
delete:
tags:
- Channels
summary: Remove a member from a channel
description: Removes the specified member from the given channel, effectively deleting their `sessionMembers` record.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: memberId
required: true
schema:
type: string
format: uuid
responses:
'204':
description: Member removed from the channel (no content returned)
'404':
description: Channel or Member not found
/channels/{channelId}/messages/{messageId}/reply:
post:
tags:
- Messages
summary: Reply to an existing message
description: Create a new message that references a parent message in a thread.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MessageReplyRequest'
responses:
'201':
description: Reply message created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'400':
description: Bad Request
'404':
description: Channel or message not found
/channels/{channelId}/members/{memberId}/admin:
patch:
tags:
- Channels
summary: Mark a member as channel admin
description: Updates the `sessionMembers` record to set `isAdmin` to true for the specified member in the channel.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
description: The GUID of the channel
- in: path
name: memberId
required: true
schema:
type: string
format: uuid
description: The GUID of the member
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason or note for granting admin privileges
example:
reason: "Promoted to admin for channel moderation"
responses:
'200':
description: Member marked as channel admin
content:
application/json:
schema:
type: object
properties:
memberId:
type: string
format: uuid
isAdmin:
type: boolean
example:
memberId: "4bdc4e99-8aad-456b-a849-46defc60feb5"
isAdmin: true
'404':
description: Channel or Member not found
/channels/{channelId}/messages/{messageId}/bind:
post:
tags:
- Messages
summary: Bind one message to another
description: Bind a message (e.g., attach text to audio) to another message by specifying a BindedMessageID.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MessageBindRequest'
responses:
'200':
description: Message bound successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'400':
description: Bad Request
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}:
delete:
tags:
- Messages
summary: Delete a message
description: Soft delete or remove the message by setting `IsDeleted` to true in the `/messages` table.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
responses:
'204':
description: Message deleted successfully (no content)
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}/mask:
patch:
tags:
- Messages
summary: Mask the content of a message
description: Update a message by setting `IsMaskedText` to true.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason or note why this message is being masked
example:
reason: "Contains sensitive information"
responses:
'200':
description: Message masked successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}/hide:
patch:
tags:
- Messages
summary: Hide a message
description: Update a message by setting `IsHidden` to true (usually done by a system or moderator).
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason or note why this message is being hidden
example:
reason: "Violated community guidelines"
responses:
'200':
description: Message hidden successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}/unmask:
patch:
tags:
- Messages
summary: Unmask a message
description: Update a message by setting `IsMaskedText` to false.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
reason:
type: string
description: Optional reason or note for unmasking
example:
reason: "User requested content to be visible"
responses:
'200':
description: Message unmasked successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}/delivered:
post:
tags:
- Messages
summary: Mark message as delivered to certain members
description: Add one or more member IDs to the `DeliveredTo` array in the message record.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
memberIds:
type: array
items:
type: string
format: uuid
required:
- memberIds
responses:
'200':
description: Delivered to updated
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'400':
description: Bad Request
'404':
description: Channel or message not found
/channels/{channelId}/messages/{messageId}/seen:
post:
tags:
- Messages
summary: Mark message as seen by certain members
description: Add one or more member IDs to the `SeenBy` array in the message record.
parameters:
- in: path
name: channelId
required: true
schema:
type: string
format: uuid
- in: path
name: messageId
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
memberIds:
type: array
items:
type: string
format: uuid
required:
- memberIds
responses:
'200':
description: SeenBy updated
content:
application/json:
schema:
$ref: '#/components/schemas/Message'
'400':
description: Bad Request
'404':
description: Channel or message not found
components:
schemas:
# ============== MEMBERS ==============
MemberCreateRequest:
type: object
properties:
name:
type: string
nickname:
type: string
type:
type: string
description: Member type, e.g. admin, user, etc.
tag:
type: string
required:
- name
example:
name: John Doe
nickname: johnny
type: user
tag: developer
Member:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
nickname:
type: string
type:
type: string
tag:
type: string
createdAt:
type: string
format: date-time
example:
id: 123e4567-e89b-12d3-a456-426614174000
name: John Doe
nickname: johnny
type: user
tag: developer
createdAt: 2024-01-01T00:00:00Z
# ============== CHANNELS ==============
ChannelCreateRequest:
type: object
properties:
name:
type: string
description:
type: string
visibility:
type: string
enum: [Private, Internal, Public]
createdBy:
type: string
format: uuid
type:
type: string
description: Channel type, e.g. text, voice
tag:
type: string
members:
type: array
description: Optional array of member IDs to add to the channel
items:
type: string
format: uuid
required:
- name
- visibility
- createdBy
example:
name: Dev Channel
description: Channel for dev discussions
visibility: Private
createdBy: 123e4567-e89b-12d3-a456-426614174000
type: text
tag: project
members:
- 2f8b763b-4be1-45ef-8fd4-6626a5403ee6
- 4bdc4e99-8aad-456b-a849-46defc60feb5
Channel:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
description:
type: string
visibility:
type: string
enum: [Private, Internal, Public]
createdBy:
type: string
format: uuid
type:
type: string
tag:
type: string
createdAt:
type: string
format: date-time
example:
id: 2fa11950-c4d8-4ccb-8ab9-173c8cb14b18
name: Dev Channel
description: Channel for dev discussions
visibility: Private
createdBy: 123e4567-e89b-12d3-a456-426614174000
type: text
tag: project
createdAt: 2024-01-01T00:00:00Z
# ============== SESSION MEMBERS ==============
SessionMembersCreateRequest:
type: object
properties:
memberIds:
type: array
items:
type: string
format: uuid
isAdmin:
type: boolean
default: false
isModerator:
type: boolean
default: false
accessKey:
type: string
description: Optional key if special access is needed
role:
type: string
tag:
type: string
isActive:
type: boolean
default: true
ordinal:
type: integer
description: Ordering in the session
required:
- memberIds
example:
memberIds:
- 2f8b763b-4be1-45ef-8fd4-6626a5403ee6
- 4bdc4e99-8aad-456b-a849-46defc60feb5
isAdmin: false
isModerator: false
accessKey: "somespecialkey"
role: developer
tag: randomTag
isActive: true
ordinal: 1
# ============== MESSAGES ==============
MessageCreateRequest:
type: object
properties:
text:
type: string
payload:
type: string
parentId:
type: string
format: uuid
nullable: true
sessionId:
type: string
format: uuid
createdAt:
type: string
format: date-time
required:
- text
- sessionId
example:
text: Hello world
payload: '{"attachment":"image.png"}'
parentId: null
sessionId: 1bba5e2f-d61d-4898-8f6c-c1b3eca47d4f
createdAt: 2024-01-01T00:00:00Z
MessageReplyRequest:
type: object
properties:
text:
type: string
payload:
type: string
sessionId:
type: string
format: uuid
required:
- text
- sessionId
example:
text: This is a reply
payload: '{"some":"value"}'
sessionId: 1bba5e2f-d61d-4898-8f6c-c1b3eca47d4f
MessageBindRequest:
type: object
properties:
bindedMessageId:
type: string
format: uuid
required:
- bindedMessageId
example:
bindedMessageId: 3c463bfc-5270-41d9-a5c2-ef9fa1af5620
Message:
type: object
properties:
id:
type: string
format: uuid
text:
type: string
payload:
type: string
parentId:
type: string
format: uuid
nullable: true
bindedMessageId:
type: string
format: uuid
nullable: true
isHidden:
type: boolean
default: false
isDeleted:
type: boolean
default: false
isEdited:
type: boolean
default: false
isMaskedText:
type: boolean
default: false
messageLogs:
type: string
description: JSON array string of logs (edited, deleted, etc.)
deliveredTo:
type: array
items:
type: string
format: uuid
seenBy:
type: array
items:
type: string
format: uuid
sessionId:
type: string
format: uuid
createdAt:
type: string
format: date-time
example:
id: 7b4bdfed-ae42-4ece-8c41-053d31feb0fd
text: "Hello world"
payload: '{"attachment":"image.png"}'
parentId: null
bindedMessageId: null
isHidden: false
isDeleted: false
isEdited: false
isMaskedText: false
messageLogs: '[{"action":"created","timestamp":"2024-01-01T00:00:00Z"}]'
deliveredTo:
- 123e4567-e89b-12d3-a456-426614174000
seenBy:
- 2f8b763b-4be1-45ef-8fd4-6626a5403ee6
sessionId: 1bba5e2f-d61d-4898-8f6c-c1b3eca47d4f
createdAt: 2024-01-01T00:00:00Z