@volter/twin-github 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3601 @@
1
+ {
2
+ "type": "object",
3
+ "title": "Pull Request",
4
+ "description": "Pull requests let you tell others about changes you've pushed to a repository on GitHub. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.",
5
+ "properties": {
6
+ "url": {
7
+ "type": "string",
8
+ "format": "uri",
9
+ "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
10
+ },
11
+ "id": {
12
+ "type": "integer",
13
+ "format": "int64",
14
+ "example": 1
15
+ },
16
+ "node_id": {
17
+ "type": "string",
18
+ "example": "MDExOlB1bGxSZXF1ZXN0MQ=="
19
+ },
20
+ "html_url": {
21
+ "type": "string",
22
+ "format": "uri",
23
+ "example": "https://github.com/octocat/Hello-World/pull/1347"
24
+ },
25
+ "diff_url": {
26
+ "type": "string",
27
+ "format": "uri",
28
+ "example": "https://github.com/octocat/Hello-World/pull/1347.diff"
29
+ },
30
+ "patch_url": {
31
+ "type": "string",
32
+ "format": "uri",
33
+ "example": "https://github.com/octocat/Hello-World/pull/1347.patch"
34
+ },
35
+ "issue_url": {
36
+ "type": "string",
37
+ "format": "uri",
38
+ "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
39
+ },
40
+ "commits_url": {
41
+ "type": "string",
42
+ "format": "uri",
43
+ "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
44
+ },
45
+ "review_comments_url": {
46
+ "type": "string",
47
+ "format": "uri",
48
+ "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
49
+ },
50
+ "review_comment_url": {
51
+ "type": "string",
52
+ "example": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
53
+ },
54
+ "comments_url": {
55
+ "type": "string",
56
+ "format": "uri",
57
+ "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
58
+ },
59
+ "statuses_url": {
60
+ "type": "string",
61
+ "format": "uri",
62
+ "example": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
63
+ },
64
+ "number": {
65
+ "description": "Number uniquely identifying the pull request within its repository.",
66
+ "example": 42,
67
+ "type": "integer"
68
+ },
69
+ "state": {
70
+ "description": "State of this Pull Request. Either `open` or `closed`.",
71
+ "enum": [
72
+ "open",
73
+ "closed"
74
+ ],
75
+ "example": "open",
76
+ "type": "string"
77
+ },
78
+ "locked": {
79
+ "type": "boolean",
80
+ "example": true
81
+ },
82
+ "title": {
83
+ "description": "The title of the pull request.",
84
+ "example": "Amazing new feature",
85
+ "type": "string"
86
+ },
87
+ "user": {
88
+ "title": "Simple User",
89
+ "description": "A GitHub user.",
90
+ "type": "object",
91
+ "properties": {
92
+ "name": {
93
+ "nullable": true,
94
+ "type": "string"
95
+ },
96
+ "email": {
97
+ "nullable": true,
98
+ "type": "string"
99
+ },
100
+ "login": {
101
+ "type": "string",
102
+ "example": "octocat"
103
+ },
104
+ "id": {
105
+ "type": "integer",
106
+ "format": "int64",
107
+ "example": 1
108
+ },
109
+ "node_id": {
110
+ "type": "string",
111
+ "example": "MDQ6VXNlcjE="
112
+ },
113
+ "avatar_url": {
114
+ "type": "string",
115
+ "format": "uri",
116
+ "example": "https://github.com/images/error/octocat_happy.gif"
117
+ },
118
+ "gravatar_id": {
119
+ "type": "string",
120
+ "example": "41d064eb2195891e12d0413f63227ea7",
121
+ "nullable": true
122
+ },
123
+ "url": {
124
+ "type": "string",
125
+ "format": "uri",
126
+ "example": "https://api.github.com/users/octocat"
127
+ },
128
+ "html_url": {
129
+ "type": "string",
130
+ "format": "uri",
131
+ "example": "https://github.com/octocat"
132
+ },
133
+ "followers_url": {
134
+ "type": "string",
135
+ "format": "uri",
136
+ "example": "https://api.github.com/users/octocat/followers"
137
+ },
138
+ "following_url": {
139
+ "type": "string",
140
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
141
+ },
142
+ "gists_url": {
143
+ "type": "string",
144
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
145
+ },
146
+ "starred_url": {
147
+ "type": "string",
148
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
149
+ },
150
+ "subscriptions_url": {
151
+ "type": "string",
152
+ "format": "uri",
153
+ "example": "https://api.github.com/users/octocat/subscriptions"
154
+ },
155
+ "organizations_url": {
156
+ "type": "string",
157
+ "format": "uri",
158
+ "example": "https://api.github.com/users/octocat/orgs"
159
+ },
160
+ "repos_url": {
161
+ "type": "string",
162
+ "format": "uri",
163
+ "example": "https://api.github.com/users/octocat/repos"
164
+ },
165
+ "events_url": {
166
+ "type": "string",
167
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
168
+ },
169
+ "received_events_url": {
170
+ "type": "string",
171
+ "format": "uri",
172
+ "example": "https://api.github.com/users/octocat/received_events"
173
+ },
174
+ "type": {
175
+ "type": "string",
176
+ "example": "User"
177
+ },
178
+ "site_admin": {
179
+ "type": "boolean"
180
+ },
181
+ "starred_at": {
182
+ "type": "string",
183
+ "example": "\"2020-07-09T00:17:55Z\""
184
+ },
185
+ "user_view_type": {
186
+ "type": "string",
187
+ "example": "public"
188
+ }
189
+ },
190
+ "required": [
191
+ "avatar_url",
192
+ "events_url",
193
+ "followers_url",
194
+ "following_url",
195
+ "gists_url",
196
+ "gravatar_id",
197
+ "html_url",
198
+ "id",
199
+ "node_id",
200
+ "login",
201
+ "organizations_url",
202
+ "received_events_url",
203
+ "repos_url",
204
+ "site_admin",
205
+ "starred_url",
206
+ "subscriptions_url",
207
+ "type",
208
+ "url"
209
+ ]
210
+ },
211
+ "body": {
212
+ "type": "string",
213
+ "example": "Please pull these awesome changes",
214
+ "nullable": true
215
+ },
216
+ "labels": {
217
+ "type": "array",
218
+ "items": {
219
+ "type": "object",
220
+ "properties": {
221
+ "id": {
222
+ "type": "integer",
223
+ "format": "int64"
224
+ },
225
+ "node_id": {
226
+ "type": "string"
227
+ },
228
+ "url": {
229
+ "type": "string"
230
+ },
231
+ "name": {
232
+ "type": "string"
233
+ },
234
+ "description": {
235
+ "type": "string",
236
+ "nullable": true
237
+ },
238
+ "color": {
239
+ "type": "string"
240
+ },
241
+ "default": {
242
+ "type": "boolean"
243
+ }
244
+ },
245
+ "required": [
246
+ "id",
247
+ "node_id",
248
+ "url",
249
+ "name",
250
+ "description",
251
+ "color",
252
+ "default"
253
+ ]
254
+ }
255
+ },
256
+ "milestone": {
257
+ "title": "Milestone",
258
+ "description": "A collection of related issues and pull requests.",
259
+ "type": "object",
260
+ "properties": {
261
+ "url": {
262
+ "type": "string",
263
+ "format": "uri",
264
+ "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1"
265
+ },
266
+ "html_url": {
267
+ "type": "string",
268
+ "format": "uri",
269
+ "example": "https://github.com/octocat/Hello-World/milestones/v1.0"
270
+ },
271
+ "labels_url": {
272
+ "type": "string",
273
+ "format": "uri",
274
+ "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels"
275
+ },
276
+ "id": {
277
+ "type": "integer",
278
+ "example": 1002604
279
+ },
280
+ "node_id": {
281
+ "type": "string",
282
+ "example": "MDk6TWlsZXN0b25lMTAwMjYwNA=="
283
+ },
284
+ "number": {
285
+ "description": "The number of the milestone.",
286
+ "type": "integer",
287
+ "example": 42
288
+ },
289
+ "state": {
290
+ "description": "The state of the milestone.",
291
+ "example": "open",
292
+ "type": "string",
293
+ "enum": [
294
+ "open",
295
+ "closed"
296
+ ],
297
+ "default": "open"
298
+ },
299
+ "title": {
300
+ "description": "The title of the milestone.",
301
+ "example": "v1.0",
302
+ "type": "string"
303
+ },
304
+ "description": {
305
+ "type": "string",
306
+ "example": "Tracking milestone for version 1.0",
307
+ "nullable": true
308
+ },
309
+ "creator": {
310
+ "title": "Simple User",
311
+ "description": "A GitHub user.",
312
+ "type": "object",
313
+ "properties": {
314
+ "name": {
315
+ "nullable": true,
316
+ "type": "string"
317
+ },
318
+ "email": {
319
+ "nullable": true,
320
+ "type": "string"
321
+ },
322
+ "login": {
323
+ "type": "string",
324
+ "example": "octocat"
325
+ },
326
+ "id": {
327
+ "type": "integer",
328
+ "format": "int64",
329
+ "example": 1
330
+ },
331
+ "node_id": {
332
+ "type": "string",
333
+ "example": "MDQ6VXNlcjE="
334
+ },
335
+ "avatar_url": {
336
+ "type": "string",
337
+ "format": "uri",
338
+ "example": "https://github.com/images/error/octocat_happy.gif"
339
+ },
340
+ "gravatar_id": {
341
+ "type": "string",
342
+ "example": "41d064eb2195891e12d0413f63227ea7",
343
+ "nullable": true
344
+ },
345
+ "url": {
346
+ "type": "string",
347
+ "format": "uri",
348
+ "example": "https://api.github.com/users/octocat"
349
+ },
350
+ "html_url": {
351
+ "type": "string",
352
+ "format": "uri",
353
+ "example": "https://github.com/octocat"
354
+ },
355
+ "followers_url": {
356
+ "type": "string",
357
+ "format": "uri",
358
+ "example": "https://api.github.com/users/octocat/followers"
359
+ },
360
+ "following_url": {
361
+ "type": "string",
362
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
363
+ },
364
+ "gists_url": {
365
+ "type": "string",
366
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
367
+ },
368
+ "starred_url": {
369
+ "type": "string",
370
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
371
+ },
372
+ "subscriptions_url": {
373
+ "type": "string",
374
+ "format": "uri",
375
+ "example": "https://api.github.com/users/octocat/subscriptions"
376
+ },
377
+ "organizations_url": {
378
+ "type": "string",
379
+ "format": "uri",
380
+ "example": "https://api.github.com/users/octocat/orgs"
381
+ },
382
+ "repos_url": {
383
+ "type": "string",
384
+ "format": "uri",
385
+ "example": "https://api.github.com/users/octocat/repos"
386
+ },
387
+ "events_url": {
388
+ "type": "string",
389
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
390
+ },
391
+ "received_events_url": {
392
+ "type": "string",
393
+ "format": "uri",
394
+ "example": "https://api.github.com/users/octocat/received_events"
395
+ },
396
+ "type": {
397
+ "type": "string",
398
+ "example": "User"
399
+ },
400
+ "site_admin": {
401
+ "type": "boolean"
402
+ },
403
+ "starred_at": {
404
+ "type": "string",
405
+ "example": "\"2020-07-09T00:17:55Z\""
406
+ },
407
+ "user_view_type": {
408
+ "type": "string",
409
+ "example": "public"
410
+ }
411
+ },
412
+ "required": [
413
+ "avatar_url",
414
+ "events_url",
415
+ "followers_url",
416
+ "following_url",
417
+ "gists_url",
418
+ "gravatar_id",
419
+ "html_url",
420
+ "id",
421
+ "node_id",
422
+ "login",
423
+ "organizations_url",
424
+ "received_events_url",
425
+ "repos_url",
426
+ "site_admin",
427
+ "starred_url",
428
+ "subscriptions_url",
429
+ "type",
430
+ "url"
431
+ ],
432
+ "nullable": true
433
+ },
434
+ "open_issues": {
435
+ "type": "integer",
436
+ "example": 4
437
+ },
438
+ "closed_issues": {
439
+ "type": "integer",
440
+ "example": 8
441
+ },
442
+ "created_at": {
443
+ "type": "string",
444
+ "format": "date-time",
445
+ "example": "2011-04-10T20:09:31Z"
446
+ },
447
+ "updated_at": {
448
+ "type": "string",
449
+ "format": "date-time",
450
+ "example": "2014-03-03T18:58:10Z"
451
+ },
452
+ "closed_at": {
453
+ "type": "string",
454
+ "format": "date-time",
455
+ "example": "2013-02-12T13:22:01Z",
456
+ "nullable": true
457
+ },
458
+ "due_on": {
459
+ "type": "string",
460
+ "format": "date-time",
461
+ "example": "2012-10-09T23:39:01Z",
462
+ "nullable": true
463
+ }
464
+ },
465
+ "required": [
466
+ "closed_issues",
467
+ "creator",
468
+ "description",
469
+ "due_on",
470
+ "closed_at",
471
+ "id",
472
+ "node_id",
473
+ "labels_url",
474
+ "html_url",
475
+ "number",
476
+ "open_issues",
477
+ "state",
478
+ "title",
479
+ "url",
480
+ "created_at",
481
+ "updated_at"
482
+ ],
483
+ "nullable": true
484
+ },
485
+ "active_lock_reason": {
486
+ "type": "string",
487
+ "example": "too heated",
488
+ "nullable": true
489
+ },
490
+ "created_at": {
491
+ "type": "string",
492
+ "format": "date-time",
493
+ "example": "2011-01-26T19:01:12Z"
494
+ },
495
+ "updated_at": {
496
+ "type": "string",
497
+ "format": "date-time",
498
+ "example": "2011-01-26T19:01:12Z"
499
+ },
500
+ "closed_at": {
501
+ "type": "string",
502
+ "format": "date-time",
503
+ "example": "2011-01-26T19:01:12Z",
504
+ "nullable": true
505
+ },
506
+ "merged_at": {
507
+ "type": "string",
508
+ "format": "date-time",
509
+ "example": "2011-01-26T19:01:12Z",
510
+ "nullable": true
511
+ },
512
+ "merge_commit_sha": {
513
+ "type": "string",
514
+ "example": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
515
+ "nullable": true
516
+ },
517
+ "assignee": {
518
+ "title": "Simple User",
519
+ "description": "A GitHub user.",
520
+ "type": "object",
521
+ "properties": {
522
+ "name": {
523
+ "nullable": true,
524
+ "type": "string"
525
+ },
526
+ "email": {
527
+ "nullable": true,
528
+ "type": "string"
529
+ },
530
+ "login": {
531
+ "type": "string",
532
+ "example": "octocat"
533
+ },
534
+ "id": {
535
+ "type": "integer",
536
+ "format": "int64",
537
+ "example": 1
538
+ },
539
+ "node_id": {
540
+ "type": "string",
541
+ "example": "MDQ6VXNlcjE="
542
+ },
543
+ "avatar_url": {
544
+ "type": "string",
545
+ "format": "uri",
546
+ "example": "https://github.com/images/error/octocat_happy.gif"
547
+ },
548
+ "gravatar_id": {
549
+ "type": "string",
550
+ "example": "41d064eb2195891e12d0413f63227ea7",
551
+ "nullable": true
552
+ },
553
+ "url": {
554
+ "type": "string",
555
+ "format": "uri",
556
+ "example": "https://api.github.com/users/octocat"
557
+ },
558
+ "html_url": {
559
+ "type": "string",
560
+ "format": "uri",
561
+ "example": "https://github.com/octocat"
562
+ },
563
+ "followers_url": {
564
+ "type": "string",
565
+ "format": "uri",
566
+ "example": "https://api.github.com/users/octocat/followers"
567
+ },
568
+ "following_url": {
569
+ "type": "string",
570
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
571
+ },
572
+ "gists_url": {
573
+ "type": "string",
574
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
575
+ },
576
+ "starred_url": {
577
+ "type": "string",
578
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
579
+ },
580
+ "subscriptions_url": {
581
+ "type": "string",
582
+ "format": "uri",
583
+ "example": "https://api.github.com/users/octocat/subscriptions"
584
+ },
585
+ "organizations_url": {
586
+ "type": "string",
587
+ "format": "uri",
588
+ "example": "https://api.github.com/users/octocat/orgs"
589
+ },
590
+ "repos_url": {
591
+ "type": "string",
592
+ "format": "uri",
593
+ "example": "https://api.github.com/users/octocat/repos"
594
+ },
595
+ "events_url": {
596
+ "type": "string",
597
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
598
+ },
599
+ "received_events_url": {
600
+ "type": "string",
601
+ "format": "uri",
602
+ "example": "https://api.github.com/users/octocat/received_events"
603
+ },
604
+ "type": {
605
+ "type": "string",
606
+ "example": "User"
607
+ },
608
+ "site_admin": {
609
+ "type": "boolean"
610
+ },
611
+ "starred_at": {
612
+ "type": "string",
613
+ "example": "\"2020-07-09T00:17:55Z\""
614
+ },
615
+ "user_view_type": {
616
+ "type": "string",
617
+ "example": "public"
618
+ }
619
+ },
620
+ "required": [
621
+ "avatar_url",
622
+ "events_url",
623
+ "followers_url",
624
+ "following_url",
625
+ "gists_url",
626
+ "gravatar_id",
627
+ "html_url",
628
+ "id",
629
+ "node_id",
630
+ "login",
631
+ "organizations_url",
632
+ "received_events_url",
633
+ "repos_url",
634
+ "site_admin",
635
+ "starred_url",
636
+ "subscriptions_url",
637
+ "type",
638
+ "url"
639
+ ],
640
+ "nullable": true
641
+ },
642
+ "assignees": {
643
+ "type": "array",
644
+ "items": {
645
+ "title": "Simple User",
646
+ "description": "A GitHub user.",
647
+ "type": "object",
648
+ "properties": {
649
+ "name": {
650
+ "nullable": true,
651
+ "type": "string"
652
+ },
653
+ "email": {
654
+ "nullable": true,
655
+ "type": "string"
656
+ },
657
+ "login": {
658
+ "type": "string",
659
+ "example": "octocat"
660
+ },
661
+ "id": {
662
+ "type": "integer",
663
+ "format": "int64",
664
+ "example": 1
665
+ },
666
+ "node_id": {
667
+ "type": "string",
668
+ "example": "MDQ6VXNlcjE="
669
+ },
670
+ "avatar_url": {
671
+ "type": "string",
672
+ "format": "uri",
673
+ "example": "https://github.com/images/error/octocat_happy.gif"
674
+ },
675
+ "gravatar_id": {
676
+ "type": "string",
677
+ "example": "41d064eb2195891e12d0413f63227ea7",
678
+ "nullable": true
679
+ },
680
+ "url": {
681
+ "type": "string",
682
+ "format": "uri",
683
+ "example": "https://api.github.com/users/octocat"
684
+ },
685
+ "html_url": {
686
+ "type": "string",
687
+ "format": "uri",
688
+ "example": "https://github.com/octocat"
689
+ },
690
+ "followers_url": {
691
+ "type": "string",
692
+ "format": "uri",
693
+ "example": "https://api.github.com/users/octocat/followers"
694
+ },
695
+ "following_url": {
696
+ "type": "string",
697
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
698
+ },
699
+ "gists_url": {
700
+ "type": "string",
701
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
702
+ },
703
+ "starred_url": {
704
+ "type": "string",
705
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
706
+ },
707
+ "subscriptions_url": {
708
+ "type": "string",
709
+ "format": "uri",
710
+ "example": "https://api.github.com/users/octocat/subscriptions"
711
+ },
712
+ "organizations_url": {
713
+ "type": "string",
714
+ "format": "uri",
715
+ "example": "https://api.github.com/users/octocat/orgs"
716
+ },
717
+ "repos_url": {
718
+ "type": "string",
719
+ "format": "uri",
720
+ "example": "https://api.github.com/users/octocat/repos"
721
+ },
722
+ "events_url": {
723
+ "type": "string",
724
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
725
+ },
726
+ "received_events_url": {
727
+ "type": "string",
728
+ "format": "uri",
729
+ "example": "https://api.github.com/users/octocat/received_events"
730
+ },
731
+ "type": {
732
+ "type": "string",
733
+ "example": "User"
734
+ },
735
+ "site_admin": {
736
+ "type": "boolean"
737
+ },
738
+ "starred_at": {
739
+ "type": "string",
740
+ "example": "\"2020-07-09T00:17:55Z\""
741
+ },
742
+ "user_view_type": {
743
+ "type": "string",
744
+ "example": "public"
745
+ }
746
+ },
747
+ "required": [
748
+ "avatar_url",
749
+ "events_url",
750
+ "followers_url",
751
+ "following_url",
752
+ "gists_url",
753
+ "gravatar_id",
754
+ "html_url",
755
+ "id",
756
+ "node_id",
757
+ "login",
758
+ "organizations_url",
759
+ "received_events_url",
760
+ "repos_url",
761
+ "site_admin",
762
+ "starred_url",
763
+ "subscriptions_url",
764
+ "type",
765
+ "url"
766
+ ]
767
+ }
768
+ },
769
+ "requested_reviewers": {
770
+ "type": "array",
771
+ "items": {
772
+ "title": "Simple User",
773
+ "description": "A GitHub user.",
774
+ "type": "object",
775
+ "properties": {
776
+ "name": {
777
+ "nullable": true,
778
+ "type": "string"
779
+ },
780
+ "email": {
781
+ "nullable": true,
782
+ "type": "string"
783
+ },
784
+ "login": {
785
+ "type": "string",
786
+ "example": "octocat"
787
+ },
788
+ "id": {
789
+ "type": "integer",
790
+ "format": "int64",
791
+ "example": 1
792
+ },
793
+ "node_id": {
794
+ "type": "string",
795
+ "example": "MDQ6VXNlcjE="
796
+ },
797
+ "avatar_url": {
798
+ "type": "string",
799
+ "format": "uri",
800
+ "example": "https://github.com/images/error/octocat_happy.gif"
801
+ },
802
+ "gravatar_id": {
803
+ "type": "string",
804
+ "example": "41d064eb2195891e12d0413f63227ea7",
805
+ "nullable": true
806
+ },
807
+ "url": {
808
+ "type": "string",
809
+ "format": "uri",
810
+ "example": "https://api.github.com/users/octocat"
811
+ },
812
+ "html_url": {
813
+ "type": "string",
814
+ "format": "uri",
815
+ "example": "https://github.com/octocat"
816
+ },
817
+ "followers_url": {
818
+ "type": "string",
819
+ "format": "uri",
820
+ "example": "https://api.github.com/users/octocat/followers"
821
+ },
822
+ "following_url": {
823
+ "type": "string",
824
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
825
+ },
826
+ "gists_url": {
827
+ "type": "string",
828
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
829
+ },
830
+ "starred_url": {
831
+ "type": "string",
832
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
833
+ },
834
+ "subscriptions_url": {
835
+ "type": "string",
836
+ "format": "uri",
837
+ "example": "https://api.github.com/users/octocat/subscriptions"
838
+ },
839
+ "organizations_url": {
840
+ "type": "string",
841
+ "format": "uri",
842
+ "example": "https://api.github.com/users/octocat/orgs"
843
+ },
844
+ "repos_url": {
845
+ "type": "string",
846
+ "format": "uri",
847
+ "example": "https://api.github.com/users/octocat/repos"
848
+ },
849
+ "events_url": {
850
+ "type": "string",
851
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
852
+ },
853
+ "received_events_url": {
854
+ "type": "string",
855
+ "format": "uri",
856
+ "example": "https://api.github.com/users/octocat/received_events"
857
+ },
858
+ "type": {
859
+ "type": "string",
860
+ "example": "User"
861
+ },
862
+ "site_admin": {
863
+ "type": "boolean"
864
+ },
865
+ "starred_at": {
866
+ "type": "string",
867
+ "example": "\"2020-07-09T00:17:55Z\""
868
+ },
869
+ "user_view_type": {
870
+ "type": "string",
871
+ "example": "public"
872
+ }
873
+ },
874
+ "required": [
875
+ "avatar_url",
876
+ "events_url",
877
+ "followers_url",
878
+ "following_url",
879
+ "gists_url",
880
+ "gravatar_id",
881
+ "html_url",
882
+ "id",
883
+ "node_id",
884
+ "login",
885
+ "organizations_url",
886
+ "received_events_url",
887
+ "repos_url",
888
+ "site_admin",
889
+ "starred_url",
890
+ "subscriptions_url",
891
+ "type",
892
+ "url"
893
+ ]
894
+ }
895
+ },
896
+ "requested_teams": {
897
+ "type": "array",
898
+ "items": {
899
+ "title": "Team Simple",
900
+ "description": "Groups of organization members that gives permissions on specified repositories.",
901
+ "type": "object",
902
+ "properties": {
903
+ "id": {
904
+ "description": "Unique identifier of the team",
905
+ "type": "integer",
906
+ "example": 1
907
+ },
908
+ "node_id": {
909
+ "type": "string",
910
+ "example": "MDQ6VGVhbTE="
911
+ },
912
+ "url": {
913
+ "description": "URL for the team",
914
+ "type": "string",
915
+ "format": "uri",
916
+ "example": "https://api.github.com/organizations/1/team/1"
917
+ },
918
+ "members_url": {
919
+ "type": "string",
920
+ "example": "https://api.github.com/organizations/1/team/1/members{/member}"
921
+ },
922
+ "name": {
923
+ "description": "Name of the team",
924
+ "type": "string",
925
+ "example": "Justice League"
926
+ },
927
+ "description": {
928
+ "description": "Description of the team",
929
+ "type": "string",
930
+ "nullable": true,
931
+ "example": "A great team."
932
+ },
933
+ "permission": {
934
+ "description": "Permission that the team will have for its repositories",
935
+ "type": "string",
936
+ "example": "admin"
937
+ },
938
+ "privacy": {
939
+ "description": "The level of privacy this team should have",
940
+ "type": "string",
941
+ "example": "closed"
942
+ },
943
+ "notification_setting": {
944
+ "description": "The notification setting the team has set",
945
+ "type": "string",
946
+ "example": "notifications_enabled"
947
+ },
948
+ "html_url": {
949
+ "type": "string",
950
+ "format": "uri",
951
+ "example": "https://github.com/orgs/rails/teams/core"
952
+ },
953
+ "repositories_url": {
954
+ "type": "string",
955
+ "format": "uri",
956
+ "example": "https://api.github.com/organizations/1/team/1/repos"
957
+ },
958
+ "slug": {
959
+ "type": "string",
960
+ "example": "justice-league"
961
+ },
962
+ "ldap_dn": {
963
+ "description": "Distinguished Name (DN) that team maps to within LDAP environment",
964
+ "example": "uid=example,ou=users,dc=github,dc=com",
965
+ "type": "string"
966
+ },
967
+ "type": {
968
+ "description": "The ownership type of the team",
969
+ "type": "string",
970
+ "enum": [
971
+ "enterprise",
972
+ "organization"
973
+ ]
974
+ },
975
+ "organization_id": {
976
+ "type": "integer",
977
+ "description": "Unique identifier of the organization to which this team belongs",
978
+ "example": 37
979
+ },
980
+ "enterprise_id": {
981
+ "type": "integer",
982
+ "description": "Unique identifier of the enterprise to which this team belongs",
983
+ "example": 42
984
+ }
985
+ },
986
+ "required": [
987
+ "id",
988
+ "node_id",
989
+ "url",
990
+ "members_url",
991
+ "name",
992
+ "description",
993
+ "permission",
994
+ "html_url",
995
+ "repositories_url",
996
+ "slug",
997
+ "type"
998
+ ]
999
+ }
1000
+ },
1001
+ "head": {
1002
+ "type": "object",
1003
+ "properties": {
1004
+ "label": {
1005
+ "type": "string"
1006
+ },
1007
+ "ref": {
1008
+ "type": "string"
1009
+ },
1010
+ "repo": {
1011
+ "title": "Repository",
1012
+ "description": "A repository on GitHub.",
1013
+ "type": "object",
1014
+ "properties": {
1015
+ "id": {
1016
+ "description": "Unique identifier of the repository",
1017
+ "example": 42,
1018
+ "type": "integer",
1019
+ "format": "int64"
1020
+ },
1021
+ "node_id": {
1022
+ "type": "string",
1023
+ "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
1024
+ },
1025
+ "name": {
1026
+ "description": "The name of the repository.",
1027
+ "type": "string",
1028
+ "example": "Team Environment"
1029
+ },
1030
+ "full_name": {
1031
+ "type": "string",
1032
+ "example": "octocat/Hello-World"
1033
+ },
1034
+ "license": {
1035
+ "title": "License Simple",
1036
+ "description": "License Simple",
1037
+ "type": "object",
1038
+ "properties": {
1039
+ "key": {
1040
+ "type": "string",
1041
+ "example": "mit"
1042
+ },
1043
+ "name": {
1044
+ "type": "string",
1045
+ "example": "MIT License"
1046
+ },
1047
+ "url": {
1048
+ "type": "string",
1049
+ "nullable": true,
1050
+ "format": "uri",
1051
+ "example": "https://api.github.com/licenses/mit"
1052
+ },
1053
+ "spdx_id": {
1054
+ "type": "string",
1055
+ "nullable": true,
1056
+ "example": "MIT"
1057
+ },
1058
+ "node_id": {
1059
+ "type": "string",
1060
+ "example": "MDc6TGljZW5zZW1pdA=="
1061
+ },
1062
+ "html_url": {
1063
+ "type": "string",
1064
+ "format": "uri"
1065
+ }
1066
+ },
1067
+ "required": [
1068
+ "key",
1069
+ "name",
1070
+ "url",
1071
+ "spdx_id",
1072
+ "node_id"
1073
+ ],
1074
+ "nullable": true
1075
+ },
1076
+ "forks": {
1077
+ "type": "integer"
1078
+ },
1079
+ "permissions": {
1080
+ "type": "object",
1081
+ "properties": {
1082
+ "admin": {
1083
+ "type": "boolean"
1084
+ },
1085
+ "pull": {
1086
+ "type": "boolean"
1087
+ },
1088
+ "triage": {
1089
+ "type": "boolean"
1090
+ },
1091
+ "push": {
1092
+ "type": "boolean"
1093
+ },
1094
+ "maintain": {
1095
+ "type": "boolean"
1096
+ }
1097
+ },
1098
+ "required": [
1099
+ "admin",
1100
+ "pull",
1101
+ "push"
1102
+ ]
1103
+ },
1104
+ "owner": {
1105
+ "title": "Simple User",
1106
+ "description": "A GitHub user.",
1107
+ "type": "object",
1108
+ "properties": {
1109
+ "name": {
1110
+ "nullable": true,
1111
+ "type": "string"
1112
+ },
1113
+ "email": {
1114
+ "nullable": true,
1115
+ "type": "string"
1116
+ },
1117
+ "login": {
1118
+ "type": "string",
1119
+ "example": "octocat"
1120
+ },
1121
+ "id": {
1122
+ "type": "integer",
1123
+ "format": "int64",
1124
+ "example": 1
1125
+ },
1126
+ "node_id": {
1127
+ "type": "string",
1128
+ "example": "MDQ6VXNlcjE="
1129
+ },
1130
+ "avatar_url": {
1131
+ "type": "string",
1132
+ "format": "uri",
1133
+ "example": "https://github.com/images/error/octocat_happy.gif"
1134
+ },
1135
+ "gravatar_id": {
1136
+ "type": "string",
1137
+ "example": "41d064eb2195891e12d0413f63227ea7",
1138
+ "nullable": true
1139
+ },
1140
+ "url": {
1141
+ "type": "string",
1142
+ "format": "uri",
1143
+ "example": "https://api.github.com/users/octocat"
1144
+ },
1145
+ "html_url": {
1146
+ "type": "string",
1147
+ "format": "uri",
1148
+ "example": "https://github.com/octocat"
1149
+ },
1150
+ "followers_url": {
1151
+ "type": "string",
1152
+ "format": "uri",
1153
+ "example": "https://api.github.com/users/octocat/followers"
1154
+ },
1155
+ "following_url": {
1156
+ "type": "string",
1157
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
1158
+ },
1159
+ "gists_url": {
1160
+ "type": "string",
1161
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
1162
+ },
1163
+ "starred_url": {
1164
+ "type": "string",
1165
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
1166
+ },
1167
+ "subscriptions_url": {
1168
+ "type": "string",
1169
+ "format": "uri",
1170
+ "example": "https://api.github.com/users/octocat/subscriptions"
1171
+ },
1172
+ "organizations_url": {
1173
+ "type": "string",
1174
+ "format": "uri",
1175
+ "example": "https://api.github.com/users/octocat/orgs"
1176
+ },
1177
+ "repos_url": {
1178
+ "type": "string",
1179
+ "format": "uri",
1180
+ "example": "https://api.github.com/users/octocat/repos"
1181
+ },
1182
+ "events_url": {
1183
+ "type": "string",
1184
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
1185
+ },
1186
+ "received_events_url": {
1187
+ "type": "string",
1188
+ "format": "uri",
1189
+ "example": "https://api.github.com/users/octocat/received_events"
1190
+ },
1191
+ "type": {
1192
+ "type": "string",
1193
+ "example": "User"
1194
+ },
1195
+ "site_admin": {
1196
+ "type": "boolean"
1197
+ },
1198
+ "starred_at": {
1199
+ "type": "string",
1200
+ "example": "\"2020-07-09T00:17:55Z\""
1201
+ },
1202
+ "user_view_type": {
1203
+ "type": "string",
1204
+ "example": "public"
1205
+ }
1206
+ },
1207
+ "required": [
1208
+ "avatar_url",
1209
+ "events_url",
1210
+ "followers_url",
1211
+ "following_url",
1212
+ "gists_url",
1213
+ "gravatar_id",
1214
+ "html_url",
1215
+ "id",
1216
+ "node_id",
1217
+ "login",
1218
+ "organizations_url",
1219
+ "received_events_url",
1220
+ "repos_url",
1221
+ "site_admin",
1222
+ "starred_url",
1223
+ "subscriptions_url",
1224
+ "type",
1225
+ "url"
1226
+ ]
1227
+ },
1228
+ "private": {
1229
+ "description": "Whether the repository is private or public.",
1230
+ "default": false,
1231
+ "type": "boolean"
1232
+ },
1233
+ "html_url": {
1234
+ "type": "string",
1235
+ "format": "uri",
1236
+ "example": "https://github.com/octocat/Hello-World"
1237
+ },
1238
+ "description": {
1239
+ "type": "string",
1240
+ "example": "This your first repo!",
1241
+ "nullable": true
1242
+ },
1243
+ "fork": {
1244
+ "type": "boolean"
1245
+ },
1246
+ "url": {
1247
+ "type": "string",
1248
+ "format": "uri",
1249
+ "example": "https://api.github.com/repos/octocat/Hello-World"
1250
+ },
1251
+ "archive_url": {
1252
+ "type": "string",
1253
+ "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
1254
+ },
1255
+ "assignees_url": {
1256
+ "type": "string",
1257
+ "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
1258
+ },
1259
+ "blobs_url": {
1260
+ "type": "string",
1261
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
1262
+ },
1263
+ "branches_url": {
1264
+ "type": "string",
1265
+ "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
1266
+ },
1267
+ "collaborators_url": {
1268
+ "type": "string",
1269
+ "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
1270
+ },
1271
+ "comments_url": {
1272
+ "type": "string",
1273
+ "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
1274
+ },
1275
+ "commits_url": {
1276
+ "type": "string",
1277
+ "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
1278
+ },
1279
+ "compare_url": {
1280
+ "type": "string",
1281
+ "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
1282
+ },
1283
+ "contents_url": {
1284
+ "type": "string",
1285
+ "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
1286
+ },
1287
+ "contributors_url": {
1288
+ "type": "string",
1289
+ "format": "uri",
1290
+ "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
1291
+ },
1292
+ "deployments_url": {
1293
+ "type": "string",
1294
+ "format": "uri",
1295
+ "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
1296
+ },
1297
+ "downloads_url": {
1298
+ "type": "string",
1299
+ "format": "uri",
1300
+ "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
1301
+ },
1302
+ "events_url": {
1303
+ "type": "string",
1304
+ "format": "uri",
1305
+ "example": "http://api.github.com/repos/octocat/Hello-World/events"
1306
+ },
1307
+ "forks_url": {
1308
+ "type": "string",
1309
+ "format": "uri",
1310
+ "example": "http://api.github.com/repos/octocat/Hello-World/forks"
1311
+ },
1312
+ "git_commits_url": {
1313
+ "type": "string",
1314
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
1315
+ },
1316
+ "git_refs_url": {
1317
+ "type": "string",
1318
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
1319
+ },
1320
+ "git_tags_url": {
1321
+ "type": "string",
1322
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
1323
+ },
1324
+ "git_url": {
1325
+ "type": "string",
1326
+ "example": "git:github.com/octocat/Hello-World.git"
1327
+ },
1328
+ "issue_comment_url": {
1329
+ "type": "string",
1330
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
1331
+ },
1332
+ "issue_events_url": {
1333
+ "type": "string",
1334
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
1335
+ },
1336
+ "issues_url": {
1337
+ "type": "string",
1338
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
1339
+ },
1340
+ "keys_url": {
1341
+ "type": "string",
1342
+ "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
1343
+ },
1344
+ "labels_url": {
1345
+ "type": "string",
1346
+ "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
1347
+ },
1348
+ "languages_url": {
1349
+ "type": "string",
1350
+ "format": "uri",
1351
+ "example": "http://api.github.com/repos/octocat/Hello-World/languages"
1352
+ },
1353
+ "merges_url": {
1354
+ "type": "string",
1355
+ "format": "uri",
1356
+ "example": "http://api.github.com/repos/octocat/Hello-World/merges"
1357
+ },
1358
+ "milestones_url": {
1359
+ "type": "string",
1360
+ "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
1361
+ },
1362
+ "notifications_url": {
1363
+ "type": "string",
1364
+ "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
1365
+ },
1366
+ "pulls_url": {
1367
+ "type": "string",
1368
+ "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
1369
+ },
1370
+ "releases_url": {
1371
+ "type": "string",
1372
+ "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
1373
+ },
1374
+ "ssh_url": {
1375
+ "type": "string",
1376
+ "example": "git@github.com:octocat/Hello-World.git"
1377
+ },
1378
+ "stargazers_url": {
1379
+ "type": "string",
1380
+ "format": "uri",
1381
+ "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
1382
+ },
1383
+ "statuses_url": {
1384
+ "type": "string",
1385
+ "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
1386
+ },
1387
+ "subscribers_url": {
1388
+ "type": "string",
1389
+ "format": "uri",
1390
+ "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
1391
+ },
1392
+ "subscription_url": {
1393
+ "type": "string",
1394
+ "format": "uri",
1395
+ "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
1396
+ },
1397
+ "tags_url": {
1398
+ "type": "string",
1399
+ "format": "uri",
1400
+ "example": "http://api.github.com/repos/octocat/Hello-World/tags"
1401
+ },
1402
+ "teams_url": {
1403
+ "type": "string",
1404
+ "format": "uri",
1405
+ "example": "http://api.github.com/repos/octocat/Hello-World/teams"
1406
+ },
1407
+ "trees_url": {
1408
+ "type": "string",
1409
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
1410
+ },
1411
+ "clone_url": {
1412
+ "type": "string",
1413
+ "example": "https://github.com/octocat/Hello-World.git"
1414
+ },
1415
+ "mirror_url": {
1416
+ "type": "string",
1417
+ "format": "uri",
1418
+ "example": "git:git.example.com/octocat/Hello-World",
1419
+ "nullable": true
1420
+ },
1421
+ "hooks_url": {
1422
+ "type": "string",
1423
+ "format": "uri",
1424
+ "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
1425
+ },
1426
+ "svn_url": {
1427
+ "type": "string",
1428
+ "format": "uri",
1429
+ "example": "https://svn.github.com/octocat/Hello-World"
1430
+ },
1431
+ "homepage": {
1432
+ "type": "string",
1433
+ "format": "uri",
1434
+ "example": "https://github.com",
1435
+ "nullable": true
1436
+ },
1437
+ "language": {
1438
+ "type": "string",
1439
+ "nullable": true
1440
+ },
1441
+ "forks_count": {
1442
+ "type": "integer",
1443
+ "example": 9
1444
+ },
1445
+ "stargazers_count": {
1446
+ "type": "integer",
1447
+ "example": 80
1448
+ },
1449
+ "watchers_count": {
1450
+ "type": "integer",
1451
+ "example": 80
1452
+ },
1453
+ "size": {
1454
+ "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.",
1455
+ "type": "integer",
1456
+ "example": 108
1457
+ },
1458
+ "default_branch": {
1459
+ "description": "The default branch of the repository.",
1460
+ "type": "string",
1461
+ "example": "master"
1462
+ },
1463
+ "open_issues_count": {
1464
+ "type": "integer",
1465
+ "example": 0
1466
+ },
1467
+ "is_template": {
1468
+ "description": "Whether this repository acts as a template that can be used to generate new repositories.",
1469
+ "default": false,
1470
+ "type": "boolean",
1471
+ "example": true
1472
+ },
1473
+ "topics": {
1474
+ "type": "array",
1475
+ "items": {
1476
+ "type": "string"
1477
+ }
1478
+ },
1479
+ "has_issues": {
1480
+ "description": "Whether issues are enabled.",
1481
+ "default": true,
1482
+ "type": "boolean",
1483
+ "example": true
1484
+ },
1485
+ "has_projects": {
1486
+ "description": "Whether projects are enabled.",
1487
+ "default": true,
1488
+ "type": "boolean",
1489
+ "example": true
1490
+ },
1491
+ "has_wiki": {
1492
+ "description": "Whether the wiki is enabled.",
1493
+ "default": true,
1494
+ "type": "boolean",
1495
+ "example": true
1496
+ },
1497
+ "has_pages": {
1498
+ "type": "boolean"
1499
+ },
1500
+ "has_downloads": {
1501
+ "description": "Whether downloads are enabled.",
1502
+ "default": true,
1503
+ "type": "boolean",
1504
+ "example": true,
1505
+ "deprecated": true
1506
+ },
1507
+ "has_discussions": {
1508
+ "description": "Whether discussions are enabled.",
1509
+ "default": false,
1510
+ "type": "boolean",
1511
+ "example": true
1512
+ },
1513
+ "has_pull_requests": {
1514
+ "description": "Whether pull requests are enabled.",
1515
+ "default": true,
1516
+ "type": "boolean",
1517
+ "example": true
1518
+ },
1519
+ "pull_request_creation_policy": {
1520
+ "description": "The policy controlling who can create pull requests: all or collaborators_only.",
1521
+ "type": "string",
1522
+ "enum": [
1523
+ "all",
1524
+ "collaborators_only"
1525
+ ],
1526
+ "example": "all"
1527
+ },
1528
+ "archived": {
1529
+ "description": "Whether the repository is archived.",
1530
+ "default": false,
1531
+ "type": "boolean"
1532
+ },
1533
+ "disabled": {
1534
+ "type": "boolean",
1535
+ "description": "Returns whether or not this repository disabled."
1536
+ },
1537
+ "visibility": {
1538
+ "description": "The repository visibility: public, private, or internal.",
1539
+ "default": "public",
1540
+ "type": "string"
1541
+ },
1542
+ "pushed_at": {
1543
+ "type": "string",
1544
+ "format": "date-time",
1545
+ "example": "2011-01-26T19:06:43Z",
1546
+ "nullable": true
1547
+ },
1548
+ "created_at": {
1549
+ "type": "string",
1550
+ "format": "date-time",
1551
+ "example": "2011-01-26T19:01:12Z",
1552
+ "nullable": true
1553
+ },
1554
+ "updated_at": {
1555
+ "type": "string",
1556
+ "format": "date-time",
1557
+ "example": "2011-01-26T19:14:43Z",
1558
+ "nullable": true
1559
+ },
1560
+ "allow_rebase_merge": {
1561
+ "description": "Whether to allow rebase merges for pull requests.",
1562
+ "default": true,
1563
+ "type": "boolean",
1564
+ "example": true
1565
+ },
1566
+ "temp_clone_token": {
1567
+ "type": "string"
1568
+ },
1569
+ "allow_squash_merge": {
1570
+ "description": "Whether to allow squash merges for pull requests.",
1571
+ "default": true,
1572
+ "type": "boolean",
1573
+ "example": true
1574
+ },
1575
+ "allow_auto_merge": {
1576
+ "description": "Whether to allow Auto-merge to be used on pull requests.",
1577
+ "default": false,
1578
+ "type": "boolean",
1579
+ "example": false
1580
+ },
1581
+ "delete_branch_on_merge": {
1582
+ "description": "Whether to delete head branches when pull requests are merged",
1583
+ "default": false,
1584
+ "type": "boolean",
1585
+ "example": false
1586
+ },
1587
+ "allow_update_branch": {
1588
+ "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.",
1589
+ "default": false,
1590
+ "type": "boolean",
1591
+ "example": false
1592
+ },
1593
+ "use_squash_pr_title_as_default": {
1594
+ "type": "boolean",
1595
+ "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.",
1596
+ "default": false,
1597
+ "deprecated": true
1598
+ },
1599
+ "squash_merge_commit_title": {
1600
+ "type": "string",
1601
+ "enum": [
1602
+ "PR_TITLE",
1603
+ "COMMIT_OR_PR_TITLE"
1604
+ ],
1605
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
1606
+ },
1607
+ "squash_merge_commit_message": {
1608
+ "type": "string",
1609
+ "enum": [
1610
+ "PR_BODY",
1611
+ "COMMIT_MESSAGES",
1612
+ "BLANK"
1613
+ ],
1614
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
1615
+ },
1616
+ "merge_commit_title": {
1617
+ "type": "string",
1618
+ "enum": [
1619
+ "PR_TITLE",
1620
+ "MERGE_MESSAGE"
1621
+ ],
1622
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
1623
+ },
1624
+ "merge_commit_message": {
1625
+ "type": "string",
1626
+ "enum": [
1627
+ "PR_BODY",
1628
+ "PR_TITLE",
1629
+ "BLANK"
1630
+ ],
1631
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
1632
+ },
1633
+ "allow_merge_commit": {
1634
+ "description": "Whether to allow merge commits for pull requests.",
1635
+ "default": true,
1636
+ "type": "boolean",
1637
+ "example": true
1638
+ },
1639
+ "allow_forking": {
1640
+ "description": "Whether to allow forking this repo",
1641
+ "type": "boolean"
1642
+ },
1643
+ "web_commit_signoff_required": {
1644
+ "description": "Whether to require contributors to sign off on web-based commits",
1645
+ "default": false,
1646
+ "type": "boolean"
1647
+ },
1648
+ "open_issues": {
1649
+ "type": "integer"
1650
+ },
1651
+ "watchers": {
1652
+ "type": "integer"
1653
+ },
1654
+ "master_branch": {
1655
+ "type": "string"
1656
+ },
1657
+ "starred_at": {
1658
+ "type": "string",
1659
+ "example": "\"2020-07-09T00:17:42Z\""
1660
+ },
1661
+ "anonymous_access_enabled": {
1662
+ "type": "boolean",
1663
+ "description": "Whether anonymous git access is enabled for this repository"
1664
+ },
1665
+ "code_search_index_status": {
1666
+ "type": "object",
1667
+ "description": "The status of the code search index for this repository",
1668
+ "properties": {
1669
+ "lexical_search_ok": {
1670
+ "type": "boolean"
1671
+ },
1672
+ "lexical_commit_sha": {
1673
+ "type": "string"
1674
+ }
1675
+ }
1676
+ }
1677
+ },
1678
+ "required": [
1679
+ "archive_url",
1680
+ "assignees_url",
1681
+ "blobs_url",
1682
+ "branches_url",
1683
+ "collaborators_url",
1684
+ "comments_url",
1685
+ "commits_url",
1686
+ "compare_url",
1687
+ "contents_url",
1688
+ "contributors_url",
1689
+ "deployments_url",
1690
+ "description",
1691
+ "downloads_url",
1692
+ "events_url",
1693
+ "fork",
1694
+ "forks_url",
1695
+ "full_name",
1696
+ "git_commits_url",
1697
+ "git_refs_url",
1698
+ "git_tags_url",
1699
+ "hooks_url",
1700
+ "html_url",
1701
+ "id",
1702
+ "node_id",
1703
+ "issue_comment_url",
1704
+ "issue_events_url",
1705
+ "issues_url",
1706
+ "keys_url",
1707
+ "labels_url",
1708
+ "languages_url",
1709
+ "merges_url",
1710
+ "milestones_url",
1711
+ "name",
1712
+ "notifications_url",
1713
+ "owner",
1714
+ "private",
1715
+ "pulls_url",
1716
+ "releases_url",
1717
+ "stargazers_url",
1718
+ "statuses_url",
1719
+ "subscribers_url",
1720
+ "subscription_url",
1721
+ "tags_url",
1722
+ "teams_url",
1723
+ "trees_url",
1724
+ "url",
1725
+ "clone_url",
1726
+ "default_branch",
1727
+ "forks",
1728
+ "forks_count",
1729
+ "git_url",
1730
+ "has_downloads",
1731
+ "has_issues",
1732
+ "has_projects",
1733
+ "has_wiki",
1734
+ "has_pages",
1735
+ "homepage",
1736
+ "language",
1737
+ "archived",
1738
+ "disabled",
1739
+ "mirror_url",
1740
+ "open_issues",
1741
+ "open_issues_count",
1742
+ "license",
1743
+ "pushed_at",
1744
+ "size",
1745
+ "ssh_url",
1746
+ "stargazers_count",
1747
+ "svn_url",
1748
+ "watchers",
1749
+ "watchers_count",
1750
+ "created_at",
1751
+ "updated_at"
1752
+ ],
1753
+ "x-github-breaking-changes": [
1754
+ {
1755
+ "changeset": "remove_use_squash_pr_title_as_default",
1756
+ "patch": {
1757
+ "properties": {
1758
+ "use_squash_pr_title_as_default": null
1759
+ }
1760
+ },
1761
+ "version": "2026-03-10"
1762
+ },
1763
+ {
1764
+ "changeset": "deprecate_beta_media_type",
1765
+ "patch": {
1766
+ "properties": {
1767
+ "master_branch": null
1768
+ }
1769
+ },
1770
+ "version": "2026-03-10"
1771
+ },
1772
+ {
1773
+ "changeset": "remove_has_downloads",
1774
+ "patch": {
1775
+ "properties": {
1776
+ "has_downloads": null
1777
+ },
1778
+ "required": [
1779
+ "archive_url",
1780
+ "assignees_url",
1781
+ "blobs_url",
1782
+ "branches_url",
1783
+ "collaborators_url",
1784
+ "comments_url",
1785
+ "commits_url",
1786
+ "compare_url",
1787
+ "contents_url",
1788
+ "contributors_url",
1789
+ "deployments_url",
1790
+ "description",
1791
+ "downloads_url",
1792
+ "events_url",
1793
+ "fork",
1794
+ "forks_url",
1795
+ "full_name",
1796
+ "git_commits_url",
1797
+ "git_refs_url",
1798
+ "git_tags_url",
1799
+ "hooks_url",
1800
+ "html_url",
1801
+ "id",
1802
+ "node_id",
1803
+ "issue_comment_url",
1804
+ "issue_events_url",
1805
+ "issues_url",
1806
+ "keys_url",
1807
+ "labels_url",
1808
+ "languages_url",
1809
+ "merges_url",
1810
+ "milestones_url",
1811
+ "name",
1812
+ "notifications_url",
1813
+ "owner",
1814
+ "private",
1815
+ "pulls_url",
1816
+ "releases_url",
1817
+ "stargazers_url",
1818
+ "statuses_url",
1819
+ "subscribers_url",
1820
+ "subscription_url",
1821
+ "tags_url",
1822
+ "teams_url",
1823
+ "trees_url",
1824
+ "url",
1825
+ "clone_url",
1826
+ "default_branch",
1827
+ "forks",
1828
+ "forks_count",
1829
+ "git_url",
1830
+ "has_issues",
1831
+ "has_projects",
1832
+ "has_wiki",
1833
+ "has_pages",
1834
+ "homepage",
1835
+ "language",
1836
+ "archived",
1837
+ "disabled",
1838
+ "mirror_url",
1839
+ "open_issues",
1840
+ "open_issues_count",
1841
+ "license",
1842
+ "pushed_at",
1843
+ "size",
1844
+ "ssh_url",
1845
+ "stargazers_count",
1846
+ "svn_url",
1847
+ "watchers",
1848
+ "watchers_count",
1849
+ "created_at",
1850
+ "updated_at"
1851
+ ]
1852
+ },
1853
+ "version": "2026-03-10"
1854
+ }
1855
+ ]
1856
+ },
1857
+ "sha": {
1858
+ "type": "string"
1859
+ },
1860
+ "user": {
1861
+ "title": "Simple User",
1862
+ "description": "A GitHub user.",
1863
+ "type": "object",
1864
+ "properties": {
1865
+ "name": {
1866
+ "nullable": true,
1867
+ "type": "string"
1868
+ },
1869
+ "email": {
1870
+ "nullable": true,
1871
+ "type": "string"
1872
+ },
1873
+ "login": {
1874
+ "type": "string",
1875
+ "example": "octocat"
1876
+ },
1877
+ "id": {
1878
+ "type": "integer",
1879
+ "format": "int64",
1880
+ "example": 1
1881
+ },
1882
+ "node_id": {
1883
+ "type": "string",
1884
+ "example": "MDQ6VXNlcjE="
1885
+ },
1886
+ "avatar_url": {
1887
+ "type": "string",
1888
+ "format": "uri",
1889
+ "example": "https://github.com/images/error/octocat_happy.gif"
1890
+ },
1891
+ "gravatar_id": {
1892
+ "type": "string",
1893
+ "example": "41d064eb2195891e12d0413f63227ea7",
1894
+ "nullable": true
1895
+ },
1896
+ "url": {
1897
+ "type": "string",
1898
+ "format": "uri",
1899
+ "example": "https://api.github.com/users/octocat"
1900
+ },
1901
+ "html_url": {
1902
+ "type": "string",
1903
+ "format": "uri",
1904
+ "example": "https://github.com/octocat"
1905
+ },
1906
+ "followers_url": {
1907
+ "type": "string",
1908
+ "format": "uri",
1909
+ "example": "https://api.github.com/users/octocat/followers"
1910
+ },
1911
+ "following_url": {
1912
+ "type": "string",
1913
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
1914
+ },
1915
+ "gists_url": {
1916
+ "type": "string",
1917
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
1918
+ },
1919
+ "starred_url": {
1920
+ "type": "string",
1921
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
1922
+ },
1923
+ "subscriptions_url": {
1924
+ "type": "string",
1925
+ "format": "uri",
1926
+ "example": "https://api.github.com/users/octocat/subscriptions"
1927
+ },
1928
+ "organizations_url": {
1929
+ "type": "string",
1930
+ "format": "uri",
1931
+ "example": "https://api.github.com/users/octocat/orgs"
1932
+ },
1933
+ "repos_url": {
1934
+ "type": "string",
1935
+ "format": "uri",
1936
+ "example": "https://api.github.com/users/octocat/repos"
1937
+ },
1938
+ "events_url": {
1939
+ "type": "string",
1940
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
1941
+ },
1942
+ "received_events_url": {
1943
+ "type": "string",
1944
+ "format": "uri",
1945
+ "example": "https://api.github.com/users/octocat/received_events"
1946
+ },
1947
+ "type": {
1948
+ "type": "string",
1949
+ "example": "User"
1950
+ },
1951
+ "site_admin": {
1952
+ "type": "boolean"
1953
+ },
1954
+ "starred_at": {
1955
+ "type": "string",
1956
+ "example": "\"2020-07-09T00:17:55Z\""
1957
+ },
1958
+ "user_view_type": {
1959
+ "type": "string",
1960
+ "example": "public"
1961
+ }
1962
+ },
1963
+ "required": [
1964
+ "avatar_url",
1965
+ "events_url",
1966
+ "followers_url",
1967
+ "following_url",
1968
+ "gists_url",
1969
+ "gravatar_id",
1970
+ "html_url",
1971
+ "id",
1972
+ "node_id",
1973
+ "login",
1974
+ "organizations_url",
1975
+ "received_events_url",
1976
+ "repos_url",
1977
+ "site_admin",
1978
+ "starred_url",
1979
+ "subscriptions_url",
1980
+ "type",
1981
+ "url"
1982
+ ]
1983
+ }
1984
+ },
1985
+ "required": [
1986
+ "label",
1987
+ "ref",
1988
+ "repo",
1989
+ "sha",
1990
+ "user"
1991
+ ]
1992
+ },
1993
+ "base": {
1994
+ "type": "object",
1995
+ "properties": {
1996
+ "label": {
1997
+ "type": "string"
1998
+ },
1999
+ "ref": {
2000
+ "type": "string"
2001
+ },
2002
+ "repo": {
2003
+ "title": "Repository",
2004
+ "description": "A repository on GitHub.",
2005
+ "type": "object",
2006
+ "properties": {
2007
+ "id": {
2008
+ "description": "Unique identifier of the repository",
2009
+ "example": 42,
2010
+ "type": "integer",
2011
+ "format": "int64"
2012
+ },
2013
+ "node_id": {
2014
+ "type": "string",
2015
+ "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
2016
+ },
2017
+ "name": {
2018
+ "description": "The name of the repository.",
2019
+ "type": "string",
2020
+ "example": "Team Environment"
2021
+ },
2022
+ "full_name": {
2023
+ "type": "string",
2024
+ "example": "octocat/Hello-World"
2025
+ },
2026
+ "license": {
2027
+ "title": "License Simple",
2028
+ "description": "License Simple",
2029
+ "type": "object",
2030
+ "properties": {
2031
+ "key": {
2032
+ "type": "string",
2033
+ "example": "mit"
2034
+ },
2035
+ "name": {
2036
+ "type": "string",
2037
+ "example": "MIT License"
2038
+ },
2039
+ "url": {
2040
+ "type": "string",
2041
+ "nullable": true,
2042
+ "format": "uri",
2043
+ "example": "https://api.github.com/licenses/mit"
2044
+ },
2045
+ "spdx_id": {
2046
+ "type": "string",
2047
+ "nullable": true,
2048
+ "example": "MIT"
2049
+ },
2050
+ "node_id": {
2051
+ "type": "string",
2052
+ "example": "MDc6TGljZW5zZW1pdA=="
2053
+ },
2054
+ "html_url": {
2055
+ "type": "string",
2056
+ "format": "uri"
2057
+ }
2058
+ },
2059
+ "required": [
2060
+ "key",
2061
+ "name",
2062
+ "url",
2063
+ "spdx_id",
2064
+ "node_id"
2065
+ ],
2066
+ "nullable": true
2067
+ },
2068
+ "forks": {
2069
+ "type": "integer"
2070
+ },
2071
+ "permissions": {
2072
+ "type": "object",
2073
+ "properties": {
2074
+ "admin": {
2075
+ "type": "boolean"
2076
+ },
2077
+ "pull": {
2078
+ "type": "boolean"
2079
+ },
2080
+ "triage": {
2081
+ "type": "boolean"
2082
+ },
2083
+ "push": {
2084
+ "type": "boolean"
2085
+ },
2086
+ "maintain": {
2087
+ "type": "boolean"
2088
+ }
2089
+ },
2090
+ "required": [
2091
+ "admin",
2092
+ "pull",
2093
+ "push"
2094
+ ]
2095
+ },
2096
+ "owner": {
2097
+ "title": "Simple User",
2098
+ "description": "A GitHub user.",
2099
+ "type": "object",
2100
+ "properties": {
2101
+ "name": {
2102
+ "nullable": true,
2103
+ "type": "string"
2104
+ },
2105
+ "email": {
2106
+ "nullable": true,
2107
+ "type": "string"
2108
+ },
2109
+ "login": {
2110
+ "type": "string",
2111
+ "example": "octocat"
2112
+ },
2113
+ "id": {
2114
+ "type": "integer",
2115
+ "format": "int64",
2116
+ "example": 1
2117
+ },
2118
+ "node_id": {
2119
+ "type": "string",
2120
+ "example": "MDQ6VXNlcjE="
2121
+ },
2122
+ "avatar_url": {
2123
+ "type": "string",
2124
+ "format": "uri",
2125
+ "example": "https://github.com/images/error/octocat_happy.gif"
2126
+ },
2127
+ "gravatar_id": {
2128
+ "type": "string",
2129
+ "example": "41d064eb2195891e12d0413f63227ea7",
2130
+ "nullable": true
2131
+ },
2132
+ "url": {
2133
+ "type": "string",
2134
+ "format": "uri",
2135
+ "example": "https://api.github.com/users/octocat"
2136
+ },
2137
+ "html_url": {
2138
+ "type": "string",
2139
+ "format": "uri",
2140
+ "example": "https://github.com/octocat"
2141
+ },
2142
+ "followers_url": {
2143
+ "type": "string",
2144
+ "format": "uri",
2145
+ "example": "https://api.github.com/users/octocat/followers"
2146
+ },
2147
+ "following_url": {
2148
+ "type": "string",
2149
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
2150
+ },
2151
+ "gists_url": {
2152
+ "type": "string",
2153
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
2154
+ },
2155
+ "starred_url": {
2156
+ "type": "string",
2157
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
2158
+ },
2159
+ "subscriptions_url": {
2160
+ "type": "string",
2161
+ "format": "uri",
2162
+ "example": "https://api.github.com/users/octocat/subscriptions"
2163
+ },
2164
+ "organizations_url": {
2165
+ "type": "string",
2166
+ "format": "uri",
2167
+ "example": "https://api.github.com/users/octocat/orgs"
2168
+ },
2169
+ "repos_url": {
2170
+ "type": "string",
2171
+ "format": "uri",
2172
+ "example": "https://api.github.com/users/octocat/repos"
2173
+ },
2174
+ "events_url": {
2175
+ "type": "string",
2176
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
2177
+ },
2178
+ "received_events_url": {
2179
+ "type": "string",
2180
+ "format": "uri",
2181
+ "example": "https://api.github.com/users/octocat/received_events"
2182
+ },
2183
+ "type": {
2184
+ "type": "string",
2185
+ "example": "User"
2186
+ },
2187
+ "site_admin": {
2188
+ "type": "boolean"
2189
+ },
2190
+ "starred_at": {
2191
+ "type": "string",
2192
+ "example": "\"2020-07-09T00:17:55Z\""
2193
+ },
2194
+ "user_view_type": {
2195
+ "type": "string",
2196
+ "example": "public"
2197
+ }
2198
+ },
2199
+ "required": [
2200
+ "avatar_url",
2201
+ "events_url",
2202
+ "followers_url",
2203
+ "following_url",
2204
+ "gists_url",
2205
+ "gravatar_id",
2206
+ "html_url",
2207
+ "id",
2208
+ "node_id",
2209
+ "login",
2210
+ "organizations_url",
2211
+ "received_events_url",
2212
+ "repos_url",
2213
+ "site_admin",
2214
+ "starred_url",
2215
+ "subscriptions_url",
2216
+ "type",
2217
+ "url"
2218
+ ]
2219
+ },
2220
+ "private": {
2221
+ "description": "Whether the repository is private or public.",
2222
+ "default": false,
2223
+ "type": "boolean"
2224
+ },
2225
+ "html_url": {
2226
+ "type": "string",
2227
+ "format": "uri",
2228
+ "example": "https://github.com/octocat/Hello-World"
2229
+ },
2230
+ "description": {
2231
+ "type": "string",
2232
+ "example": "This your first repo!",
2233
+ "nullable": true
2234
+ },
2235
+ "fork": {
2236
+ "type": "boolean"
2237
+ },
2238
+ "url": {
2239
+ "type": "string",
2240
+ "format": "uri",
2241
+ "example": "https://api.github.com/repos/octocat/Hello-World"
2242
+ },
2243
+ "archive_url": {
2244
+ "type": "string",
2245
+ "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
2246
+ },
2247
+ "assignees_url": {
2248
+ "type": "string",
2249
+ "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
2250
+ },
2251
+ "blobs_url": {
2252
+ "type": "string",
2253
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
2254
+ },
2255
+ "branches_url": {
2256
+ "type": "string",
2257
+ "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
2258
+ },
2259
+ "collaborators_url": {
2260
+ "type": "string",
2261
+ "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
2262
+ },
2263
+ "comments_url": {
2264
+ "type": "string",
2265
+ "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
2266
+ },
2267
+ "commits_url": {
2268
+ "type": "string",
2269
+ "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
2270
+ },
2271
+ "compare_url": {
2272
+ "type": "string",
2273
+ "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
2274
+ },
2275
+ "contents_url": {
2276
+ "type": "string",
2277
+ "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
2278
+ },
2279
+ "contributors_url": {
2280
+ "type": "string",
2281
+ "format": "uri",
2282
+ "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
2283
+ },
2284
+ "deployments_url": {
2285
+ "type": "string",
2286
+ "format": "uri",
2287
+ "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
2288
+ },
2289
+ "downloads_url": {
2290
+ "type": "string",
2291
+ "format": "uri",
2292
+ "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
2293
+ },
2294
+ "events_url": {
2295
+ "type": "string",
2296
+ "format": "uri",
2297
+ "example": "http://api.github.com/repos/octocat/Hello-World/events"
2298
+ },
2299
+ "forks_url": {
2300
+ "type": "string",
2301
+ "format": "uri",
2302
+ "example": "http://api.github.com/repos/octocat/Hello-World/forks"
2303
+ },
2304
+ "git_commits_url": {
2305
+ "type": "string",
2306
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
2307
+ },
2308
+ "git_refs_url": {
2309
+ "type": "string",
2310
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
2311
+ },
2312
+ "git_tags_url": {
2313
+ "type": "string",
2314
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
2315
+ },
2316
+ "git_url": {
2317
+ "type": "string",
2318
+ "example": "git:github.com/octocat/Hello-World.git"
2319
+ },
2320
+ "issue_comment_url": {
2321
+ "type": "string",
2322
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
2323
+ },
2324
+ "issue_events_url": {
2325
+ "type": "string",
2326
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
2327
+ },
2328
+ "issues_url": {
2329
+ "type": "string",
2330
+ "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
2331
+ },
2332
+ "keys_url": {
2333
+ "type": "string",
2334
+ "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
2335
+ },
2336
+ "labels_url": {
2337
+ "type": "string",
2338
+ "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
2339
+ },
2340
+ "languages_url": {
2341
+ "type": "string",
2342
+ "format": "uri",
2343
+ "example": "http://api.github.com/repos/octocat/Hello-World/languages"
2344
+ },
2345
+ "merges_url": {
2346
+ "type": "string",
2347
+ "format": "uri",
2348
+ "example": "http://api.github.com/repos/octocat/Hello-World/merges"
2349
+ },
2350
+ "milestones_url": {
2351
+ "type": "string",
2352
+ "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
2353
+ },
2354
+ "notifications_url": {
2355
+ "type": "string",
2356
+ "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
2357
+ },
2358
+ "pulls_url": {
2359
+ "type": "string",
2360
+ "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
2361
+ },
2362
+ "releases_url": {
2363
+ "type": "string",
2364
+ "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
2365
+ },
2366
+ "ssh_url": {
2367
+ "type": "string",
2368
+ "example": "git@github.com:octocat/Hello-World.git"
2369
+ },
2370
+ "stargazers_url": {
2371
+ "type": "string",
2372
+ "format": "uri",
2373
+ "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
2374
+ },
2375
+ "statuses_url": {
2376
+ "type": "string",
2377
+ "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
2378
+ },
2379
+ "subscribers_url": {
2380
+ "type": "string",
2381
+ "format": "uri",
2382
+ "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
2383
+ },
2384
+ "subscription_url": {
2385
+ "type": "string",
2386
+ "format": "uri",
2387
+ "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
2388
+ },
2389
+ "tags_url": {
2390
+ "type": "string",
2391
+ "format": "uri",
2392
+ "example": "http://api.github.com/repos/octocat/Hello-World/tags"
2393
+ },
2394
+ "teams_url": {
2395
+ "type": "string",
2396
+ "format": "uri",
2397
+ "example": "http://api.github.com/repos/octocat/Hello-World/teams"
2398
+ },
2399
+ "trees_url": {
2400
+ "type": "string",
2401
+ "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
2402
+ },
2403
+ "clone_url": {
2404
+ "type": "string",
2405
+ "example": "https://github.com/octocat/Hello-World.git"
2406
+ },
2407
+ "mirror_url": {
2408
+ "type": "string",
2409
+ "format": "uri",
2410
+ "example": "git:git.example.com/octocat/Hello-World",
2411
+ "nullable": true
2412
+ },
2413
+ "hooks_url": {
2414
+ "type": "string",
2415
+ "format": "uri",
2416
+ "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
2417
+ },
2418
+ "svn_url": {
2419
+ "type": "string",
2420
+ "format": "uri",
2421
+ "example": "https://svn.github.com/octocat/Hello-World"
2422
+ },
2423
+ "homepage": {
2424
+ "type": "string",
2425
+ "format": "uri",
2426
+ "example": "https://github.com",
2427
+ "nullable": true
2428
+ },
2429
+ "language": {
2430
+ "type": "string",
2431
+ "nullable": true
2432
+ },
2433
+ "forks_count": {
2434
+ "type": "integer",
2435
+ "example": 9
2436
+ },
2437
+ "stargazers_count": {
2438
+ "type": "integer",
2439
+ "example": 80
2440
+ },
2441
+ "watchers_count": {
2442
+ "type": "integer",
2443
+ "example": 80
2444
+ },
2445
+ "size": {
2446
+ "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.",
2447
+ "type": "integer",
2448
+ "example": 108
2449
+ },
2450
+ "default_branch": {
2451
+ "description": "The default branch of the repository.",
2452
+ "type": "string",
2453
+ "example": "master"
2454
+ },
2455
+ "open_issues_count": {
2456
+ "type": "integer",
2457
+ "example": 0
2458
+ },
2459
+ "is_template": {
2460
+ "description": "Whether this repository acts as a template that can be used to generate new repositories.",
2461
+ "default": false,
2462
+ "type": "boolean",
2463
+ "example": true
2464
+ },
2465
+ "topics": {
2466
+ "type": "array",
2467
+ "items": {
2468
+ "type": "string"
2469
+ }
2470
+ },
2471
+ "has_issues": {
2472
+ "description": "Whether issues are enabled.",
2473
+ "default": true,
2474
+ "type": "boolean",
2475
+ "example": true
2476
+ },
2477
+ "has_projects": {
2478
+ "description": "Whether projects are enabled.",
2479
+ "default": true,
2480
+ "type": "boolean",
2481
+ "example": true
2482
+ },
2483
+ "has_wiki": {
2484
+ "description": "Whether the wiki is enabled.",
2485
+ "default": true,
2486
+ "type": "boolean",
2487
+ "example": true
2488
+ },
2489
+ "has_pages": {
2490
+ "type": "boolean"
2491
+ },
2492
+ "has_downloads": {
2493
+ "description": "Whether downloads are enabled.",
2494
+ "default": true,
2495
+ "type": "boolean",
2496
+ "example": true,
2497
+ "deprecated": true
2498
+ },
2499
+ "has_discussions": {
2500
+ "description": "Whether discussions are enabled.",
2501
+ "default": false,
2502
+ "type": "boolean",
2503
+ "example": true
2504
+ },
2505
+ "has_pull_requests": {
2506
+ "description": "Whether pull requests are enabled.",
2507
+ "default": true,
2508
+ "type": "boolean",
2509
+ "example": true
2510
+ },
2511
+ "pull_request_creation_policy": {
2512
+ "description": "The policy controlling who can create pull requests: all or collaborators_only.",
2513
+ "type": "string",
2514
+ "enum": [
2515
+ "all",
2516
+ "collaborators_only"
2517
+ ],
2518
+ "example": "all"
2519
+ },
2520
+ "archived": {
2521
+ "description": "Whether the repository is archived.",
2522
+ "default": false,
2523
+ "type": "boolean"
2524
+ },
2525
+ "disabled": {
2526
+ "type": "boolean",
2527
+ "description": "Returns whether or not this repository disabled."
2528
+ },
2529
+ "visibility": {
2530
+ "description": "The repository visibility: public, private, or internal.",
2531
+ "default": "public",
2532
+ "type": "string"
2533
+ },
2534
+ "pushed_at": {
2535
+ "type": "string",
2536
+ "format": "date-time",
2537
+ "example": "2011-01-26T19:06:43Z",
2538
+ "nullable": true
2539
+ },
2540
+ "created_at": {
2541
+ "type": "string",
2542
+ "format": "date-time",
2543
+ "example": "2011-01-26T19:01:12Z",
2544
+ "nullable": true
2545
+ },
2546
+ "updated_at": {
2547
+ "type": "string",
2548
+ "format": "date-time",
2549
+ "example": "2011-01-26T19:14:43Z",
2550
+ "nullable": true
2551
+ },
2552
+ "allow_rebase_merge": {
2553
+ "description": "Whether to allow rebase merges for pull requests.",
2554
+ "default": true,
2555
+ "type": "boolean",
2556
+ "example": true
2557
+ },
2558
+ "temp_clone_token": {
2559
+ "type": "string"
2560
+ },
2561
+ "allow_squash_merge": {
2562
+ "description": "Whether to allow squash merges for pull requests.",
2563
+ "default": true,
2564
+ "type": "boolean",
2565
+ "example": true
2566
+ },
2567
+ "allow_auto_merge": {
2568
+ "description": "Whether to allow Auto-merge to be used on pull requests.",
2569
+ "default": false,
2570
+ "type": "boolean",
2571
+ "example": false
2572
+ },
2573
+ "delete_branch_on_merge": {
2574
+ "description": "Whether to delete head branches when pull requests are merged",
2575
+ "default": false,
2576
+ "type": "boolean",
2577
+ "example": false
2578
+ },
2579
+ "allow_update_branch": {
2580
+ "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.",
2581
+ "default": false,
2582
+ "type": "boolean",
2583
+ "example": false
2584
+ },
2585
+ "use_squash_pr_title_as_default": {
2586
+ "type": "boolean",
2587
+ "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.",
2588
+ "default": false,
2589
+ "deprecated": true
2590
+ },
2591
+ "squash_merge_commit_title": {
2592
+ "type": "string",
2593
+ "enum": [
2594
+ "PR_TITLE",
2595
+ "COMMIT_OR_PR_TITLE"
2596
+ ],
2597
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
2598
+ },
2599
+ "squash_merge_commit_message": {
2600
+ "type": "string",
2601
+ "enum": [
2602
+ "PR_BODY",
2603
+ "COMMIT_MESSAGES",
2604
+ "BLANK"
2605
+ ],
2606
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
2607
+ },
2608
+ "merge_commit_title": {
2609
+ "type": "string",
2610
+ "enum": [
2611
+ "PR_TITLE",
2612
+ "MERGE_MESSAGE"
2613
+ ],
2614
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
2615
+ },
2616
+ "merge_commit_message": {
2617
+ "type": "string",
2618
+ "enum": [
2619
+ "PR_BODY",
2620
+ "PR_TITLE",
2621
+ "BLANK"
2622
+ ],
2623
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
2624
+ },
2625
+ "allow_merge_commit": {
2626
+ "description": "Whether to allow merge commits for pull requests.",
2627
+ "default": true,
2628
+ "type": "boolean",
2629
+ "example": true
2630
+ },
2631
+ "allow_forking": {
2632
+ "description": "Whether to allow forking this repo",
2633
+ "type": "boolean"
2634
+ },
2635
+ "web_commit_signoff_required": {
2636
+ "description": "Whether to require contributors to sign off on web-based commits",
2637
+ "default": false,
2638
+ "type": "boolean"
2639
+ },
2640
+ "open_issues": {
2641
+ "type": "integer"
2642
+ },
2643
+ "watchers": {
2644
+ "type": "integer"
2645
+ },
2646
+ "master_branch": {
2647
+ "type": "string"
2648
+ },
2649
+ "starred_at": {
2650
+ "type": "string",
2651
+ "example": "\"2020-07-09T00:17:42Z\""
2652
+ },
2653
+ "anonymous_access_enabled": {
2654
+ "type": "boolean",
2655
+ "description": "Whether anonymous git access is enabled for this repository"
2656
+ },
2657
+ "code_search_index_status": {
2658
+ "type": "object",
2659
+ "description": "The status of the code search index for this repository",
2660
+ "properties": {
2661
+ "lexical_search_ok": {
2662
+ "type": "boolean"
2663
+ },
2664
+ "lexical_commit_sha": {
2665
+ "type": "string"
2666
+ }
2667
+ }
2668
+ }
2669
+ },
2670
+ "required": [
2671
+ "archive_url",
2672
+ "assignees_url",
2673
+ "blobs_url",
2674
+ "branches_url",
2675
+ "collaborators_url",
2676
+ "comments_url",
2677
+ "commits_url",
2678
+ "compare_url",
2679
+ "contents_url",
2680
+ "contributors_url",
2681
+ "deployments_url",
2682
+ "description",
2683
+ "downloads_url",
2684
+ "events_url",
2685
+ "fork",
2686
+ "forks_url",
2687
+ "full_name",
2688
+ "git_commits_url",
2689
+ "git_refs_url",
2690
+ "git_tags_url",
2691
+ "hooks_url",
2692
+ "html_url",
2693
+ "id",
2694
+ "node_id",
2695
+ "issue_comment_url",
2696
+ "issue_events_url",
2697
+ "issues_url",
2698
+ "keys_url",
2699
+ "labels_url",
2700
+ "languages_url",
2701
+ "merges_url",
2702
+ "milestones_url",
2703
+ "name",
2704
+ "notifications_url",
2705
+ "owner",
2706
+ "private",
2707
+ "pulls_url",
2708
+ "releases_url",
2709
+ "stargazers_url",
2710
+ "statuses_url",
2711
+ "subscribers_url",
2712
+ "subscription_url",
2713
+ "tags_url",
2714
+ "teams_url",
2715
+ "trees_url",
2716
+ "url",
2717
+ "clone_url",
2718
+ "default_branch",
2719
+ "forks",
2720
+ "forks_count",
2721
+ "git_url",
2722
+ "has_downloads",
2723
+ "has_issues",
2724
+ "has_projects",
2725
+ "has_wiki",
2726
+ "has_pages",
2727
+ "homepage",
2728
+ "language",
2729
+ "archived",
2730
+ "disabled",
2731
+ "mirror_url",
2732
+ "open_issues",
2733
+ "open_issues_count",
2734
+ "license",
2735
+ "pushed_at",
2736
+ "size",
2737
+ "ssh_url",
2738
+ "stargazers_count",
2739
+ "svn_url",
2740
+ "watchers",
2741
+ "watchers_count",
2742
+ "created_at",
2743
+ "updated_at"
2744
+ ],
2745
+ "x-github-breaking-changes": [
2746
+ {
2747
+ "changeset": "remove_use_squash_pr_title_as_default",
2748
+ "patch": {
2749
+ "properties": {
2750
+ "use_squash_pr_title_as_default": null
2751
+ }
2752
+ },
2753
+ "version": "2026-03-10"
2754
+ },
2755
+ {
2756
+ "changeset": "deprecate_beta_media_type",
2757
+ "patch": {
2758
+ "properties": {
2759
+ "master_branch": null
2760
+ }
2761
+ },
2762
+ "version": "2026-03-10"
2763
+ },
2764
+ {
2765
+ "changeset": "remove_has_downloads",
2766
+ "patch": {
2767
+ "properties": {
2768
+ "has_downloads": null
2769
+ },
2770
+ "required": [
2771
+ "archive_url",
2772
+ "assignees_url",
2773
+ "blobs_url",
2774
+ "branches_url",
2775
+ "collaborators_url",
2776
+ "comments_url",
2777
+ "commits_url",
2778
+ "compare_url",
2779
+ "contents_url",
2780
+ "contributors_url",
2781
+ "deployments_url",
2782
+ "description",
2783
+ "downloads_url",
2784
+ "events_url",
2785
+ "fork",
2786
+ "forks_url",
2787
+ "full_name",
2788
+ "git_commits_url",
2789
+ "git_refs_url",
2790
+ "git_tags_url",
2791
+ "hooks_url",
2792
+ "html_url",
2793
+ "id",
2794
+ "node_id",
2795
+ "issue_comment_url",
2796
+ "issue_events_url",
2797
+ "issues_url",
2798
+ "keys_url",
2799
+ "labels_url",
2800
+ "languages_url",
2801
+ "merges_url",
2802
+ "milestones_url",
2803
+ "name",
2804
+ "notifications_url",
2805
+ "owner",
2806
+ "private",
2807
+ "pulls_url",
2808
+ "releases_url",
2809
+ "stargazers_url",
2810
+ "statuses_url",
2811
+ "subscribers_url",
2812
+ "subscription_url",
2813
+ "tags_url",
2814
+ "teams_url",
2815
+ "trees_url",
2816
+ "url",
2817
+ "clone_url",
2818
+ "default_branch",
2819
+ "forks",
2820
+ "forks_count",
2821
+ "git_url",
2822
+ "has_issues",
2823
+ "has_projects",
2824
+ "has_wiki",
2825
+ "has_pages",
2826
+ "homepage",
2827
+ "language",
2828
+ "archived",
2829
+ "disabled",
2830
+ "mirror_url",
2831
+ "open_issues",
2832
+ "open_issues_count",
2833
+ "license",
2834
+ "pushed_at",
2835
+ "size",
2836
+ "ssh_url",
2837
+ "stargazers_count",
2838
+ "svn_url",
2839
+ "watchers",
2840
+ "watchers_count",
2841
+ "created_at",
2842
+ "updated_at"
2843
+ ]
2844
+ },
2845
+ "version": "2026-03-10"
2846
+ }
2847
+ ]
2848
+ },
2849
+ "sha": {
2850
+ "type": "string"
2851
+ },
2852
+ "user": {
2853
+ "title": "Simple User",
2854
+ "description": "A GitHub user.",
2855
+ "type": "object",
2856
+ "properties": {
2857
+ "name": {
2858
+ "nullable": true,
2859
+ "type": "string"
2860
+ },
2861
+ "email": {
2862
+ "nullable": true,
2863
+ "type": "string"
2864
+ },
2865
+ "login": {
2866
+ "type": "string",
2867
+ "example": "octocat"
2868
+ },
2869
+ "id": {
2870
+ "type": "integer",
2871
+ "format": "int64",
2872
+ "example": 1
2873
+ },
2874
+ "node_id": {
2875
+ "type": "string",
2876
+ "example": "MDQ6VXNlcjE="
2877
+ },
2878
+ "avatar_url": {
2879
+ "type": "string",
2880
+ "format": "uri",
2881
+ "example": "https://github.com/images/error/octocat_happy.gif"
2882
+ },
2883
+ "gravatar_id": {
2884
+ "type": "string",
2885
+ "example": "41d064eb2195891e12d0413f63227ea7",
2886
+ "nullable": true
2887
+ },
2888
+ "url": {
2889
+ "type": "string",
2890
+ "format": "uri",
2891
+ "example": "https://api.github.com/users/octocat"
2892
+ },
2893
+ "html_url": {
2894
+ "type": "string",
2895
+ "format": "uri",
2896
+ "example": "https://github.com/octocat"
2897
+ },
2898
+ "followers_url": {
2899
+ "type": "string",
2900
+ "format": "uri",
2901
+ "example": "https://api.github.com/users/octocat/followers"
2902
+ },
2903
+ "following_url": {
2904
+ "type": "string",
2905
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
2906
+ },
2907
+ "gists_url": {
2908
+ "type": "string",
2909
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
2910
+ },
2911
+ "starred_url": {
2912
+ "type": "string",
2913
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
2914
+ },
2915
+ "subscriptions_url": {
2916
+ "type": "string",
2917
+ "format": "uri",
2918
+ "example": "https://api.github.com/users/octocat/subscriptions"
2919
+ },
2920
+ "organizations_url": {
2921
+ "type": "string",
2922
+ "format": "uri",
2923
+ "example": "https://api.github.com/users/octocat/orgs"
2924
+ },
2925
+ "repos_url": {
2926
+ "type": "string",
2927
+ "format": "uri",
2928
+ "example": "https://api.github.com/users/octocat/repos"
2929
+ },
2930
+ "events_url": {
2931
+ "type": "string",
2932
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
2933
+ },
2934
+ "received_events_url": {
2935
+ "type": "string",
2936
+ "format": "uri",
2937
+ "example": "https://api.github.com/users/octocat/received_events"
2938
+ },
2939
+ "type": {
2940
+ "type": "string",
2941
+ "example": "User"
2942
+ },
2943
+ "site_admin": {
2944
+ "type": "boolean"
2945
+ },
2946
+ "starred_at": {
2947
+ "type": "string",
2948
+ "example": "\"2020-07-09T00:17:55Z\""
2949
+ },
2950
+ "user_view_type": {
2951
+ "type": "string",
2952
+ "example": "public"
2953
+ }
2954
+ },
2955
+ "required": [
2956
+ "avatar_url",
2957
+ "events_url",
2958
+ "followers_url",
2959
+ "following_url",
2960
+ "gists_url",
2961
+ "gravatar_id",
2962
+ "html_url",
2963
+ "id",
2964
+ "node_id",
2965
+ "login",
2966
+ "organizations_url",
2967
+ "received_events_url",
2968
+ "repos_url",
2969
+ "site_admin",
2970
+ "starred_url",
2971
+ "subscriptions_url",
2972
+ "type",
2973
+ "url"
2974
+ ]
2975
+ }
2976
+ },
2977
+ "required": [
2978
+ "label",
2979
+ "ref",
2980
+ "repo",
2981
+ "sha",
2982
+ "user"
2983
+ ]
2984
+ },
2985
+ "_links": {
2986
+ "type": "object",
2987
+ "properties": {
2988
+ "comments": {
2989
+ "title": "Link",
2990
+ "description": "Hypermedia Link",
2991
+ "type": "object",
2992
+ "properties": {
2993
+ "href": {
2994
+ "type": "string"
2995
+ }
2996
+ },
2997
+ "required": [
2998
+ "href"
2999
+ ]
3000
+ },
3001
+ "commits": {
3002
+ "title": "Link",
3003
+ "description": "Hypermedia Link",
3004
+ "type": "object",
3005
+ "properties": {
3006
+ "href": {
3007
+ "type": "string"
3008
+ }
3009
+ },
3010
+ "required": [
3011
+ "href"
3012
+ ]
3013
+ },
3014
+ "statuses": {
3015
+ "title": "Link",
3016
+ "description": "Hypermedia Link",
3017
+ "type": "object",
3018
+ "properties": {
3019
+ "href": {
3020
+ "type": "string"
3021
+ }
3022
+ },
3023
+ "required": [
3024
+ "href"
3025
+ ]
3026
+ },
3027
+ "html": {
3028
+ "title": "Link",
3029
+ "description": "Hypermedia Link",
3030
+ "type": "object",
3031
+ "properties": {
3032
+ "href": {
3033
+ "type": "string"
3034
+ }
3035
+ },
3036
+ "required": [
3037
+ "href"
3038
+ ]
3039
+ },
3040
+ "issue": {
3041
+ "title": "Link",
3042
+ "description": "Hypermedia Link",
3043
+ "type": "object",
3044
+ "properties": {
3045
+ "href": {
3046
+ "type": "string"
3047
+ }
3048
+ },
3049
+ "required": [
3050
+ "href"
3051
+ ]
3052
+ },
3053
+ "review_comments": {
3054
+ "title": "Link",
3055
+ "description": "Hypermedia Link",
3056
+ "type": "object",
3057
+ "properties": {
3058
+ "href": {
3059
+ "type": "string"
3060
+ }
3061
+ },
3062
+ "required": [
3063
+ "href"
3064
+ ]
3065
+ },
3066
+ "review_comment": {
3067
+ "title": "Link",
3068
+ "description": "Hypermedia Link",
3069
+ "type": "object",
3070
+ "properties": {
3071
+ "href": {
3072
+ "type": "string"
3073
+ }
3074
+ },
3075
+ "required": [
3076
+ "href"
3077
+ ]
3078
+ },
3079
+ "self": {
3080
+ "title": "Link",
3081
+ "description": "Hypermedia Link",
3082
+ "type": "object",
3083
+ "properties": {
3084
+ "href": {
3085
+ "type": "string"
3086
+ }
3087
+ },
3088
+ "required": [
3089
+ "href"
3090
+ ]
3091
+ }
3092
+ },
3093
+ "required": [
3094
+ "comments",
3095
+ "commits",
3096
+ "statuses",
3097
+ "html",
3098
+ "issue",
3099
+ "review_comments",
3100
+ "review_comment",
3101
+ "self"
3102
+ ]
3103
+ },
3104
+ "author_association": {
3105
+ "title": "author_association",
3106
+ "type": "string",
3107
+ "example": "OWNER",
3108
+ "description": "How the author is associated with the repository.",
3109
+ "enum": [
3110
+ "COLLABORATOR",
3111
+ "CONTRIBUTOR",
3112
+ "FIRST_TIMER",
3113
+ "FIRST_TIME_CONTRIBUTOR",
3114
+ "MANNEQUIN",
3115
+ "MEMBER",
3116
+ "NONE",
3117
+ "OWNER"
3118
+ ]
3119
+ },
3120
+ "auto_merge": {
3121
+ "title": "Auto merge",
3122
+ "description": "The status of auto merging a pull request.",
3123
+ "type": "object",
3124
+ "properties": {
3125
+ "enabled_by": {
3126
+ "title": "Simple User",
3127
+ "description": "A GitHub user.",
3128
+ "type": "object",
3129
+ "properties": {
3130
+ "name": {
3131
+ "nullable": true,
3132
+ "type": "string"
3133
+ },
3134
+ "email": {
3135
+ "nullable": true,
3136
+ "type": "string"
3137
+ },
3138
+ "login": {
3139
+ "type": "string",
3140
+ "example": "octocat"
3141
+ },
3142
+ "id": {
3143
+ "type": "integer",
3144
+ "format": "int64",
3145
+ "example": 1
3146
+ },
3147
+ "node_id": {
3148
+ "type": "string",
3149
+ "example": "MDQ6VXNlcjE="
3150
+ },
3151
+ "avatar_url": {
3152
+ "type": "string",
3153
+ "format": "uri",
3154
+ "example": "https://github.com/images/error/octocat_happy.gif"
3155
+ },
3156
+ "gravatar_id": {
3157
+ "type": "string",
3158
+ "example": "41d064eb2195891e12d0413f63227ea7",
3159
+ "nullable": true
3160
+ },
3161
+ "url": {
3162
+ "type": "string",
3163
+ "format": "uri",
3164
+ "example": "https://api.github.com/users/octocat"
3165
+ },
3166
+ "html_url": {
3167
+ "type": "string",
3168
+ "format": "uri",
3169
+ "example": "https://github.com/octocat"
3170
+ },
3171
+ "followers_url": {
3172
+ "type": "string",
3173
+ "format": "uri",
3174
+ "example": "https://api.github.com/users/octocat/followers"
3175
+ },
3176
+ "following_url": {
3177
+ "type": "string",
3178
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
3179
+ },
3180
+ "gists_url": {
3181
+ "type": "string",
3182
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
3183
+ },
3184
+ "starred_url": {
3185
+ "type": "string",
3186
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
3187
+ },
3188
+ "subscriptions_url": {
3189
+ "type": "string",
3190
+ "format": "uri",
3191
+ "example": "https://api.github.com/users/octocat/subscriptions"
3192
+ },
3193
+ "organizations_url": {
3194
+ "type": "string",
3195
+ "format": "uri",
3196
+ "example": "https://api.github.com/users/octocat/orgs"
3197
+ },
3198
+ "repos_url": {
3199
+ "type": "string",
3200
+ "format": "uri",
3201
+ "example": "https://api.github.com/users/octocat/repos"
3202
+ },
3203
+ "events_url": {
3204
+ "type": "string",
3205
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
3206
+ },
3207
+ "received_events_url": {
3208
+ "type": "string",
3209
+ "format": "uri",
3210
+ "example": "https://api.github.com/users/octocat/received_events"
3211
+ },
3212
+ "type": {
3213
+ "type": "string",
3214
+ "example": "User"
3215
+ },
3216
+ "site_admin": {
3217
+ "type": "boolean"
3218
+ },
3219
+ "starred_at": {
3220
+ "type": "string",
3221
+ "example": "\"2020-07-09T00:17:55Z\""
3222
+ },
3223
+ "user_view_type": {
3224
+ "type": "string",
3225
+ "example": "public"
3226
+ }
3227
+ },
3228
+ "required": [
3229
+ "avatar_url",
3230
+ "events_url",
3231
+ "followers_url",
3232
+ "following_url",
3233
+ "gists_url",
3234
+ "gravatar_id",
3235
+ "html_url",
3236
+ "id",
3237
+ "node_id",
3238
+ "login",
3239
+ "organizations_url",
3240
+ "received_events_url",
3241
+ "repos_url",
3242
+ "site_admin",
3243
+ "starred_url",
3244
+ "subscriptions_url",
3245
+ "type",
3246
+ "url"
3247
+ ]
3248
+ },
3249
+ "merge_method": {
3250
+ "type": "string",
3251
+ "description": "The merge method to use.",
3252
+ "enum": [
3253
+ "merge",
3254
+ "squash",
3255
+ "rebase"
3256
+ ]
3257
+ },
3258
+ "commit_title": {
3259
+ "type": "string",
3260
+ "description": "Title for the merge commit message."
3261
+ },
3262
+ "commit_message": {
3263
+ "type": "string",
3264
+ "description": "Commit message for the merge commit."
3265
+ }
3266
+ },
3267
+ "required": [
3268
+ "enabled_by",
3269
+ "merge_method",
3270
+ "commit_title",
3271
+ "commit_message"
3272
+ ],
3273
+ "nullable": true
3274
+ },
3275
+ "draft": {
3276
+ "description": "Indicates whether or not the pull request is a draft.",
3277
+ "example": false,
3278
+ "type": "boolean"
3279
+ },
3280
+ "merged": {
3281
+ "type": "boolean"
3282
+ },
3283
+ "mergeable": {
3284
+ "type": "boolean",
3285
+ "example": true,
3286
+ "nullable": true
3287
+ },
3288
+ "rebaseable": {
3289
+ "type": "boolean",
3290
+ "example": true,
3291
+ "nullable": true
3292
+ },
3293
+ "mergeable_state": {
3294
+ "type": "string",
3295
+ "example": "clean"
3296
+ },
3297
+ "merged_by": {
3298
+ "title": "Simple User",
3299
+ "description": "A GitHub user.",
3300
+ "type": "object",
3301
+ "properties": {
3302
+ "name": {
3303
+ "nullable": true,
3304
+ "type": "string"
3305
+ },
3306
+ "email": {
3307
+ "nullable": true,
3308
+ "type": "string"
3309
+ },
3310
+ "login": {
3311
+ "type": "string",
3312
+ "example": "octocat"
3313
+ },
3314
+ "id": {
3315
+ "type": "integer",
3316
+ "format": "int64",
3317
+ "example": 1
3318
+ },
3319
+ "node_id": {
3320
+ "type": "string",
3321
+ "example": "MDQ6VXNlcjE="
3322
+ },
3323
+ "avatar_url": {
3324
+ "type": "string",
3325
+ "format": "uri",
3326
+ "example": "https://github.com/images/error/octocat_happy.gif"
3327
+ },
3328
+ "gravatar_id": {
3329
+ "type": "string",
3330
+ "example": "41d064eb2195891e12d0413f63227ea7",
3331
+ "nullable": true
3332
+ },
3333
+ "url": {
3334
+ "type": "string",
3335
+ "format": "uri",
3336
+ "example": "https://api.github.com/users/octocat"
3337
+ },
3338
+ "html_url": {
3339
+ "type": "string",
3340
+ "format": "uri",
3341
+ "example": "https://github.com/octocat"
3342
+ },
3343
+ "followers_url": {
3344
+ "type": "string",
3345
+ "format": "uri",
3346
+ "example": "https://api.github.com/users/octocat/followers"
3347
+ },
3348
+ "following_url": {
3349
+ "type": "string",
3350
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
3351
+ },
3352
+ "gists_url": {
3353
+ "type": "string",
3354
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
3355
+ },
3356
+ "starred_url": {
3357
+ "type": "string",
3358
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
3359
+ },
3360
+ "subscriptions_url": {
3361
+ "type": "string",
3362
+ "format": "uri",
3363
+ "example": "https://api.github.com/users/octocat/subscriptions"
3364
+ },
3365
+ "organizations_url": {
3366
+ "type": "string",
3367
+ "format": "uri",
3368
+ "example": "https://api.github.com/users/octocat/orgs"
3369
+ },
3370
+ "repos_url": {
3371
+ "type": "string",
3372
+ "format": "uri",
3373
+ "example": "https://api.github.com/users/octocat/repos"
3374
+ },
3375
+ "events_url": {
3376
+ "type": "string",
3377
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
3378
+ },
3379
+ "received_events_url": {
3380
+ "type": "string",
3381
+ "format": "uri",
3382
+ "example": "https://api.github.com/users/octocat/received_events"
3383
+ },
3384
+ "type": {
3385
+ "type": "string",
3386
+ "example": "User"
3387
+ },
3388
+ "site_admin": {
3389
+ "type": "boolean"
3390
+ },
3391
+ "starred_at": {
3392
+ "type": "string",
3393
+ "example": "\"2020-07-09T00:17:55Z\""
3394
+ },
3395
+ "user_view_type": {
3396
+ "type": "string",
3397
+ "example": "public"
3398
+ }
3399
+ },
3400
+ "required": [
3401
+ "avatar_url",
3402
+ "events_url",
3403
+ "followers_url",
3404
+ "following_url",
3405
+ "gists_url",
3406
+ "gravatar_id",
3407
+ "html_url",
3408
+ "id",
3409
+ "node_id",
3410
+ "login",
3411
+ "organizations_url",
3412
+ "received_events_url",
3413
+ "repos_url",
3414
+ "site_admin",
3415
+ "starred_url",
3416
+ "subscriptions_url",
3417
+ "type",
3418
+ "url"
3419
+ ],
3420
+ "nullable": true
3421
+ },
3422
+ "comments": {
3423
+ "type": "integer",
3424
+ "example": 10
3425
+ },
3426
+ "review_comments": {
3427
+ "type": "integer",
3428
+ "example": 0
3429
+ },
3430
+ "maintainer_can_modify": {
3431
+ "description": "Indicates whether maintainers can modify the pull request.",
3432
+ "example": true,
3433
+ "type": "boolean"
3434
+ },
3435
+ "commits": {
3436
+ "type": "integer",
3437
+ "example": 3
3438
+ },
3439
+ "additions": {
3440
+ "type": "integer",
3441
+ "example": 100
3442
+ },
3443
+ "deletions": {
3444
+ "type": "integer",
3445
+ "example": 3
3446
+ },
3447
+ "changed_files": {
3448
+ "type": "integer",
3449
+ "example": 5
3450
+ }
3451
+ },
3452
+ "required": [
3453
+ "_links",
3454
+ "assignee",
3455
+ "labels",
3456
+ "base",
3457
+ "body",
3458
+ "closed_at",
3459
+ "comments_url",
3460
+ "commits_url",
3461
+ "created_at",
3462
+ "diff_url",
3463
+ "head",
3464
+ "html_url",
3465
+ "id",
3466
+ "node_id",
3467
+ "issue_url",
3468
+ "merge_commit_sha",
3469
+ "merged_at",
3470
+ "milestone",
3471
+ "number",
3472
+ "patch_url",
3473
+ "review_comment_url",
3474
+ "review_comments_url",
3475
+ "statuses_url",
3476
+ "state",
3477
+ "locked",
3478
+ "title",
3479
+ "updated_at",
3480
+ "url",
3481
+ "user",
3482
+ "author_association",
3483
+ "auto_merge",
3484
+ "additions",
3485
+ "changed_files",
3486
+ "comments",
3487
+ "commits",
3488
+ "deletions",
3489
+ "mergeable",
3490
+ "mergeable_state",
3491
+ "merged",
3492
+ "maintainer_can_modify",
3493
+ "merged_by",
3494
+ "review_comments"
3495
+ ],
3496
+ "x-github-breaking-changes": [
3497
+ {
3498
+ "changeset": "remove_pull_request_merge_commit_sha",
3499
+ "patch": {
3500
+ "properties": {
3501
+ "merge_commit_sha": null
3502
+ },
3503
+ "required": [
3504
+ "_links",
3505
+ "assignee",
3506
+ "labels",
3507
+ "base",
3508
+ "body",
3509
+ "closed_at",
3510
+ "comments_url",
3511
+ "commits_url",
3512
+ "created_at",
3513
+ "diff_url",
3514
+ "head",
3515
+ "html_url",
3516
+ "id",
3517
+ "node_id",
3518
+ "issue_url",
3519
+ "merged_at",
3520
+ "milestone",
3521
+ "number",
3522
+ "patch_url",
3523
+ "review_comment_url",
3524
+ "review_comments_url",
3525
+ "statuses_url",
3526
+ "state",
3527
+ "locked",
3528
+ "title",
3529
+ "updated_at",
3530
+ "url",
3531
+ "user",
3532
+ "author_association",
3533
+ "auto_merge",
3534
+ "additions",
3535
+ "changed_files",
3536
+ "comments",
3537
+ "commits",
3538
+ "deletions",
3539
+ "mergeable",
3540
+ "mergeable_state",
3541
+ "merged",
3542
+ "maintainer_can_modify",
3543
+ "merged_by",
3544
+ "review_comments"
3545
+ ]
3546
+ },
3547
+ "version": "2026-03-10"
3548
+ },
3549
+ {
3550
+ "changeset": "remove_singular_assignee_from_issues_and_pull_requests",
3551
+ "patch": {
3552
+ "properties": {
3553
+ "assignee": null
3554
+ },
3555
+ "required": [
3556
+ "_links",
3557
+ "labels",
3558
+ "base",
3559
+ "body",
3560
+ "closed_at",
3561
+ "comments_url",
3562
+ "commits_url",
3563
+ "created_at",
3564
+ "diff_url",
3565
+ "head",
3566
+ "html_url",
3567
+ "id",
3568
+ "node_id",
3569
+ "issue_url",
3570
+ "merged_at",
3571
+ "milestone",
3572
+ "number",
3573
+ "patch_url",
3574
+ "review_comment_url",
3575
+ "review_comments_url",
3576
+ "statuses_url",
3577
+ "state",
3578
+ "locked",
3579
+ "title",
3580
+ "updated_at",
3581
+ "url",
3582
+ "user",
3583
+ "author_association",
3584
+ "auto_merge",
3585
+ "additions",
3586
+ "changed_files",
3587
+ "comments",
3588
+ "commits",
3589
+ "deletions",
3590
+ "mergeable",
3591
+ "mergeable_state",
3592
+ "merged",
3593
+ "maintainer_can_modify",
3594
+ "merged_by",
3595
+ "review_comments"
3596
+ ]
3597
+ },
3598
+ "version": "2026-03-10"
3599
+ }
3600
+ ]
3601
+ }