This repository has been archived by the owner on Jul 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.json
1652 lines (1652 loc) · 66.5 KB
/
index.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openapi": "3.0.1",
"info": {
"version": "9.0.0",
"title": "GitHub v3 REST API",
"description": "# Introduction\n\nThis describes the resources that make up the official GitHub REST API v3. If you have any problems or requests, please contact [GitHub Support](https://github.com/contact).",
"license": { "name": "MIT" },
"termsOfService": "https://help.github.com/articles/github-terms-of-service/",
"contact": { "name": "Support", "email": "[email protected]" }
},
"servers": [{ "url": "https://api.github.com" }],
"externalDocs": {
"description": "GitHub v3 REST API",
"url": "https://developer.github.com/v3/"
},
"paths": {
"/app": { "get": { "$ref": "operations/apps/get-authenticated.json" } },
"/app-manifests/{code}/conversions": {
"post": { "$ref": "operations/apps/create-from-manifest.json" }
},
"/app/installations": {
"get": { "$ref": "operations/apps/list-installations.json" }
},
"/app/installations/{installation_id}": {
"get": { "$ref": "operations/apps/get-installation.json" },
"delete": { "$ref": "operations/apps/delete-installation.json" }
},
"/app/installations/{installation_id}/access_tokens": {
"post": {
"$ref": "operations/apps/create-installation-access-token.json"
}
},
"/app/installations/{installation_id}/suspended": {
"put": { "$ref": "operations/apps/suspend-installation.json" },
"delete": { "$ref": "operations/apps/unsuspend-installation.json" }
},
"/applications/grants": {
"get": { "$ref": "operations/oauth-authorizations/list-grants.json" }
},
"/applications/grants/{grant_id}": {
"get": { "$ref": "operations/oauth-authorizations/get-grant.json" },
"delete": { "$ref": "operations/oauth-authorizations/delete-grant.json" }
},
"/applications/{client_id}/grant": {
"delete": { "$ref": "operations/apps/delete-authorization.json" }
},
"/applications/{client_id}/grants/{access_token}": {
"delete": { "$ref": "operations/apps/revoke-grant-for-application.json" }
},
"/applications/{client_id}/token": {
"post": { "$ref": "operations/apps/check-token.json" },
"patch": { "$ref": "operations/apps/reset-token.json" },
"delete": { "$ref": "operations/apps/delete-token.json" }
},
"/applications/{client_id}/tokens/{access_token}": {
"get": { "$ref": "operations/apps/check-authorization.json" },
"post": { "$ref": "operations/apps/reset-authorization.json" },
"delete": {
"$ref": "operations/apps/revoke-authorization-for-application.json"
}
},
"/apps/{app_slug}": {
"get": { "$ref": "operations/apps/get-by-slug.json" }
},
"/authorizations": {
"get": {
"$ref": "operations/oauth-authorizations/list-authorizations.json"
},
"post": {
"$ref": "operations/oauth-authorizations/create-authorization.json"
}
},
"/authorizations/clients/{client_id}": {
"put": {
"$ref": "operations/oauth-authorizations/get-or-create-authorization-for-app.json"
}
},
"/authorizations/clients/{client_id}/{fingerprint}": {
"put": {
"$ref": "operations/oauth-authorizations/get-or-create-authorization-for-app-and-fingerprint.json"
}
},
"/authorizations/{authorization_id}": {
"get": {
"$ref": "operations/oauth-authorizations/get-authorization.json"
},
"patch": {
"$ref": "operations/oauth-authorizations/update-authorization.json"
},
"delete": {
"$ref": "operations/oauth-authorizations/delete-authorization.json"
}
},
"/codes_of_conduct": {
"get": {
"$ref": "operations/codes-of-conduct/get-all-codes-of-conduct.json"
}
},
"/codes_of_conduct/{key}": {
"get": { "$ref": "operations/codes-of-conduct/get-conduct-code.json" }
},
"/content_references/{content_reference_id}/attachments": {
"post": { "$ref": "operations/apps/create-content-attachment.json" }
},
"/emojis": { "get": { "$ref": "operations/emojis/get.json" } },
"/events": {
"get": { "$ref": "operations/activity/list-public-events.json" }
},
"/feeds": { "get": { "$ref": "operations/activity/get-feeds.json" } },
"/gists": {
"get": { "$ref": "operations/gists/list.json" },
"post": { "$ref": "operations/gists/create.json" }
},
"/gists/public": { "get": { "$ref": "operations/gists/list-public.json" } },
"/gists/starred": {
"get": { "$ref": "operations/gists/list-starred.json" }
},
"/gists/{gist_id}": {
"get": { "$ref": "operations/gists/get.json" },
"patch": { "$ref": "operations/gists/update.json" },
"delete": { "$ref": "operations/gists/delete.json" }
},
"/gists/{gist_id}/comments": {
"get": { "$ref": "operations/gists/list-comments.json" },
"post": { "$ref": "operations/gists/create-comment.json" }
},
"/gists/{gist_id}/comments/{comment_id}": {
"get": { "$ref": "operations/gists/get-comment.json" },
"patch": { "$ref": "operations/gists/update-comment.json" },
"delete": { "$ref": "operations/gists/delete-comment.json" }
},
"/gists/{gist_id}/commits": {
"get": { "$ref": "operations/gists/list-commits.json" }
},
"/gists/{gist_id}/forks": {
"post": { "$ref": "operations/gists/fork.json" },
"get": { "$ref": "operations/gists/list-forks.json" }
},
"/gists/{gist_id}/star": {
"put": { "$ref": "operations/gists/star.json" },
"delete": { "$ref": "operations/gists/unstar.json" },
"get": { "$ref": "operations/gists/check-is-starred.json" }
},
"/gists/{gist_id}/{sha}": {
"get": { "$ref": "operations/gists/get-revision.json" }
},
"/gitignore/templates": {
"get": { "$ref": "operations/gitignore/get-all-templates.json" }
},
"/gitignore/templates/{name}": {
"get": { "$ref": "operations/gitignore/get-template.json" }
},
"/installation/repositories": {
"get": {
"$ref": "operations/apps/list-repos-accessible-to-installation.json"
}
},
"/installation/token": {
"delete": {
"$ref": "operations/apps/revoke-installation-access-token.json"
}
},
"/issues": { "get": { "$ref": "operations/issues/list.json" } },
"/licenses": {
"get": { "$ref": "operations/licenses/get-all-commonly-used.json" }
},
"/licenses/{license}": {
"get": { "$ref": "operations/licenses/get.json" }
},
"/markdown": { "post": { "$ref": "operations/markdown/render.json" } },
"/markdown/raw": {
"post": { "$ref": "operations/markdown/render-raw.json" }
},
"/marketplace_listing/accounts/{account_id}": {
"get": {
"$ref": "operations/apps/get-subscription-plan-for-account.json"
}
},
"/marketplace_listing/plans": {
"get": { "$ref": "operations/apps/list-plans.json" }
},
"/marketplace_listing/plans/{plan_id}/accounts": {
"get": { "$ref": "operations/apps/list-accounts-for-plan.json" }
},
"/marketplace_listing/stubbed/accounts/{account_id}": {
"get": {
"$ref": "operations/apps/get-subscription-plan-for-account-stubbed.json"
}
},
"/marketplace_listing/stubbed/plans": {
"get": { "$ref": "operations/apps/list-plans-stubbed.json" }
},
"/marketplace_listing/stubbed/plans/{plan_id}/accounts": {
"get": { "$ref": "operations/apps/list-accounts-for-plan-stubbed.json" }
},
"/meta": { "get": { "$ref": "operations/meta/get.json" } },
"/networks/{owner}/{repo}/events": {
"get": {
"$ref": "operations/activity/list-public-events-for-repo-network.json"
}
},
"/notifications": {
"get": {
"$ref": "operations/activity/list-notifications-for-authenticated-user.json"
},
"put": { "$ref": "operations/activity/mark-notifications-as-read.json" }
},
"/notifications/threads/{thread_id}": {
"get": { "$ref": "operations/activity/get-thread.json" },
"patch": { "$ref": "operations/activity/mark-thread-as-read.json" }
},
"/notifications/threads/{thread_id}/subscription": {
"get": {
"$ref": "operations/activity/get-thread-subscription-for-authenticated-user.json"
},
"put": { "$ref": "operations/activity/set-thread-subscription.json" },
"delete": {
"$ref": "operations/activity/delete-thread-subscription.json"
}
},
"/organizations": { "get": { "$ref": "operations/orgs/list.json" } },
"/orgs/{org}": {
"get": { "$ref": "operations/orgs/get.json" },
"patch": { "$ref": "operations/orgs/update.json" }
},
"/orgs/{org}/actions/runners": {
"get": {
"$ref": "operations/actions/list-self-hosted-runners-for-org.json"
}
},
"/orgs/{org}/actions/runners/downloads": {
"get": {
"$ref": "operations/actions/list-runner-applications-for-org.json"
}
},
"/orgs/{org}/actions/runners/registration-token": {
"post": {
"$ref": "operations/actions/create-registration-token-for-org.json"
}
},
"/orgs/{org}/actions/runners/remove-token": {
"post": { "$ref": "operations/actions/create-remove-token-for-org.json" }
},
"/orgs/{org}/actions/runners/{runner_id}": {
"get": {
"$ref": "operations/actions/get-self-hosted-runner-for-org.json"
},
"delete": {
"$ref": "operations/actions/delete-self-hosted-runner-from-org.json"
}
},
"/orgs/{org}/actions/secrets": {
"get": { "$ref": "operations/actions/list-org-secrets.json" }
},
"/orgs/{org}/actions/secrets/public-key": {
"get": { "$ref": "operations/actions/get-org-public-key.json" }
},
"/orgs/{org}/actions/secrets/{secret_name}": {
"get": { "$ref": "operations/actions/get-org-secret.json" },
"put": { "$ref": "operations/actions/create-or-update-org-secret.json" },
"delete": { "$ref": "operations/actions/delete-org-secret.json" }
},
"/orgs/{org}/actions/secrets/{secret_name}/repositories": {
"get": {
"$ref": "operations/actions/list-selected-repos-for-org-secret.json"
},
"put": {
"$ref": "operations/actions/set-selected-repos-for-org-secret.json"
}
},
"/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}": {
"put": {
"$ref": "operations/actions/add-selected-repo-to-org-secret.json"
},
"delete": {
"$ref": "operations/actions/remove-selected-repo-from-org-secret.json"
}
},
"/orgs/{org}/blocks": {
"get": { "$ref": "operations/orgs/list-blocked-users.json" }
},
"/orgs/{org}/blocks/{username}": {
"get": { "$ref": "operations/orgs/check-blocked-user.json" },
"put": { "$ref": "operations/orgs/block-user.json" },
"delete": { "$ref": "operations/orgs/unblock-user.json" }
},
"/orgs/{org}/credential-authorizations": {
"get": { "$ref": "operations/orgs/list-saml-sso-authorizations.json" }
},
"/orgs/{org}/credential-authorizations/{credential_id}": {
"delete": { "$ref": "operations/orgs/remove-saml-sso-authorization.json" }
},
"/orgs/{org}/events": {
"get": { "$ref": "operations/activity/list-public-org-events.json" }
},
"/orgs/{org}/hooks": {
"get": { "$ref": "operations/orgs/list-webhooks.json" },
"post": { "$ref": "operations/orgs/create-webhook.json" }
},
"/orgs/{org}/hooks/{hook_id}": {
"get": { "$ref": "operations/orgs/get-webhook.json" },
"patch": { "$ref": "operations/orgs/update-webhook.json" },
"delete": { "$ref": "operations/orgs/delete-webhook.json" }
},
"/orgs/{org}/hooks/{hook_id}/pings": {
"post": { "$ref": "operations/orgs/ping-webhook.json" }
},
"/orgs/{org}/installation": {
"get": { "$ref": "operations/apps/get-org-installation.json" }
},
"/orgs/{org}/installations": {
"get": { "$ref": "operations/orgs/list-app-installations.json" }
},
"/orgs/{org}/interaction-limits": {
"get": {
"$ref": "operations/interactions/get-restrictions-for-org.json"
},
"put": {
"$ref": "operations/interactions/set-restrictions-for-org.json"
},
"delete": {
"$ref": "operations/interactions/remove-restrictions-for-org.json"
}
},
"/orgs/{org}/invitations": {
"get": { "$ref": "operations/orgs/list-pending-invitations.json" },
"post": { "$ref": "operations/orgs/create-invitation.json" }
},
"/orgs/{org}/invitations/{invitation_id}/teams": {
"get": { "$ref": "operations/orgs/list-invitation-teams.json" }
},
"/orgs/{org}/issues": {
"get": { "$ref": "operations/issues/list-for-org.json" }
},
"/orgs/{org}/members": {
"get": { "$ref": "operations/orgs/list-members.json" }
},
"/orgs/{org}/members/{username}": {
"get": { "$ref": "operations/orgs/check-membership-for-user.json" },
"delete": { "$ref": "operations/orgs/remove-member.json" }
},
"/orgs/{org}/memberships/{username}": {
"get": { "$ref": "operations/orgs/get-membership-for-user.json" },
"put": { "$ref": "operations/orgs/set-membership-for-user.json" },
"delete": { "$ref": "operations/orgs/remove-membership-for-user.json" }
},
"/orgs/{org}/migrations": {
"post": { "$ref": "operations/migrations/start-for-org.json" },
"get": { "$ref": "operations/migrations/list-for-org.json" }
},
"/orgs/{org}/migrations/{migration_id}": {
"get": { "$ref": "operations/migrations/get-status-for-org.json" }
},
"/orgs/{org}/migrations/{migration_id}/archive": {
"get": { "$ref": "operations/migrations/download-archive-for-org.json" },
"delete": { "$ref": "operations/migrations/delete-archive-for-org.json" }
},
"/orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock": {
"delete": { "$ref": "operations/migrations/unlock-repo-for-org.json" }
},
"/orgs/{org}/migrations/{migration_id}/repositories": {
"get": { "$ref": "operations/migrations/list-repos-for-org.json" }
},
"/orgs/{org}/outside_collaborators": {
"get": { "$ref": "operations/orgs/list-outside-collaborators.json" }
},
"/orgs/{org}/outside_collaborators/{username}": {
"delete": { "$ref": "operations/orgs/remove-outside-collaborator.json" },
"put": {
"$ref": "operations/orgs/convert-member-to-outside-collaborator.json"
}
},
"/orgs/{org}/projects": {
"get": { "$ref": "operations/projects/list-for-org.json" },
"post": { "$ref": "operations/projects/create-for-org.json" }
},
"/orgs/{org}/public_members": {
"get": { "$ref": "operations/orgs/list-public-members.json" }
},
"/orgs/{org}/public_members/{username}": {
"get": {
"$ref": "operations/orgs/check-public-membership-for-user.json"
},
"put": {
"$ref": "operations/orgs/set-public-membership-for-authenticated-user.json"
},
"delete": {
"$ref": "operations/orgs/remove-public-membership-for-authenticated-user.json"
}
},
"/orgs/{org}/repos": {
"get": { "$ref": "operations/repos/list-for-org.json" },
"post": { "$ref": "operations/repos/create-in-org.json" }
},
"/orgs/{org}/team-sync/groups": {
"get": { "$ref": "operations/teams/list-id-p-groups-for-org.json" }
},
"/orgs/{org}/teams": {
"get": { "$ref": "operations/teams/list.json" },
"post": { "$ref": "operations/teams/create.json" }
},
"/orgs/{org}/teams/{team_slug}": {
"get": { "$ref": "operations/teams/get-by-name.json" },
"patch": { "$ref": "operations/teams/update-in-org.json" },
"delete": { "$ref": "operations/teams/delete-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/discussions": {
"get": { "$ref": "operations/teams/list-discussions-in-org.json" },
"post": { "$ref": "operations/teams/create-discussion-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}": {
"get": { "$ref": "operations/teams/get-discussion-in-org.json" },
"patch": { "$ref": "operations/teams/update-discussion-in-org.json" },
"delete": { "$ref": "operations/teams/delete-discussion-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments": {
"get": {
"$ref": "operations/teams/list-discussion-comments-in-org.json"
},
"post": {
"$ref": "operations/teams/create-discussion-comment-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}": {
"get": { "$ref": "operations/teams/get-discussion-comment-in-org.json" },
"patch": {
"$ref": "operations/teams/update-discussion-comment-in-org.json"
},
"delete": {
"$ref": "operations/teams/delete-discussion-comment-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions": {
"get": {
"$ref": "operations/reactions/list-for-team-discussion-comment-in-org.json"
},
"post": {
"$ref": "operations/reactions/create-for-team-discussion-comment-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}": {
"delete": {
"$ref": "operations/reactions/delete-for-team-discussion-comment.json"
}
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions": {
"get": {
"$ref": "operations/reactions/list-for-team-discussion-in-org.json"
},
"post": {
"$ref": "operations/reactions/create-for-team-discussion-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}": {
"delete": {
"$ref": "operations/reactions/delete-for-team-discussion.json"
}
},
"/orgs/{org}/teams/{team_slug}/invitations": {
"get": { "$ref": "operations/teams/list-pending-invitations-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/members": {
"get": { "$ref": "operations/teams/list-members-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/memberships/{username}": {
"get": { "$ref": "operations/teams/get-membership-for-user-in-org.json" },
"put": {
"$ref": "operations/teams/add-or-update-membership-for-user-in-org.json"
},
"delete": {
"$ref": "operations/teams/remove-membership-for-user-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/projects": {
"get": { "$ref": "operations/teams/list-projects-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/projects/{project_id}": {
"get": {
"$ref": "operations/teams/check-permissions-for-project-in-org.json"
},
"put": {
"$ref": "operations/teams/add-or-update-project-permissions-in-org.json"
},
"delete": { "$ref": "operations/teams/remove-project-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/repos": {
"get": { "$ref": "operations/teams/list-repos-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}": {
"get": {
"$ref": "operations/teams/check-permissions-for-repo-in-org.json"
},
"put": {
"$ref": "operations/teams/add-or-update-repo-permissions-in-org.json"
},
"delete": { "$ref": "operations/teams/remove-repo-in-org.json" }
},
"/orgs/{org}/teams/{team_slug}/team-sync/group-mappings": {
"get": { "$ref": "operations/teams/list-id-p-groups-in-org.json" },
"patch": {
"$ref": "operations/teams/create-or-update-id-p-group-connections-in-org.json"
}
},
"/orgs/{org}/teams/{team_slug}/teams": {
"get": { "$ref": "operations/teams/list-child-in-org.json" }
},
"/projects/columns/cards/{card_id}": {
"get": { "$ref": "operations/projects/get-card.json" },
"patch": { "$ref": "operations/projects/update-card.json" },
"delete": { "$ref": "operations/projects/delete-card.json" }
},
"/projects/columns/cards/{card_id}/moves": {
"post": { "$ref": "operations/projects/move-card.json" }
},
"/projects/columns/{column_id}": {
"get": { "$ref": "operations/projects/get-column.json" },
"patch": { "$ref": "operations/projects/update-column.json" },
"delete": { "$ref": "operations/projects/delete-column.json" }
},
"/projects/columns/{column_id}/cards": {
"get": { "$ref": "operations/projects/list-cards.json" },
"post": { "$ref": "operations/projects/create-card.json" }
},
"/projects/columns/{column_id}/moves": {
"post": { "$ref": "operations/projects/move-column.json" }
},
"/projects/{project_id}": {
"get": { "$ref": "operations/projects/get.json" },
"patch": { "$ref": "operations/projects/update.json" },
"delete": { "$ref": "operations/projects/delete.json" }
},
"/projects/{project_id}/collaborators": {
"get": { "$ref": "operations/projects/list-collaborators.json" }
},
"/projects/{project_id}/collaborators/{username}": {
"put": { "$ref": "operations/projects/add-collaborator.json" },
"delete": { "$ref": "operations/projects/remove-collaborator.json" }
},
"/projects/{project_id}/collaborators/{username}/permission": {
"get": { "$ref": "operations/projects/get-permission-for-user.json" }
},
"/projects/{project_id}/columns": {
"get": { "$ref": "operations/projects/list-columns.json" },
"post": { "$ref": "operations/projects/create-column.json" }
},
"/rate_limit": { "get": { "$ref": "operations/rate-limit/get.json" } },
"/reactions/{reaction_id}": {
"delete": { "$ref": "operations/reactions/delete-legacy.json" }
},
"/repos/{owner}/{repo}": {
"get": { "$ref": "operations/repos/get.json" },
"patch": { "$ref": "operations/repos/update.json" },
"delete": { "$ref": "operations/repos/delete.json" }
},
"/repos/{owner}/{repo}/actions/artifacts": {
"get": { "$ref": "operations/actions/list-artifacts-for-repo.json" }
},
"/repos/{owner}/{repo}/actions/artifacts/{artifact_id}": {
"get": { "$ref": "operations/actions/get-artifact.json" },
"delete": { "$ref": "operations/actions/delete-artifact.json" }
},
"/repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}": {
"get": { "$ref": "operations/actions/download-artifact.json" }
},
"/repos/{owner}/{repo}/actions/jobs/{job_id}": {
"get": { "$ref": "operations/actions/get-job-for-workflow-run.json" }
},
"/repos/{owner}/{repo}/actions/jobs/{job_id}/logs": {
"get": {
"$ref": "operations/actions/download-job-logs-for-workflow-run.json"
}
},
"/repos/{owner}/{repo}/actions/runners": {
"get": {
"$ref": "operations/actions/list-self-hosted-runners-for-repo.json"
}
},
"/repos/{owner}/{repo}/actions/runners/downloads": {
"get": {
"$ref": "operations/actions/list-runner-applications-for-repo.json"
}
},
"/repos/{owner}/{repo}/actions/runners/registration-token": {
"post": {
"$ref": "operations/actions/create-registration-token-for-repo.json"
}
},
"/repos/{owner}/{repo}/actions/runners/remove-token": {
"post": { "$ref": "operations/actions/create-remove-token-for-repo.json" }
},
"/repos/{owner}/{repo}/actions/runners/{runner_id}": {
"get": {
"$ref": "operations/actions/get-self-hosted-runner-for-repo.json"
},
"delete": {
"$ref": "operations/actions/delete-self-hosted-runner-from-repo.json"
}
},
"/repos/{owner}/{repo}/actions/runs": {
"get": { "$ref": "operations/actions/list-workflow-runs-for-repo.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}": {
"get": { "$ref": "operations/actions/get-workflow-run.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts": {
"get": { "$ref": "operations/actions/list-workflow-run-artifacts.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/cancel": {
"post": { "$ref": "operations/actions/cancel-workflow-run.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/jobs": {
"get": { "$ref": "operations/actions/list-jobs-for-workflow-run.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/logs": {
"get": { "$ref": "operations/actions/download-workflow-run-logs.json" },
"delete": { "$ref": "operations/actions/delete-workflow-run-logs.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/rerun": {
"post": { "$ref": "operations/actions/re-run-workflow.json" }
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/timing": {
"get": { "$ref": "operations/actions/get-workflow-run-usage.json" }
},
"/repos/{owner}/{repo}/actions/secrets": {
"get": { "$ref": "operations/actions/list-repo-secrets.json" }
},
"/repos/{owner}/{repo}/actions/secrets/public-key": {
"get": { "$ref": "operations/actions/get-repo-public-key.json" }
},
"/repos/{owner}/{repo}/actions/secrets/{secret_name}": {
"get": { "$ref": "operations/actions/get-repo-secret.json" },
"put": { "$ref": "operations/actions/create-or-update-repo-secret.json" },
"delete": { "$ref": "operations/actions/delete-repo-secret.json" }
},
"/repos/{owner}/{repo}/actions/workflows": {
"get": { "$ref": "operations/actions/list-repo-workflows.json" }
},
"/repos/{owner}/{repo}/actions/workflows/{workflow_id}": {
"get": { "$ref": "operations/actions/get-workflow.json" }
},
"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": {
"get": { "$ref": "operations/actions/list-workflow-runs.json" }
},
"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing": {
"get": { "$ref": "operations/actions/get-workflow-usage.json" }
},
"/repos/{owner}/{repo}/assignees": {
"get": { "$ref": "operations/issues/list-assignees.json" }
},
"/repos/{owner}/{repo}/assignees/{assignee}": {
"get": { "$ref": "operations/issues/check-user-can-be-assigned.json" }
},
"/repos/{owner}/{repo}/automated-security-fixes": {
"put": {
"$ref": "operations/repos/enable-automated-security-fixes.json"
},
"delete": {
"$ref": "operations/repos/disable-automated-security-fixes.json"
}
},
"/repos/{owner}/{repo}/branches": {
"get": { "$ref": "operations/repos/list-branches.json" }
},
"/repos/{owner}/{repo}/branches/{branch}": {
"get": { "$ref": "operations/repos/get-branch.json" }
},
"/repos/{owner}/{repo}/branches/{branch}/protection": {
"get": { "$ref": "operations/repos/get-branch-protection.json" },
"put": { "$ref": "operations/repos/update-branch-protection.json" },
"delete": { "$ref": "operations/repos/delete-branch-protection.json" }
},
"/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins": {
"get": { "$ref": "operations/repos/get-admin-branch-protection.json" },
"post": { "$ref": "operations/repos/set-admin-branch-protection.json" },
"delete": {
"$ref": "operations/repos/delete-admin-branch-protection.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews": {
"get": {
"$ref": "operations/repos/get-pull-request-review-protection.json"
},
"patch": {
"$ref": "operations/repos/update-pull-request-review-protection.json"
},
"delete": {
"$ref": "operations/repos/delete-pull-request-review-protection.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures": {
"get": {
"$ref": "operations/repos/get-commit-signature-protection.json"
},
"post": {
"$ref": "operations/repos/create-commit-signature-protection.json"
},
"delete": {
"$ref": "operations/repos/delete-commit-signature-protection.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks": {
"get": { "$ref": "operations/repos/get-status-checks-protection.json" },
"patch": {
"$ref": "operations/repos/update-status-check-potection.json"
},
"delete": {
"$ref": "operations/repos/remove-status-check-protection.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts": {
"get": { "$ref": "operations/repos/get-all-status-check-contexts.json" },
"put": { "$ref": "operations/repos/set-status-check-contexts.json" },
"post": { "$ref": "operations/repos/add-status-check-contexts.json" },
"delete": { "$ref": "operations/repos/remove-status-check-contexts.json" }
},
"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions": {
"get": { "$ref": "operations/repos/get-access-restrictions.json" },
"delete": { "$ref": "operations/repos/delete-access-restrictions.json" }
},
"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps": {
"get": {
"$ref": "operations/repos/get-apps-with-access-to-protected-branch.json"
},
"put": { "$ref": "operations/repos/set-app-access-restrictions.json" },
"post": { "$ref": "operations/repos/add-app-access-restrictions.json" },
"delete": {
"$ref": "operations/repos/remove-app-access-restrictions.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams": {
"get": {
"$ref": "operations/repos/get-teams-with-access-to-protected-branch.json"
},
"put": { "$ref": "operations/repos/set-team-access-restrictions.json" },
"post": { "$ref": "operations/repos/add-team-access-restrictions.json" },
"delete": {
"$ref": "operations/repos/remove-team-access-restrictions.json"
}
},
"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users": {
"get": {
"$ref": "operations/repos/get-users-with-access-to-protected-branch.json"
},
"put": { "$ref": "operations/repos/set-user-access-restrictions.json" },
"post": { "$ref": "operations/repos/add-user-access-restrictions.json" },
"delete": {
"$ref": "operations/repos/remove-user-access-restrictions.json"
}
},
"/repos/{owner}/{repo}/check-runs": {
"post": { "$ref": "operations/checks/create.json" }
},
"/repos/{owner}/{repo}/check-runs/{check_run_id}": {
"patch": { "$ref": "operations/checks/update.json" },
"get": { "$ref": "operations/checks/get.json" }
},
"/repos/{owner}/{repo}/check-runs/{check_run_id}/annotations": {
"get": { "$ref": "operations/checks/list-annotations.json" }
},
"/repos/{owner}/{repo}/check-suites": {
"post": { "$ref": "operations/checks/create-suite.json" }
},
"/repos/{owner}/{repo}/check-suites/preferences": {
"patch": { "$ref": "operations/checks/set-suites-preferences.json" }
},
"/repos/{owner}/{repo}/check-suites/{check_suite_id}": {
"get": { "$ref": "operations/checks/get-suite.json" }
},
"/repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs": {
"get": { "$ref": "operations/checks/list-for-suite.json" }
},
"/repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest": {
"post": { "$ref": "operations/checks/rerequest-suite.json" }
},
"/repos/{owner}/{repo}/code-scanning/alerts": {
"get": { "$ref": "operations/code-scanning/list-alerts-for-repo.json" }
},
"/repos/{owner}/{repo}/code-scanning/alerts/{alert_id}": {
"get": { "$ref": "operations/code-scanning/get-alert.json" }
},
"/repos/{owner}/{repo}/collaborators": {
"get": { "$ref": "operations/repos/list-collaborators.json" }
},
"/repos/{owner}/{repo}/collaborators/{username}": {
"get": { "$ref": "operations/repos/check-collaborator.json" },
"put": { "$ref": "operations/repos/add-collaborator.json" },
"delete": { "$ref": "operations/repos/remove-collaborator.json" }
},
"/repos/{owner}/{repo}/collaborators/{username}/permission": {
"get": {
"$ref": "operations/repos/get-collaborator-permission-level.json"
}
},
"/repos/{owner}/{repo}/comments": {
"get": { "$ref": "operations/repos/list-commit-comments-for-repo.json" }
},
"/repos/{owner}/{repo}/comments/{comment_id}": {
"get": { "$ref": "operations/repos/get-commit-comment.json" },
"patch": { "$ref": "operations/repos/update-commit-comment.json" },
"delete": { "$ref": "operations/repos/delete-commit-comment.json" }
},
"/repos/{owner}/{repo}/comments/{comment_id}/reactions": {
"get": { "$ref": "operations/reactions/list-for-commit-comment.json" },
"post": { "$ref": "operations/reactions/create-for-commit-comment.json" }
},
"/repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}": {
"delete": {
"$ref": "operations/reactions/delete-for-commit-comment.json"
}
},
"/repos/{owner}/{repo}/commits": {
"get": { "$ref": "operations/repos/list-commits.json" }
},
"/repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head": {
"get": { "$ref": "operations/repos/list-branches-for-head-commit.json" }
},
"/repos/{owner}/{repo}/commits/{commit_sha}/comments": {
"get": { "$ref": "operations/repos/list-comments-for-commit.json" },
"post": { "$ref": "operations/repos/create-commit-comment.json" }
},
"/repos/{owner}/{repo}/commits/{commit_sha}/pulls": {
"get": {
"$ref": "operations/repos/list-pull-requests-associated-with-commit.json"
}
},
"/repos/{owner}/{repo}/commits/{ref}": {
"get": { "$ref": "operations/repos/get-commit.json" }
},
"/repos/{owner}/{repo}/commits/{ref}/check-runs": {
"get": { "$ref": "operations/checks/list-for-ref.json" }
},
"/repos/{owner}/{repo}/commits/{ref}/check-suites": {
"get": { "$ref": "operations/checks/list-suites-for-ref.json" }
},
"/repos/{owner}/{repo}/commits/{ref}/status": {
"get": { "$ref": "operations/repos/get-combined-status-for-ref.json" }
},
"/repos/{owner}/{repo}/commits/{ref}/statuses": {
"get": { "$ref": "operations/repos/list-commit-statuses-for-ref.json" }
},
"/repos/{owner}/{repo}/community/code_of_conduct": {
"get": { "$ref": "operations/codes-of-conduct/get-for-repo.json" }
},
"/repos/{owner}/{repo}/community/profile": {
"get": { "$ref": "operations/repos/get-community-profile-metrics.json" }
},
"/repos/{owner}/{repo}/compare/{base}...{head}": {
"get": { "$ref": "operations/repos/compare-commits.json" }
},
"/repos/{owner}/{repo}/contents/{path}": {
"get": { "$ref": "operations/repos/get-content.json" },
"put": { "$ref": "operations/repos/create-or-update-file-contents.json" },
"delete": { "$ref": "operations/repos/delete-file.json" }
},
"/repos/{owner}/{repo}/contributors": {
"get": { "$ref": "operations/repos/list-contributors.json" }
},
"/repos/{owner}/{repo}/deployments": {
"get": { "$ref": "operations/repos/list-deployments.json" },
"post": { "$ref": "operations/repos/create-deployment.json" }
},
"/repos/{owner}/{repo}/deployments/{deployment_id}": {
"get": { "$ref": "operations/repos/get-deployment.json" },
"delete": { "$ref": "operations/repos/delete-deployment.json" }
},
"/repos/{owner}/{repo}/deployments/{deployment_id}/statuses": {
"get": { "$ref": "operations/repos/list-deployment-statuses.json" },
"post": { "$ref": "operations/repos/create-deployment-status.json" }
},
"/repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}": {
"get": { "$ref": "operations/repos/get-deployment-status.json" }
},
"/repos/{owner}/{repo}/dispatches": {
"post": { "$ref": "operations/repos/create-dispatch-event.json" }
},
"/repos/{owner}/{repo}/events": {
"get": { "$ref": "operations/activity/list-repo-events.json" }
},
"/repos/{owner}/{repo}/forks": {
"get": { "$ref": "operations/repos/list-forks.json" },
"post": { "$ref": "operations/repos/create-fork.json" }
},
"/repos/{owner}/{repo}/git/blobs": {
"post": { "$ref": "operations/git/create-blob.json" }
},
"/repos/{owner}/{repo}/git/blobs/{file_sha}": {
"get": { "$ref": "operations/git/get-blob.json" }
},
"/repos/{owner}/{repo}/git/commits": {
"post": { "$ref": "operations/git/create-commit.json" }
},
"/repos/{owner}/{repo}/git/commits/{commit_sha}": {
"get": { "$ref": "operations/git/get-commit.json" }
},
"/repos/{owner}/{repo}/git/matching-refs/{ref}": {
"get": { "$ref": "operations/git/list-matching-refs.json" }
},
"/repos/{owner}/{repo}/git/ref/{ref}": {
"get": { "$ref": "operations/git/get-ref.json" }
},
"/repos/{owner}/{repo}/git/refs": {
"post": { "$ref": "operations/git/create-ref.json" }
},
"/repos/{owner}/{repo}/git/refs/{ref}": {
"patch": { "$ref": "operations/git/update-ref.json" },
"delete": { "$ref": "operations/git/delete-ref.json" }
},
"/repos/{owner}/{repo}/git/tags": {
"post": { "$ref": "operations/git/create-tag.json" }
},
"/repos/{owner}/{repo}/git/tags/{tag_sha}": {
"get": { "$ref": "operations/git/get-tag.json" }
},
"/repos/{owner}/{repo}/git/trees": {
"post": { "$ref": "operations/git/create-tree.json" }
},
"/repos/{owner}/{repo}/git/trees/{tree_sha}": {
"get": { "$ref": "operations/git/get-tree.json" }
},
"/repos/{owner}/{repo}/hooks": {
"get": { "$ref": "operations/repos/list-webhooks.json" },
"post": { "$ref": "operations/repos/create-webhook.json" }
},
"/repos/{owner}/{repo}/hooks/{hook_id}": {
"get": { "$ref": "operations/repos/get-webhook.json" },
"patch": { "$ref": "operations/repos/update-webhook.json" },
"delete": { "$ref": "operations/repos/delete-webhook.json" }
},
"/repos/{owner}/{repo}/hooks/{hook_id}/pings": {
"post": { "$ref": "operations/repos/ping-webhook.json" }
},
"/repos/{owner}/{repo}/hooks/{hook_id}/tests": {
"post": { "$ref": "operations/repos/test-push-webhook.json" }
},
"/repos/{owner}/{repo}/import": {
"put": { "$ref": "operations/migrations/start-import.json" },
"get": { "$ref": "operations/migrations/get-import-status.json" },
"patch": { "$ref": "operations/migrations/update-import.json" },
"delete": { "$ref": "operations/migrations/cancel-import.json" }
},
"/repos/{owner}/{repo}/import/authors": {
"get": { "$ref": "operations/migrations/get-commit-authors.json" }
},
"/repos/{owner}/{repo}/import/authors/{author_id}": {
"patch": { "$ref": "operations/migrations/map-commit-author.json" }
},
"/repos/{owner}/{repo}/import/large_files": {
"get": { "$ref": "operations/migrations/get-large-files.json" }
},
"/repos/{owner}/{repo}/import/lfs": {
"patch": { "$ref": "operations/migrations/set-lfs-preference.json" }
},
"/repos/{owner}/{repo}/installation": {
"get": { "$ref": "operations/apps/get-repo-installation.json" }
},
"/repos/{owner}/{repo}/interaction-limits": {
"get": {
"$ref": "operations/interactions/get-restrictions-for-repo.json"
},
"put": {
"$ref": "operations/interactions/set-restrictions-for-repo.json"
},
"delete": {
"$ref": "operations/interactions/remove-restrictions-for-repo.json"
}
},
"/repos/{owner}/{repo}/invitations": {
"get": { "$ref": "operations/repos/list-invitations.json" }
},
"/repos/{owner}/{repo}/invitations/{invitation_id}": {
"delete": { "$ref": "operations/repos/delete-invitation.json" },
"patch": { "$ref": "operations/repos/update-invitation.json" }
},
"/repos/{owner}/{repo}/issues": {
"get": { "$ref": "operations/issues/list-for-repo.json" },
"post": { "$ref": "operations/issues/create.json" }
},
"/repos/{owner}/{repo}/issues/comments": {
"get": { "$ref": "operations/issues/list-comments-for-repo.json" }
},
"/repos/{owner}/{repo}/issues/comments/{comment_id}": {
"get": { "$ref": "operations/issues/get-comment.json" },
"patch": { "$ref": "operations/issues/update-comment.json" },
"delete": { "$ref": "operations/issues/delete-comment.json" }
},
"/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": {
"get": { "$ref": "operations/reactions/list-for-issue-comment.json" },
"post": { "$ref": "operations/reactions/create-for-issue-comment.json" }
},
"/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}": {
"delete": { "$ref": "operations/reactions/delete-for-issue-comment.json" }
},
"/repos/{owner}/{repo}/issues/events": {
"get": { "$ref": "operations/issues/list-events-for-repo.json" }
},
"/repos/{owner}/{repo}/issues/events/{event_id}": {
"get": { "$ref": "operations/issues/get-event.json" }
},
"/repos/{owner}/{repo}/issues/{issue_number}": {
"get": { "$ref": "operations/issues/get.json" },