-
Notifications
You must be signed in to change notification settings - Fork 39
/
eventsub_subscriptions.json
4097 lines (4097 loc) · 145 KB
/
eventsub_subscriptions.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
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
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"subscription_type": "Channel Update",
"name": "channel.update",
"version": "1",
"description": "A broadcaster updates their channel properties e.g., category, title, mature flag, broadcast, or language.",
"scope_required": null,
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Update",
"description": "A broadcaster updates their channel properties e.g., category, title, mature flag, broadcast, or language.",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcasters user ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The broadcasters user login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The broadcasters user display name.",
"type": "string"
},
"title": {
"description": "The channels stream title.",
"type": "string"
},
"language": {
"description": "The channels broadcast language.",
"type": "string"
},
"category_id": {
"description": "The channels category ID.",
"type": "string"
},
"category_name": {
"description": "The category name.",
"type": "string"
},
"is_mature": {
"description": "A boolean identifying whether the channel is flagged as mature. Valid values aretrueandfalse.",
"type": "boolean"
}
},
"required": [
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"title",
"language",
"category_id",
"category_name",
"is_mature"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Update request arguments",
"description": "Required and optional query parameters for requesting a Channel Update event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get updates for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Follow",
"name": "channel.follow",
"version": "2",
"description": "A specified channel receives a follow.",
"scope_required": "moderator:read:followers",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Follow",
"description": "A specified channel receives a follow.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID for the user now following the specified channel.",
"type": "string"
},
"user_login": {
"description": "The user login for the user now following the specified channel.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user now following the specified channel.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"followed_at": {
"description": "RFC3339 timestamp of when the follow occurred.",
"type": "string"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"followed_at"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Follow request arguments",
"description": "Required and optional query parameters for requesting a Channel Follow event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get follow notifications for.",
"type": "string"
},
"moderator_user_id": {
"description": "The ID of the moderator of the channel you want to get follow notifications for. If you have authorization from the broadcaster rather than a moderator, specify the broadcaster’s user ID here.",
"type": "string"
}
},
"required": ["broadcaster_user_id", "moderator_user_id"]
}
},
{
"subscription_type": "Channel Subscribe",
"name": "channel.subscribe",
"version": "1",
"description": "A notification when a specified channel receives a subscriber. This does not include resubscribes.",
"scope_required": "channel:read:subscriptions",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscribe",
"description": "A notification when a specified channel receives a subscriber. This does not include resubscribes.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID for the user who subscribed to the specified channel.",
"type": "string"
},
"user_login": {
"description": "The user login for the user who subscribed to the specified channel.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user who subscribed to the specified channel.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"tier": {
"description": "The tier of the subscription. Valid values are 1000, 2000, and 3000.",
"type": "string"
},
"is_gift": {
"description": "Whether the subscription is a gift.",
"type": "boolean"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"tier",
"is_gift"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscribe request arguments",
"description": "Required and optional query parameters for requesting a Channel Subscribe event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get subscribe notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Subscription End",
"name": "channel.subscription.end",
"version": "1",
"description": "A notification when a subscription to the specified channel ends.",
"scope_required": "channel:read:subscriptions",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription End",
"description": "A notification when a subscription to the specified channel ends.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID for the user whose subscription ended.",
"type": "string"
},
"user_login": {
"description": "The user login for the user whose subscription ended.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user whose subscription ended.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The broadcaster user ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The broadcaster display name.",
"type": "string"
},
"tier": {
"description": "The tier of the subscription that ended. Valid values are 1000, 2000, and 3000.",
"type": "string"
},
"is_gift": {
"description": "Whether the subscription was a gift.",
"type": "boolean"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"tier",
"is_gift"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription End request arguments",
"description": "Required and optional query parameters for requesting a Channel Subscription End event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get subscription end notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Subscription Gift",
"name": "channel.subscription.gift",
"version": "1",
"description": "A notification when a viewer gives a gift subscription to one or more users in the specified channel.",
"scope_required": "channel:read:subscriptions",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription Gift",
"description": "A notification when a viewer gives a gift subscription to one or more users in the specified channel.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID of the user who sent the subscription gift. Set to null if it was an anonymous subscription gift.",
"type": "string"
},
"user_login": {
"description": "The user login of the user who sent the gift. Set to null if it was an anonymous subscription gift.",
"type": "string"
},
"user_name": {
"description": "The user display name of the user who sent the gift. Set to null if it was an anonymous subscription gift.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The broadcaster user ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The broadcaster display name.",
"type": "string"
},
"total": {
"description": "The number of subscriptions in the subscription gift.",
"type": "integer"
},
"tier": {
"description": "The tier of subscriptions in the subscription gift.",
"type": "string"
},
"cumulative_total": {
"description": "The number of subscriptions gifted by this user in the channel. This value is null for anonymous gifts or if the gifter has opted out of sharing this information.",
"type": "integer"
},
"is_anonymous": {
"description": "Whether the subscription gift was anonymous.",
"type": "boolean"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"total",
"tier",
"cumulative_total",
"is_anonymous"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription Gift request arguments",
"description": "Required and optional query parameters for requesting a Channel Subscription Gift event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get subscription gift notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Subscription Message",
"name": "channel.subscription.message",
"version": "1",
"description": "A notification when a user sends a resubscription chat message in a specific channel.",
"scope_required": "channel:read:subscriptions",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription Message",
"description": "A notification when a user sends a resubscription chat message in a specific channel.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID of the user who sent a resubscription chat message.",
"type": "string"
},
"user_login": {
"description": "The user login of the user who sent a resubscription chat message.",
"type": "string"
},
"user_name": {
"description": "The user display name of the user who a resubscription chat message.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The broadcaster user ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The broadcaster display name.",
"type": "string"
},
"tier": {
"description": "The tier of the users subscription.",
"type": "string"
},
"message": {
"description": "An object that contains the resubscription message and emote information needed to recreate the message.",
"type": "object",
"properties": {
"text": {
"description": "The text of the resubscription chat message.",
"type": "string"
},
"emotes": {
"description": "An array that includes the emote ID and start and end positions for where the emote appears in the text.",
"type": "array",
"items": {
"type": "object",
"properties": {
"begin": {
"description": "The index of where the Emote starts in the text.",
"type": "integer"
},
"end": {
"description": "The index of where the Emote ends in the text.",
"type": "integer"
},
"id": {
"description": "The emote ID.",
"type": "string"
}
},
"required": ["begin", "end", "id"]
}
}
},
"required": ["text", "emotes"]
},
"cumulative_months": {
"description": "The total number of months the user has been subscribed to the channel.",
"type": "integer"
},
"streak_months": {
"description": "The number of consecutive months the users current subscription has been active. This value is null if the user has opted out of sharing this information.",
"type": "integer"
},
"duration_months": {
"description": "The month duration of the subscription.",
"type": "integer"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"tier",
"message",
"cumulative_months",
"streak_months",
"duration_months"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Subscription Message request arguments",
"description": "Required and optional query parameters for requesting a Channel Subscription Message event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get resubscription chat message notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Cheer",
"name": "channel.cheer",
"version": "1",
"description": "A user cheers on the specified channel.",
"scope_required": "bits:read",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Cheer",
"description": "A user cheers on the specified channel.",
"type": "object",
"properties": {
"is_anonymous": {
"description": "Whether the user cheered anonymously or not.",
"type": "boolean"
},
"user_id": {
"description": "The user ID for the user who cheered on the specified channel. This is null ifis_anonymousis true.",
"type": "string"
},
"user_login": {
"description": "The user login for the user who cheered on the specified channel. This is null ifis_anonymousis true.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user who cheered on the specified channel. This is null ifis_anonymousis true.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"message": {
"description": "The message sent with the cheer.",
"type": "string"
},
"bits": {
"description": "The number of bits cheered.",
"type": "integer"
}
},
"required": [
"is_anonymous",
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"message",
"bits"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Cheer request arguments",
"description": "Required and optional query parameters for requesting a Channel Cheer event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get cheer notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Raid",
"name": "channel.raid",
"version": "1",
"description": "A broadcaster raids another broadcasters channel.",
"scope_required": null,
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Raid",
"description": "A broadcaster raids another broadcasters channel.",
"type": "object",
"properties": {
"from_broadcaster_user_id": {
"description": "The broadcaster ID that created the raid.",
"type": "string"
},
"from_broadcaster_user_login": {
"description": "The broadcaster login that created the raid.",
"type": "string"
},
"from_broadcaster_user_name": {
"description": "The broadcaster display name that created the raid.",
"type": "string"
},
"to_broadcaster_user_id": {
"description": "The broadcaster ID that received the raid.",
"type": "string"
},
"to_broadcaster_user_login": {
"description": "The broadcaster login that received the raid.",
"type": "string"
},
"to_broadcaster_user_name": {
"description": "The broadcaster display name that received the raid.",
"type": "string"
},
"viewers": {
"description": "The number of viewers in the raid.",
"type": "integer"
}
},
"required": [
"from_broadcaster_user_id",
"from_broadcaster_user_login",
"from_broadcaster_user_name",
"to_broadcaster_user_id",
"to_broadcaster_user_login",
"to_broadcaster_user_name",
"viewers"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Raid request arguments",
"description": "Required and optional query parameters for requesting a Channel Raid event subscription",
"type": "object",
"properties": {
"from_broadcaster_user_id": {
"description": "The broadcaster user ID that created the channel raid you want to get notifications for. Use this parameter if you want to know when a specific broadcaster raids another broadcaster. The channel raid condition must include either from_broadcaster_user_id or to_broadcaster_user_id.",
"type": "string"
},
"to_broadcaster_user_id": {
"description": "The broadcaster user ID that received the channel raid you want to get notifications for. Use this parameter if you want to know when a specific broadcaster is raided by another broadcaster. The channel raid condition must include either from_broadcaster_user_id or to_broadcaster_user_id.",
"type": "string"
}
},
"required": []
}
},
{
"subscription_type": "Channel Ban",
"name": "channel.ban",
"version": "1",
"description": "A viewer is banned from the specified channel.",
"scope_required": "channel:moderate",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Ban",
"description": "A viewer is banned from the specified channel.",
"type": "object",
"properties": {
"user_id": {
"description": "The user ID for the user who was banned on the specified channel.",
"type": "string"
},
"user_login": {
"description": "The user login for the user who was banned on the specified channel.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user who was banned on the specified channel.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"moderator_user_id": {
"description": "The user ID of the issuer of the ban.",
"type": "string"
},
"moderator_user_login": {
"description": "The user login of the issuer of the ban.",
"type": "string"
},
"moderator_user_name": {
"description": "The user name of the issuer of the ban.",
"type": "string"
},
"reason": {
"description": "The reason behind the ban.",
"type": "string"
},
"ends_at": {
"description": "Will be null if permanent ban. If it is a timeout, this field shows when the timeout will end.",
"type": "string"
},
"is_permanent": {
"description": "Indicates whether the ban is permanent (true) or a timeout (false). If true, ends_at will be null.",
"type": "boolean"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"moderator_user_id",
"moderator_user_login",
"moderator_user_name",
"reason",
"ends_at",
"is_permanent"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Ban request arguments",
"description": "Required and optional query parameters for requesting a Channel Ban event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get ban notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Unban",
"name": "channel.unban",
"version": "1",
"description": "A viewer is unbanned from the specified channel.",
"scope_required": "channel:moderate",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Unban",
"description": "A viewer is unbanned from the specified channel.",
"type": "object",
"properties": {
"user_id": {
"description": "The user id for the user who was unbanned on the specified channel.",
"type": "string"
},
"user_login": {
"description": "The user login for the user who was unbanned on the specified channel.",
"type": "string"
},
"user_name": {
"description": "The user display name for the user who was unbanned on the specified channel.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"moderator_user_id": {
"description": "The user ID of the issuer of the unban.",
"type": "string"
},
"moderator_user_login": {
"description": "The user login of the issuer of the unban.",
"type": "string"
},
"moderator_user_name": {
"description": "The user name of the issuer of the unban.",
"type": "string"
}
},
"required": [
"user_id",
"user_login",
"user_name",
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"moderator_user_id",
"moderator_user_login",
"moderator_user_name"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Unban request arguments",
"description": "Required and optional query parameters for requesting a Channel Unban event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get unban notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Moderator Add",
"name": "channel.moderator.add",
"version": "1",
"description": "Moderator privileges were added to a user on a specified channel.",
"scope_required": "moderation:read",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Moderator Add",
"description": "Moderator privileges were added to a user on a specified channel.",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"user_id": {
"description": "The user ID of the new moderator.",
"type": "string"
},
"user_login": {
"description": "The user login of the new moderator.",
"type": "string"
},
"user_name": {
"description": "The display name of the new moderator.",
"type": "string"
}
},
"required": [
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"user_id",
"user_login",
"user_name"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Moderator Add request arguments",
"description": "Required and optional query parameters for requesting a Channel Moderator Add event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get moderator addition notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Moderator Remove",
"name": "channel.moderator.remove",
"version": "1",
"description": "Moderator privileges were removed from a user on a specified channel.",
"scope_required": "moderation:read",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Moderator Remove",
"description": "Moderator privileges were removed from a user on a specified channel.",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"user_id": {
"description": "The user ID of the removed moderator.",
"type": "string"
},
"user_login": {
"description": "The user login of the removed moderator.",
"type": "string"
},
"user_name": {
"description": "The display name of the removed moderator.",
"type": "string"
}
},
"required": [
"broadcaster_user_id",
"broadcaster_user_login",
"broadcaster_user_name",
"user_id",
"user_login",
"user_name"
]
},
"condition_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Moderator Remove request arguments",
"description": "Required and optional query parameters for requesting a Channel Moderator Remove event subscription",
"type": "object",
"properties": {
"broadcaster_user_id": {
"description": "The broadcaster user ID for the channel you want to get moderator removal notifications for.",
"type": "string"
}
},
"required": ["broadcaster_user_id"]
}
},
{
"subscription_type": "Channel Points Custom Reward Add",
"name": "channel.channel_points_custom_reward.add",
"version": "1",
"description": "A custom channel points reward has been created for the specified channel.",
"scope_required": "channel:read:redemptions",
"event_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": null,
"title": "Channel Points Custom Reward Add",
"description": "A custom channel points reward has been created for the specified channel.",
"type": "object",
"properties": {
"id": {
"description": "The reward identifier.",
"type": "string"
},
"broadcaster_user_id": {
"description": "The requested broadcaster ID.",
"type": "string"
},
"broadcaster_user_login": {
"description": "The requested broadcaster login.",
"type": "string"
},
"broadcaster_user_name": {
"description": "The requested broadcaster display name.",
"type": "string"
},
"is_enabled": {
"description": "Is the reward currently enabled. If false, the reward wont show up to viewers.",
"type": "boolean"
},
"is_paused": {
"description": "Is the reward currently paused. If true, viewers cant redeem.",
"type": "boolean"
},
"is_in_stock": {
"description": "Is the reward currently in stock. If false, viewers cant redeem.",
"type": "boolean"
},
"title": {
"description": "The reward title.",
"type": "string"
},
"cost": {
"description": "The reward cost.",
"type": "integer"
},
"prompt": {
"description": "The reward description.",
"type": "string"
},
"is_user_input_required": {
"description": "Does the viewer need to enter information when redeeming the reward.",
"type": "boolean"
},
"should_redemptions_skip_request_queue": {
"description": "Should redemptions be set tofulfilledstatus immediately when redeemed and skip the request queue instead of the normalunfulfilledstatus.",
"type": "boolean"
},
"max_per_stream": {
"description": "Whether a maximum per stream is enabled and what the maximum is.",
"type": "object",
"properties": {
"is_enabled": {
"description": "Is the setting enabled.",
"type": "boolean"
},
"value": {
"description": "The max per stream limit.",
"type": "integer"
}