@octokit/openapi 11.1.0 → 11.1.2

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.
Files changed (31) hide show
  1. package/generated/api.github.com.deref.json +4 -44
  2. package/generated/api.github.com.json +4 -45
  3. package/generated/ghec-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghec-diff-to-api.github.com.json +1 -1
  5. package/generated/ghec.deref.json +7 -47
  6. package/generated/ghec.json +7 -48
  7. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +0 -84
  8. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +1 -4574
  9. package/generated/ghes-3.5-diff-to-ghes-3.6.json +1 -674
  10. package/generated/ghes-3.5.deref.json +194 -54
  11. package/generated/ghes-3.5.json +8 -55
  12. package/generated/ghes-3.6-anicca-diff-to-ghes-3.7.deref.json +0 -48
  13. package/generated/ghes-3.6-diff-to-ghes-3.7.deref.json +1 -4738
  14. package/generated/ghes-3.6-diff-to-ghes-3.7.json +1 -683
  15. package/generated/ghes-3.6.deref.json +30 -54
  16. package/generated/ghes-3.6.json +8 -55
  17. package/generated/ghes-3.7-diff-to-ghes-3.8.deref.json +1 -1
  18. package/generated/ghes-3.7-diff-to-ghes-3.8.json +1 -1
  19. package/generated/ghes-3.7.deref.json +17 -47
  20. package/generated/ghes-3.7.json +7 -48
  21. package/generated/ghes-3.8-anicca-diff-to-api.github.com.deref.json +0 -38
  22. package/generated/ghes-3.8-diff-to-api.github.com.deref.json +1 -4748
  23. package/generated/ghes-3.8-diff-to-api.github.com.json +1 -672
  24. package/generated/ghes-3.8.deref.json +18 -54
  25. package/generated/ghes-3.8.json +8 -55
  26. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +0 -84
  27. package/generated/github.ae-diff-to-api.github.com.deref.json +1 -4594
  28. package/generated/github.ae-diff-to-api.github.com.json +1 -676
  29. package/generated/github.ae.deref.json +174 -54
  30. package/generated/github.ae.json +8 -55
  31. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "11.1.0",
4
+ "version": "11.1.2",
5
5
  "title": "GitHub's official OpenAPI spec + Octokit extension",
6
6
  "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
7
7
  "license": {
@@ -141701,4599 +141701,6 @@
141701
141701
  }
141702
141702
  }
141703
141703
  },
141704
- "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
141705
- "post": {
141706
- "summary": "Request reviewers for a pull request",
141707
- "description": "This endpoint triggers [notifications](https://docs.github.com/github-ae@latest/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
141708
- "tags": [
141709
- "pulls"
141710
- ],
141711
- "operationId": "pulls/request-reviewers",
141712
- "externalDocs": {
141713
- "description": "API method documentation",
141714
- "url": "https://docs.github.com/github-ae@latest/rest/reference/pulls#request-reviewers-for-a-pull-request"
141715
- },
141716
- "parameters": [
141717
- {
141718
- "name": "owner",
141719
- "description": "The account owner of the repository. The name is not case sensitive.",
141720
- "in": "path",
141721
- "required": true,
141722
- "schema": {
141723
- "type": "string"
141724
- }
141725
- },
141726
- {
141727
- "name": "repo",
141728
- "description": "The name of the repository. The name is not case sensitive.",
141729
- "in": "path",
141730
- "required": true,
141731
- "schema": {
141732
- "type": "string"
141733
- }
141734
- },
141735
- {
141736
- "name": "pull_number",
141737
- "description": "The number that identifies the pull request.",
141738
- "in": "path",
141739
- "required": true,
141740
- "schema": {
141741
- "type": "integer"
141742
- }
141743
- }
141744
- ],
141745
- "requestBody": {
141746
- "required": false,
141747
- "content": {
141748
- "application/json": {
141749
- "schema": {
141750
- "type": "object",
141751
- "properties": {
141752
- "reviewers": {
141753
- "type": "array",
141754
- "description": "An array of user `login`s that will be requested.",
141755
- "items": {
141756
- "type": "string"
141757
- }
141758
- },
141759
- "team_reviewers": {
141760
- "type": "array",
141761
- "description": "An array of team `slug`s that will be requested.",
141762
- "items": {
141763
- "type": "string"
141764
- }
141765
- }
141766
- },
141767
- "anyOf": [
141768
- {
141769
- "required": [
141770
- "reviewers"
141771
- ]
141772
- },
141773
- {
141774
- "required": [
141775
- "team_reviewers"
141776
- ]
141777
- }
141778
- ]
141779
- },
141780
- "examples": {
141781
- "default": {
141782
- "value": {
141783
- "reviewers": [
141784
- "octocat",
141785
- "hubot",
141786
- "other_user"
141787
- ],
141788
- "team_reviewers": [
141789
- "justice-league"
141790
- ]
141791
- }
141792
- }
141793
- }
141794
- }
141795
- }
141796
- },
141797
- "responses": {
141798
- "201": {
141799
- "description": "Response",
141800
- "content": {
141801
- "application/json": {
141802
- "schema": {
141803
- "title": "Pull Request Simple",
141804
- "description": "Pull Request Simple",
141805
- "type": "object",
141806
- "properties": {
141807
- "url": {
141808
- "type": "string",
141809
- "format": "uri",
141810
- "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
141811
- },
141812
- "id": {
141813
- "type": "integer",
141814
- "example": 1
141815
- },
141816
- "node_id": {
141817
- "type": "string",
141818
- "example": "MDExOlB1bGxSZXF1ZXN0MQ=="
141819
- },
141820
- "html_url": {
141821
- "type": "string",
141822
- "format": "uri",
141823
- "example": "https://github.com/octocat/Hello-World/pull/1347"
141824
- },
141825
- "diff_url": {
141826
- "type": "string",
141827
- "format": "uri",
141828
- "example": "https://github.com/octocat/Hello-World/pull/1347.diff"
141829
- },
141830
- "patch_url": {
141831
- "type": "string",
141832
- "format": "uri",
141833
- "example": "https://github.com/octocat/Hello-World/pull/1347.patch"
141834
- },
141835
- "issue_url": {
141836
- "type": "string",
141837
- "format": "uri",
141838
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
141839
- },
141840
- "commits_url": {
141841
- "type": "string",
141842
- "format": "uri",
141843
- "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
141844
- },
141845
- "review_comments_url": {
141846
- "type": "string",
141847
- "format": "uri",
141848
- "example": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
141849
- },
141850
- "review_comment_url": {
141851
- "type": "string",
141852
- "example": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
141853
- },
141854
- "comments_url": {
141855
- "type": "string",
141856
- "format": "uri",
141857
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
141858
- },
141859
- "statuses_url": {
141860
- "type": "string",
141861
- "format": "uri",
141862
- "example": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
141863
- },
141864
- "number": {
141865
- "type": "integer",
141866
- "example": 1347
141867
- },
141868
- "state": {
141869
- "type": "string",
141870
- "example": "open"
141871
- },
141872
- "locked": {
141873
- "type": "boolean",
141874
- "example": true
141875
- },
141876
- "title": {
141877
- "type": "string",
141878
- "example": "new-feature"
141879
- },
141880
- "user": {
141881
- "title": "Simple User",
141882
- "description": "A GitHub user.",
141883
- "type": "object",
141884
- "properties": {
141885
- "name": {
141886
- "nullable": true,
141887
- "type": "string"
141888
- },
141889
- "email": {
141890
- "nullable": true,
141891
- "type": "string"
141892
- },
141893
- "login": {
141894
- "type": "string",
141895
- "example": "octocat"
141896
- },
141897
- "id": {
141898
- "type": "integer",
141899
- "example": 1
141900
- },
141901
- "node_id": {
141902
- "type": "string",
141903
- "example": "MDQ6VXNlcjE="
141904
- },
141905
- "avatar_url": {
141906
- "type": "string",
141907
- "format": "uri",
141908
- "example": "https://github.com/images/error/octocat_happy.gif"
141909
- },
141910
- "gravatar_id": {
141911
- "type": "string",
141912
- "example": "41d064eb2195891e12d0413f63227ea7",
141913
- "nullable": true
141914
- },
141915
- "url": {
141916
- "type": "string",
141917
- "format": "uri",
141918
- "example": "https://api.github.com/users/octocat"
141919
- },
141920
- "html_url": {
141921
- "type": "string",
141922
- "format": "uri",
141923
- "example": "https://github.com/octocat"
141924
- },
141925
- "followers_url": {
141926
- "type": "string",
141927
- "format": "uri",
141928
- "example": "https://api.github.com/users/octocat/followers"
141929
- },
141930
- "following_url": {
141931
- "type": "string",
141932
- "example": "https://api.github.com/users/octocat/following{/other_user}"
141933
- },
141934
- "gists_url": {
141935
- "type": "string",
141936
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
141937
- },
141938
- "starred_url": {
141939
- "type": "string",
141940
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
141941
- },
141942
- "subscriptions_url": {
141943
- "type": "string",
141944
- "format": "uri",
141945
- "example": "https://api.github.com/users/octocat/subscriptions"
141946
- },
141947
- "organizations_url": {
141948
- "type": "string",
141949
- "format": "uri",
141950
- "example": "https://api.github.com/users/octocat/orgs"
141951
- },
141952
- "repos_url": {
141953
- "type": "string",
141954
- "format": "uri",
141955
- "example": "https://api.github.com/users/octocat/repos"
141956
- },
141957
- "events_url": {
141958
- "type": "string",
141959
- "example": "https://api.github.com/users/octocat/events{/privacy}"
141960
- },
141961
- "received_events_url": {
141962
- "type": "string",
141963
- "format": "uri",
141964
- "example": "https://api.github.com/users/octocat/received_events"
141965
- },
141966
- "type": {
141967
- "type": "string",
141968
- "example": "User"
141969
- },
141970
- "site_admin": {
141971
- "type": "boolean"
141972
- },
141973
- "starred_at": {
141974
- "type": "string",
141975
- "example": "\"2020-07-09T00:17:55Z\""
141976
- }
141977
- },
141978
- "required": [
141979
- "avatar_url",
141980
- "events_url",
141981
- "followers_url",
141982
- "following_url",
141983
- "gists_url",
141984
- "gravatar_id",
141985
- "html_url",
141986
- "id",
141987
- "node_id",
141988
- "login",
141989
- "organizations_url",
141990
- "received_events_url",
141991
- "repos_url",
141992
- "site_admin",
141993
- "starred_url",
141994
- "subscriptions_url",
141995
- "type",
141996
- "url"
141997
- ],
141998
- "nullable": true
141999
- },
142000
- "body": {
142001
- "type": "string",
142002
- "example": "Please pull these awesome changes",
142003
- "nullable": true
142004
- },
142005
- "labels": {
142006
- "type": "array",
142007
- "items": {
142008
- "type": "object",
142009
- "properties": {
142010
- "id": {
142011
- "type": "integer",
142012
- "format": "int64"
142013
- },
142014
- "node_id": {
142015
- "type": "string"
142016
- },
142017
- "url": {
142018
- "type": "string"
142019
- },
142020
- "name": {
142021
- "type": "string"
142022
- },
142023
- "description": {
142024
- "type": "string"
142025
- },
142026
- "color": {
142027
- "type": "string"
142028
- },
142029
- "default": {
142030
- "type": "boolean"
142031
- }
142032
- },
142033
- "required": [
142034
- "id",
142035
- "node_id",
142036
- "url",
142037
- "name",
142038
- "description",
142039
- "color",
142040
- "default"
142041
- ]
142042
- }
142043
- },
142044
- "milestone": {
142045
- "title": "Milestone",
142046
- "description": "A collection of related issues and pull requests.",
142047
- "type": "object",
142048
- "properties": {
142049
- "url": {
142050
- "type": "string",
142051
- "format": "uri",
142052
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1"
142053
- },
142054
- "html_url": {
142055
- "type": "string",
142056
- "format": "uri",
142057
- "example": "https://github.com/octocat/Hello-World/milestones/v1.0"
142058
- },
142059
- "labels_url": {
142060
- "type": "string",
142061
- "format": "uri",
142062
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels"
142063
- },
142064
- "id": {
142065
- "type": "integer",
142066
- "example": 1002604
142067
- },
142068
- "node_id": {
142069
- "type": "string",
142070
- "example": "MDk6TWlsZXN0b25lMTAwMjYwNA=="
142071
- },
142072
- "number": {
142073
- "description": "The number of the milestone.",
142074
- "type": "integer",
142075
- "example": 42
142076
- },
142077
- "state": {
142078
- "description": "The state of the milestone.",
142079
- "example": "open",
142080
- "type": "string",
142081
- "enum": [
142082
- "open",
142083
- "closed"
142084
- ],
142085
- "default": "open"
142086
- },
142087
- "title": {
142088
- "description": "The title of the milestone.",
142089
- "example": "v1.0",
142090
- "type": "string"
142091
- },
142092
- "description": {
142093
- "type": "string",
142094
- "example": "Tracking milestone for version 1.0",
142095
- "nullable": true
142096
- },
142097
- "creator": {
142098
- "title": "Simple User",
142099
- "description": "A GitHub user.",
142100
- "type": "object",
142101
- "properties": {
142102
- "name": {
142103
- "nullable": true,
142104
- "type": "string"
142105
- },
142106
- "email": {
142107
- "nullable": true,
142108
- "type": "string"
142109
- },
142110
- "login": {
142111
- "type": "string",
142112
- "example": "octocat"
142113
- },
142114
- "id": {
142115
- "type": "integer",
142116
- "example": 1
142117
- },
142118
- "node_id": {
142119
- "type": "string",
142120
- "example": "MDQ6VXNlcjE="
142121
- },
142122
- "avatar_url": {
142123
- "type": "string",
142124
- "format": "uri",
142125
- "example": "https://github.com/images/error/octocat_happy.gif"
142126
- },
142127
- "gravatar_id": {
142128
- "type": "string",
142129
- "example": "41d064eb2195891e12d0413f63227ea7",
142130
- "nullable": true
142131
- },
142132
- "url": {
142133
- "type": "string",
142134
- "format": "uri",
142135
- "example": "https://api.github.com/users/octocat"
142136
- },
142137
- "html_url": {
142138
- "type": "string",
142139
- "format": "uri",
142140
- "example": "https://github.com/octocat"
142141
- },
142142
- "followers_url": {
142143
- "type": "string",
142144
- "format": "uri",
142145
- "example": "https://api.github.com/users/octocat/followers"
142146
- },
142147
- "following_url": {
142148
- "type": "string",
142149
- "example": "https://api.github.com/users/octocat/following{/other_user}"
142150
- },
142151
- "gists_url": {
142152
- "type": "string",
142153
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
142154
- },
142155
- "starred_url": {
142156
- "type": "string",
142157
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
142158
- },
142159
- "subscriptions_url": {
142160
- "type": "string",
142161
- "format": "uri",
142162
- "example": "https://api.github.com/users/octocat/subscriptions"
142163
- },
142164
- "organizations_url": {
142165
- "type": "string",
142166
- "format": "uri",
142167
- "example": "https://api.github.com/users/octocat/orgs"
142168
- },
142169
- "repos_url": {
142170
- "type": "string",
142171
- "format": "uri",
142172
- "example": "https://api.github.com/users/octocat/repos"
142173
- },
142174
- "events_url": {
142175
- "type": "string",
142176
- "example": "https://api.github.com/users/octocat/events{/privacy}"
142177
- },
142178
- "received_events_url": {
142179
- "type": "string",
142180
- "format": "uri",
142181
- "example": "https://api.github.com/users/octocat/received_events"
142182
- },
142183
- "type": {
142184
- "type": "string",
142185
- "example": "User"
142186
- },
142187
- "site_admin": {
142188
- "type": "boolean"
142189
- },
142190
- "starred_at": {
142191
- "type": "string",
142192
- "example": "\"2020-07-09T00:17:55Z\""
142193
- }
142194
- },
142195
- "required": [
142196
- "avatar_url",
142197
- "events_url",
142198
- "followers_url",
142199
- "following_url",
142200
- "gists_url",
142201
- "gravatar_id",
142202
- "html_url",
142203
- "id",
142204
- "node_id",
142205
- "login",
142206
- "organizations_url",
142207
- "received_events_url",
142208
- "repos_url",
142209
- "site_admin",
142210
- "starred_url",
142211
- "subscriptions_url",
142212
- "type",
142213
- "url"
142214
- ],
142215
- "nullable": true
142216
- },
142217
- "open_issues": {
142218
- "type": "integer",
142219
- "example": 4
142220
- },
142221
- "closed_issues": {
142222
- "type": "integer",
142223
- "example": 8
142224
- },
142225
- "created_at": {
142226
- "type": "string",
142227
- "format": "date-time",
142228
- "example": "2011-04-10T20:09:31Z"
142229
- },
142230
- "updated_at": {
142231
- "type": "string",
142232
- "format": "date-time",
142233
- "example": "2014-03-03T18:58:10Z"
142234
- },
142235
- "closed_at": {
142236
- "type": "string",
142237
- "format": "date-time",
142238
- "example": "2013-02-12T13:22:01Z",
142239
- "nullable": true
142240
- },
142241
- "due_on": {
142242
- "type": "string",
142243
- "format": "date-time",
142244
- "example": "2012-10-09T23:39:01Z",
142245
- "nullable": true
142246
- }
142247
- },
142248
- "required": [
142249
- "closed_issues",
142250
- "creator",
142251
- "description",
142252
- "due_on",
142253
- "closed_at",
142254
- "id",
142255
- "node_id",
142256
- "labels_url",
142257
- "html_url",
142258
- "number",
142259
- "open_issues",
142260
- "state",
142261
- "title",
142262
- "url",
142263
- "created_at",
142264
- "updated_at"
142265
- ],
142266
- "nullable": true
142267
- },
142268
- "active_lock_reason": {
142269
- "type": "string",
142270
- "example": "too heated",
142271
- "nullable": true
142272
- },
142273
- "created_at": {
142274
- "type": "string",
142275
- "format": "date-time",
142276
- "example": "2011-01-26T19:01:12Z"
142277
- },
142278
- "updated_at": {
142279
- "type": "string",
142280
- "format": "date-time",
142281
- "example": "2011-01-26T19:01:12Z"
142282
- },
142283
- "closed_at": {
142284
- "type": "string",
142285
- "format": "date-time",
142286
- "example": "2011-01-26T19:01:12Z",
142287
- "nullable": true
142288
- },
142289
- "merged_at": {
142290
- "type": "string",
142291
- "format": "date-time",
142292
- "example": "2011-01-26T19:01:12Z",
142293
- "nullable": true
142294
- },
142295
- "merge_commit_sha": {
142296
- "type": "string",
142297
- "example": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
142298
- "nullable": true
142299
- },
142300
- "assignee": {
142301
- "title": "Simple User",
142302
- "description": "A GitHub user.",
142303
- "type": "object",
142304
- "properties": {
142305
- "name": {
142306
- "nullable": true,
142307
- "type": "string"
142308
- },
142309
- "email": {
142310
- "nullable": true,
142311
- "type": "string"
142312
- },
142313
- "login": {
142314
- "type": "string",
142315
- "example": "octocat"
142316
- },
142317
- "id": {
142318
- "type": "integer",
142319
- "example": 1
142320
- },
142321
- "node_id": {
142322
- "type": "string",
142323
- "example": "MDQ6VXNlcjE="
142324
- },
142325
- "avatar_url": {
142326
- "type": "string",
142327
- "format": "uri",
142328
- "example": "https://github.com/images/error/octocat_happy.gif"
142329
- },
142330
- "gravatar_id": {
142331
- "type": "string",
142332
- "example": "41d064eb2195891e12d0413f63227ea7",
142333
- "nullable": true
142334
- },
142335
- "url": {
142336
- "type": "string",
142337
- "format": "uri",
142338
- "example": "https://api.github.com/users/octocat"
142339
- },
142340
- "html_url": {
142341
- "type": "string",
142342
- "format": "uri",
142343
- "example": "https://github.com/octocat"
142344
- },
142345
- "followers_url": {
142346
- "type": "string",
142347
- "format": "uri",
142348
- "example": "https://api.github.com/users/octocat/followers"
142349
- },
142350
- "following_url": {
142351
- "type": "string",
142352
- "example": "https://api.github.com/users/octocat/following{/other_user}"
142353
- },
142354
- "gists_url": {
142355
- "type": "string",
142356
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
142357
- },
142358
- "starred_url": {
142359
- "type": "string",
142360
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
142361
- },
142362
- "subscriptions_url": {
142363
- "type": "string",
142364
- "format": "uri",
142365
- "example": "https://api.github.com/users/octocat/subscriptions"
142366
- },
142367
- "organizations_url": {
142368
- "type": "string",
142369
- "format": "uri",
142370
- "example": "https://api.github.com/users/octocat/orgs"
142371
- },
142372
- "repos_url": {
142373
- "type": "string",
142374
- "format": "uri",
142375
- "example": "https://api.github.com/users/octocat/repos"
142376
- },
142377
- "events_url": {
142378
- "type": "string",
142379
- "example": "https://api.github.com/users/octocat/events{/privacy}"
142380
- },
142381
- "received_events_url": {
142382
- "type": "string",
142383
- "format": "uri",
142384
- "example": "https://api.github.com/users/octocat/received_events"
142385
- },
142386
- "type": {
142387
- "type": "string",
142388
- "example": "User"
142389
- },
142390
- "site_admin": {
142391
- "type": "boolean"
142392
- },
142393
- "starred_at": {
142394
- "type": "string",
142395
- "example": "\"2020-07-09T00:17:55Z\""
142396
- }
142397
- },
142398
- "required": [
142399
- "avatar_url",
142400
- "events_url",
142401
- "followers_url",
142402
- "following_url",
142403
- "gists_url",
142404
- "gravatar_id",
142405
- "html_url",
142406
- "id",
142407
- "node_id",
142408
- "login",
142409
- "organizations_url",
142410
- "received_events_url",
142411
- "repos_url",
142412
- "site_admin",
142413
- "starred_url",
142414
- "subscriptions_url",
142415
- "type",
142416
- "url"
142417
- ],
142418
- "nullable": true
142419
- },
142420
- "assignees": {
142421
- "type": "array",
142422
- "items": {
142423
- "title": "Simple User",
142424
- "description": "A GitHub user.",
142425
- "type": "object",
142426
- "properties": {
142427
- "name": {
142428
- "nullable": true,
142429
- "type": "string"
142430
- },
142431
- "email": {
142432
- "nullable": true,
142433
- "type": "string"
142434
- },
142435
- "login": {
142436
- "type": "string",
142437
- "example": "octocat"
142438
- },
142439
- "id": {
142440
- "type": "integer",
142441
- "example": 1
142442
- },
142443
- "node_id": {
142444
- "type": "string",
142445
- "example": "MDQ6VXNlcjE="
142446
- },
142447
- "avatar_url": {
142448
- "type": "string",
142449
- "format": "uri",
142450
- "example": "https://github.com/images/error/octocat_happy.gif"
142451
- },
142452
- "gravatar_id": {
142453
- "type": "string",
142454
- "example": "41d064eb2195891e12d0413f63227ea7",
142455
- "nullable": true
142456
- },
142457
- "url": {
142458
- "type": "string",
142459
- "format": "uri",
142460
- "example": "https://api.github.com/users/octocat"
142461
- },
142462
- "html_url": {
142463
- "type": "string",
142464
- "format": "uri",
142465
- "example": "https://github.com/octocat"
142466
- },
142467
- "followers_url": {
142468
- "type": "string",
142469
- "format": "uri",
142470
- "example": "https://api.github.com/users/octocat/followers"
142471
- },
142472
- "following_url": {
142473
- "type": "string",
142474
- "example": "https://api.github.com/users/octocat/following{/other_user}"
142475
- },
142476
- "gists_url": {
142477
- "type": "string",
142478
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
142479
- },
142480
- "starred_url": {
142481
- "type": "string",
142482
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
142483
- },
142484
- "subscriptions_url": {
142485
- "type": "string",
142486
- "format": "uri",
142487
- "example": "https://api.github.com/users/octocat/subscriptions"
142488
- },
142489
- "organizations_url": {
142490
- "type": "string",
142491
- "format": "uri",
142492
- "example": "https://api.github.com/users/octocat/orgs"
142493
- },
142494
- "repos_url": {
142495
- "type": "string",
142496
- "format": "uri",
142497
- "example": "https://api.github.com/users/octocat/repos"
142498
- },
142499
- "events_url": {
142500
- "type": "string",
142501
- "example": "https://api.github.com/users/octocat/events{/privacy}"
142502
- },
142503
- "received_events_url": {
142504
- "type": "string",
142505
- "format": "uri",
142506
- "example": "https://api.github.com/users/octocat/received_events"
142507
- },
142508
- "type": {
142509
- "type": "string",
142510
- "example": "User"
142511
- },
142512
- "site_admin": {
142513
- "type": "boolean"
142514
- },
142515
- "starred_at": {
142516
- "type": "string",
142517
- "example": "\"2020-07-09T00:17:55Z\""
142518
- }
142519
- },
142520
- "required": [
142521
- "avatar_url",
142522
- "events_url",
142523
- "followers_url",
142524
- "following_url",
142525
- "gists_url",
142526
- "gravatar_id",
142527
- "html_url",
142528
- "id",
142529
- "node_id",
142530
- "login",
142531
- "organizations_url",
142532
- "received_events_url",
142533
- "repos_url",
142534
- "site_admin",
142535
- "starred_url",
142536
- "subscriptions_url",
142537
- "type",
142538
- "url"
142539
- ]
142540
- },
142541
- "nullable": true
142542
- },
142543
- "requested_reviewers": {
142544
- "type": "array",
142545
- "items": {
142546
- "title": "Simple User",
142547
- "description": "A GitHub user.",
142548
- "type": "object",
142549
- "properties": {
142550
- "name": {
142551
- "nullable": true,
142552
- "type": "string"
142553
- },
142554
- "email": {
142555
- "nullable": true,
142556
- "type": "string"
142557
- },
142558
- "login": {
142559
- "type": "string",
142560
- "example": "octocat"
142561
- },
142562
- "id": {
142563
- "type": "integer",
142564
- "example": 1
142565
- },
142566
- "node_id": {
142567
- "type": "string",
142568
- "example": "MDQ6VXNlcjE="
142569
- },
142570
- "avatar_url": {
142571
- "type": "string",
142572
- "format": "uri",
142573
- "example": "https://github.com/images/error/octocat_happy.gif"
142574
- },
142575
- "gravatar_id": {
142576
- "type": "string",
142577
- "example": "41d064eb2195891e12d0413f63227ea7",
142578
- "nullable": true
142579
- },
142580
- "url": {
142581
- "type": "string",
142582
- "format": "uri",
142583
- "example": "https://api.github.com/users/octocat"
142584
- },
142585
- "html_url": {
142586
- "type": "string",
142587
- "format": "uri",
142588
- "example": "https://github.com/octocat"
142589
- },
142590
- "followers_url": {
142591
- "type": "string",
142592
- "format": "uri",
142593
- "example": "https://api.github.com/users/octocat/followers"
142594
- },
142595
- "following_url": {
142596
- "type": "string",
142597
- "example": "https://api.github.com/users/octocat/following{/other_user}"
142598
- },
142599
- "gists_url": {
142600
- "type": "string",
142601
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
142602
- },
142603
- "starred_url": {
142604
- "type": "string",
142605
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
142606
- },
142607
- "subscriptions_url": {
142608
- "type": "string",
142609
- "format": "uri",
142610
- "example": "https://api.github.com/users/octocat/subscriptions"
142611
- },
142612
- "organizations_url": {
142613
- "type": "string",
142614
- "format": "uri",
142615
- "example": "https://api.github.com/users/octocat/orgs"
142616
- },
142617
- "repos_url": {
142618
- "type": "string",
142619
- "format": "uri",
142620
- "example": "https://api.github.com/users/octocat/repos"
142621
- },
142622
- "events_url": {
142623
- "type": "string",
142624
- "example": "https://api.github.com/users/octocat/events{/privacy}"
142625
- },
142626
- "received_events_url": {
142627
- "type": "string",
142628
- "format": "uri",
142629
- "example": "https://api.github.com/users/octocat/received_events"
142630
- },
142631
- "type": {
142632
- "type": "string",
142633
- "example": "User"
142634
- },
142635
- "site_admin": {
142636
- "type": "boolean"
142637
- },
142638
- "starred_at": {
142639
- "type": "string",
142640
- "example": "\"2020-07-09T00:17:55Z\""
142641
- }
142642
- },
142643
- "required": [
142644
- "avatar_url",
142645
- "events_url",
142646
- "followers_url",
142647
- "following_url",
142648
- "gists_url",
142649
- "gravatar_id",
142650
- "html_url",
142651
- "id",
142652
- "node_id",
142653
- "login",
142654
- "organizations_url",
142655
- "received_events_url",
142656
- "repos_url",
142657
- "site_admin",
142658
- "starred_url",
142659
- "subscriptions_url",
142660
- "type",
142661
- "url"
142662
- ]
142663
- },
142664
- "nullable": true
142665
- },
142666
- "requested_teams": {
142667
- "type": "array",
142668
- "items": {
142669
- "title": "Team",
142670
- "description": "Groups of organization members that gives permissions on specified repositories.",
142671
- "type": "object",
142672
- "properties": {
142673
- "id": {
142674
- "type": "integer"
142675
- },
142676
- "node_id": {
142677
- "type": "string"
142678
- },
142679
- "name": {
142680
- "type": "string"
142681
- },
142682
- "slug": {
142683
- "type": "string"
142684
- },
142685
- "description": {
142686
- "type": "string",
142687
- "nullable": true
142688
- },
142689
- "privacy": {
142690
- "type": "string"
142691
- },
142692
- "notification_setting": {
142693
- "type": "string"
142694
- },
142695
- "permission": {
142696
- "type": "string"
142697
- },
142698
- "permissions": {
142699
- "type": "object",
142700
- "properties": {
142701
- "pull": {
142702
- "type": "boolean"
142703
- },
142704
- "triage": {
142705
- "type": "boolean"
142706
- },
142707
- "push": {
142708
- "type": "boolean"
142709
- },
142710
- "maintain": {
142711
- "type": "boolean"
142712
- },
142713
- "admin": {
142714
- "type": "boolean"
142715
- }
142716
- },
142717
- "required": [
142718
- "pull",
142719
- "triage",
142720
- "push",
142721
- "maintain",
142722
- "admin"
142723
- ]
142724
- },
142725
- "url": {
142726
- "type": "string",
142727
- "format": "uri"
142728
- },
142729
- "html_url": {
142730
- "type": "string",
142731
- "format": "uri",
142732
- "example": "https://github.com/orgs/rails/teams/core"
142733
- },
142734
- "members_url": {
142735
- "type": "string"
142736
- },
142737
- "repositories_url": {
142738
- "type": "string",
142739
- "format": "uri"
142740
- },
142741
- "parent": {
142742
- "title": "Team Simple",
142743
- "description": "Groups of organization members that gives permissions on specified repositories.",
142744
- "type": "object",
142745
- "properties": {
142746
- "id": {
142747
- "description": "Unique identifier of the team",
142748
- "type": "integer",
142749
- "example": 1
142750
- },
142751
- "node_id": {
142752
- "type": "string",
142753
- "example": "MDQ6VGVhbTE="
142754
- },
142755
- "url": {
142756
- "description": "URL for the team",
142757
- "type": "string",
142758
- "format": "uri",
142759
- "example": "https://api.github.com/organizations/1/team/1"
142760
- },
142761
- "members_url": {
142762
- "type": "string",
142763
- "example": "https://api.github.com/organizations/1/team/1/members{/member}"
142764
- },
142765
- "name": {
142766
- "description": "Name of the team",
142767
- "type": "string",
142768
- "example": "Justice League"
142769
- },
142770
- "description": {
142771
- "description": "Description of the team",
142772
- "type": "string",
142773
- "nullable": true,
142774
- "example": "A great team."
142775
- },
142776
- "permission": {
142777
- "description": "Permission that the team will have for its repositories",
142778
- "type": "string",
142779
- "example": "admin"
142780
- },
142781
- "privacy": {
142782
- "description": "The level of privacy this team should have",
142783
- "type": "string",
142784
- "example": "closed"
142785
- },
142786
- "notification_setting": {
142787
- "description": "The notification setting the team has set",
142788
- "type": "string",
142789
- "example": "notifications_enabled"
142790
- },
142791
- "html_url": {
142792
- "type": "string",
142793
- "format": "uri",
142794
- "example": "https://github.com/orgs/rails/teams/core"
142795
- },
142796
- "repositories_url": {
142797
- "type": "string",
142798
- "format": "uri",
142799
- "example": "https://api.github.com/organizations/1/team/1/repos"
142800
- },
142801
- "slug": {
142802
- "type": "string",
142803
- "example": "justice-league"
142804
- },
142805
- "ldap_dn": {
142806
- "description": "Distinguished Name (DN) that team maps to within LDAP environment",
142807
- "example": "uid=example,ou=users,dc=github,dc=com",
142808
- "type": "string"
142809
- }
142810
- },
142811
- "required": [
142812
- "id",
142813
- "node_id",
142814
- "url",
142815
- "members_url",
142816
- "name",
142817
- "description",
142818
- "permission",
142819
- "html_url",
142820
- "repositories_url",
142821
- "slug"
142822
- ],
142823
- "nullable": true
142824
- }
142825
- },
142826
- "required": [
142827
- "id",
142828
- "node_id",
142829
- "url",
142830
- "members_url",
142831
- "name",
142832
- "description",
142833
- "permission",
142834
- "html_url",
142835
- "repositories_url",
142836
- "slug",
142837
- "parent"
142838
- ]
142839
- },
142840
- "nullable": true
142841
- },
142842
- "head": {
142843
- "type": "object",
142844
- "properties": {
142845
- "label": {
142846
- "type": "string"
142847
- },
142848
- "ref": {
142849
- "type": "string"
142850
- },
142851
- "repo": {
142852
- "title": "Repository",
142853
- "description": "A repository on GitHub.",
142854
- "type": "object",
142855
- "properties": {
142856
- "id": {
142857
- "description": "Unique identifier of the repository",
142858
- "example": 42,
142859
- "type": "integer"
142860
- },
142861
- "node_id": {
142862
- "type": "string",
142863
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
142864
- },
142865
- "name": {
142866
- "description": "The name of the repository.",
142867
- "type": "string",
142868
- "example": "Team Environment"
142869
- },
142870
- "full_name": {
142871
- "type": "string",
142872
- "example": "octocat/Hello-World"
142873
- },
142874
- "license": {
142875
- "title": "License Simple",
142876
- "description": "License Simple",
142877
- "type": "object",
142878
- "properties": {
142879
- "key": {
142880
- "type": "string",
142881
- "example": "mit"
142882
- },
142883
- "name": {
142884
- "type": "string",
142885
- "example": "MIT License"
142886
- },
142887
- "url": {
142888
- "type": "string",
142889
- "nullable": true,
142890
- "format": "uri",
142891
- "example": "https://api.github.com/licenses/mit"
142892
- },
142893
- "spdx_id": {
142894
- "type": "string",
142895
- "nullable": true,
142896
- "example": "MIT"
142897
- },
142898
- "node_id": {
142899
- "type": "string",
142900
- "example": "MDc6TGljZW5zZW1pdA=="
142901
- },
142902
- "html_url": {
142903
- "type": "string",
142904
- "format": "uri"
142905
- }
142906
- },
142907
- "required": [
142908
- "key",
142909
- "name",
142910
- "url",
142911
- "spdx_id",
142912
- "node_id"
142913
- ],
142914
- "nullable": true
142915
- },
142916
- "organization": {
142917
- "title": "Simple User",
142918
- "description": "A GitHub user.",
142919
- "type": "object",
142920
- "properties": {
142921
- "name": {
142922
- "nullable": true,
142923
- "type": "string"
142924
- },
142925
- "email": {
142926
- "nullable": true,
142927
- "type": "string"
142928
- },
142929
- "login": {
142930
- "type": "string",
142931
- "example": "octocat"
142932
- },
142933
- "id": {
142934
- "type": "integer",
142935
- "example": 1
142936
- },
142937
- "node_id": {
142938
- "type": "string",
142939
- "example": "MDQ6VXNlcjE="
142940
- },
142941
- "avatar_url": {
142942
- "type": "string",
142943
- "format": "uri",
142944
- "example": "https://github.com/images/error/octocat_happy.gif"
142945
- },
142946
- "gravatar_id": {
142947
- "type": "string",
142948
- "example": "41d064eb2195891e12d0413f63227ea7",
142949
- "nullable": true
142950
- },
142951
- "url": {
142952
- "type": "string",
142953
- "format": "uri",
142954
- "example": "https://api.github.com/users/octocat"
142955
- },
142956
- "html_url": {
142957
- "type": "string",
142958
- "format": "uri",
142959
- "example": "https://github.com/octocat"
142960
- },
142961
- "followers_url": {
142962
- "type": "string",
142963
- "format": "uri",
142964
- "example": "https://api.github.com/users/octocat/followers"
142965
- },
142966
- "following_url": {
142967
- "type": "string",
142968
- "example": "https://api.github.com/users/octocat/following{/other_user}"
142969
- },
142970
- "gists_url": {
142971
- "type": "string",
142972
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
142973
- },
142974
- "starred_url": {
142975
- "type": "string",
142976
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
142977
- },
142978
- "subscriptions_url": {
142979
- "type": "string",
142980
- "format": "uri",
142981
- "example": "https://api.github.com/users/octocat/subscriptions"
142982
- },
142983
- "organizations_url": {
142984
- "type": "string",
142985
- "format": "uri",
142986
- "example": "https://api.github.com/users/octocat/orgs"
142987
- },
142988
- "repos_url": {
142989
- "type": "string",
142990
- "format": "uri",
142991
- "example": "https://api.github.com/users/octocat/repos"
142992
- },
142993
- "events_url": {
142994
- "type": "string",
142995
- "example": "https://api.github.com/users/octocat/events{/privacy}"
142996
- },
142997
- "received_events_url": {
142998
- "type": "string",
142999
- "format": "uri",
143000
- "example": "https://api.github.com/users/octocat/received_events"
143001
- },
143002
- "type": {
143003
- "type": "string",
143004
- "example": "User"
143005
- },
143006
- "site_admin": {
143007
- "type": "boolean"
143008
- },
143009
- "starred_at": {
143010
- "type": "string",
143011
- "example": "\"2020-07-09T00:17:55Z\""
143012
- }
143013
- },
143014
- "required": [
143015
- "avatar_url",
143016
- "events_url",
143017
- "followers_url",
143018
- "following_url",
143019
- "gists_url",
143020
- "gravatar_id",
143021
- "html_url",
143022
- "id",
143023
- "node_id",
143024
- "login",
143025
- "organizations_url",
143026
- "received_events_url",
143027
- "repos_url",
143028
- "site_admin",
143029
- "starred_url",
143030
- "subscriptions_url",
143031
- "type",
143032
- "url"
143033
- ],
143034
- "nullable": true
143035
- },
143036
- "forks": {
143037
- "type": "integer"
143038
- },
143039
- "permissions": {
143040
- "type": "object",
143041
- "properties": {
143042
- "admin": {
143043
- "type": "boolean"
143044
- },
143045
- "pull": {
143046
- "type": "boolean"
143047
- },
143048
- "triage": {
143049
- "type": "boolean"
143050
- },
143051
- "push": {
143052
- "type": "boolean"
143053
- },
143054
- "maintain": {
143055
- "type": "boolean"
143056
- }
143057
- },
143058
- "required": [
143059
- "admin",
143060
- "pull",
143061
- "push"
143062
- ]
143063
- },
143064
- "owner": {
143065
- "title": "Simple User",
143066
- "description": "A GitHub user.",
143067
- "type": "object",
143068
- "properties": {
143069
- "name": {
143070
- "nullable": true,
143071
- "type": "string"
143072
- },
143073
- "email": {
143074
- "nullable": true,
143075
- "type": "string"
143076
- },
143077
- "login": {
143078
- "type": "string",
143079
- "example": "octocat"
143080
- },
143081
- "id": {
143082
- "type": "integer",
143083
- "example": 1
143084
- },
143085
- "node_id": {
143086
- "type": "string",
143087
- "example": "MDQ6VXNlcjE="
143088
- },
143089
- "avatar_url": {
143090
- "type": "string",
143091
- "format": "uri",
143092
- "example": "https://github.com/images/error/octocat_happy.gif"
143093
- },
143094
- "gravatar_id": {
143095
- "type": "string",
143096
- "example": "41d064eb2195891e12d0413f63227ea7",
143097
- "nullable": true
143098
- },
143099
- "url": {
143100
- "type": "string",
143101
- "format": "uri",
143102
- "example": "https://api.github.com/users/octocat"
143103
- },
143104
- "html_url": {
143105
- "type": "string",
143106
- "format": "uri",
143107
- "example": "https://github.com/octocat"
143108
- },
143109
- "followers_url": {
143110
- "type": "string",
143111
- "format": "uri",
143112
- "example": "https://api.github.com/users/octocat/followers"
143113
- },
143114
- "following_url": {
143115
- "type": "string",
143116
- "example": "https://api.github.com/users/octocat/following{/other_user}"
143117
- },
143118
- "gists_url": {
143119
- "type": "string",
143120
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
143121
- },
143122
- "starred_url": {
143123
- "type": "string",
143124
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
143125
- },
143126
- "subscriptions_url": {
143127
- "type": "string",
143128
- "format": "uri",
143129
- "example": "https://api.github.com/users/octocat/subscriptions"
143130
- },
143131
- "organizations_url": {
143132
- "type": "string",
143133
- "format": "uri",
143134
- "example": "https://api.github.com/users/octocat/orgs"
143135
- },
143136
- "repos_url": {
143137
- "type": "string",
143138
- "format": "uri",
143139
- "example": "https://api.github.com/users/octocat/repos"
143140
- },
143141
- "events_url": {
143142
- "type": "string",
143143
- "example": "https://api.github.com/users/octocat/events{/privacy}"
143144
- },
143145
- "received_events_url": {
143146
- "type": "string",
143147
- "format": "uri",
143148
- "example": "https://api.github.com/users/octocat/received_events"
143149
- },
143150
- "type": {
143151
- "type": "string",
143152
- "example": "User"
143153
- },
143154
- "site_admin": {
143155
- "type": "boolean"
143156
- },
143157
- "starred_at": {
143158
- "type": "string",
143159
- "example": "\"2020-07-09T00:17:55Z\""
143160
- }
143161
- },
143162
- "required": [
143163
- "avatar_url",
143164
- "events_url",
143165
- "followers_url",
143166
- "following_url",
143167
- "gists_url",
143168
- "gravatar_id",
143169
- "html_url",
143170
- "id",
143171
- "node_id",
143172
- "login",
143173
- "organizations_url",
143174
- "received_events_url",
143175
- "repos_url",
143176
- "site_admin",
143177
- "starred_url",
143178
- "subscriptions_url",
143179
- "type",
143180
- "url"
143181
- ]
143182
- },
143183
- "private": {
143184
- "description": "Whether the repository is private or public.",
143185
- "default": false,
143186
- "type": "boolean"
143187
- },
143188
- "html_url": {
143189
- "type": "string",
143190
- "format": "uri",
143191
- "example": "https://github.com/octocat/Hello-World"
143192
- },
143193
- "description": {
143194
- "type": "string",
143195
- "example": "This your first repo!",
143196
- "nullable": true
143197
- },
143198
- "fork": {
143199
- "type": "boolean"
143200
- },
143201
- "url": {
143202
- "type": "string",
143203
- "format": "uri",
143204
- "example": "https://api.github.com/repos/octocat/Hello-World"
143205
- },
143206
- "archive_url": {
143207
- "type": "string",
143208
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
143209
- },
143210
- "assignees_url": {
143211
- "type": "string",
143212
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
143213
- },
143214
- "blobs_url": {
143215
- "type": "string",
143216
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
143217
- },
143218
- "branches_url": {
143219
- "type": "string",
143220
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
143221
- },
143222
- "collaborators_url": {
143223
- "type": "string",
143224
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
143225
- },
143226
- "comments_url": {
143227
- "type": "string",
143228
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
143229
- },
143230
- "commits_url": {
143231
- "type": "string",
143232
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
143233
- },
143234
- "compare_url": {
143235
- "type": "string",
143236
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
143237
- },
143238
- "contents_url": {
143239
- "type": "string",
143240
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
143241
- },
143242
- "contributors_url": {
143243
- "type": "string",
143244
- "format": "uri",
143245
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
143246
- },
143247
- "deployments_url": {
143248
- "type": "string",
143249
- "format": "uri",
143250
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
143251
- },
143252
- "downloads_url": {
143253
- "type": "string",
143254
- "format": "uri",
143255
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
143256
- },
143257
- "events_url": {
143258
- "type": "string",
143259
- "format": "uri",
143260
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
143261
- },
143262
- "forks_url": {
143263
- "type": "string",
143264
- "format": "uri",
143265
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
143266
- },
143267
- "git_commits_url": {
143268
- "type": "string",
143269
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
143270
- },
143271
- "git_refs_url": {
143272
- "type": "string",
143273
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
143274
- },
143275
- "git_tags_url": {
143276
- "type": "string",
143277
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
143278
- },
143279
- "git_url": {
143280
- "type": "string",
143281
- "example": "git:github.com/octocat/Hello-World.git"
143282
- },
143283
- "issue_comment_url": {
143284
- "type": "string",
143285
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
143286
- },
143287
- "issue_events_url": {
143288
- "type": "string",
143289
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
143290
- },
143291
- "issues_url": {
143292
- "type": "string",
143293
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
143294
- },
143295
- "keys_url": {
143296
- "type": "string",
143297
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
143298
- },
143299
- "labels_url": {
143300
- "type": "string",
143301
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
143302
- },
143303
- "languages_url": {
143304
- "type": "string",
143305
- "format": "uri",
143306
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
143307
- },
143308
- "merges_url": {
143309
- "type": "string",
143310
- "format": "uri",
143311
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
143312
- },
143313
- "milestones_url": {
143314
- "type": "string",
143315
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
143316
- },
143317
- "notifications_url": {
143318
- "type": "string",
143319
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
143320
- },
143321
- "pulls_url": {
143322
- "type": "string",
143323
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
143324
- },
143325
- "releases_url": {
143326
- "type": "string",
143327
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
143328
- },
143329
- "ssh_url": {
143330
- "type": "string",
143331
- "example": "git@github.com:octocat/Hello-World.git"
143332
- },
143333
- "stargazers_url": {
143334
- "type": "string",
143335
- "format": "uri",
143336
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
143337
- },
143338
- "statuses_url": {
143339
- "type": "string",
143340
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
143341
- },
143342
- "subscribers_url": {
143343
- "type": "string",
143344
- "format": "uri",
143345
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
143346
- },
143347
- "subscription_url": {
143348
- "type": "string",
143349
- "format": "uri",
143350
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
143351
- },
143352
- "tags_url": {
143353
- "type": "string",
143354
- "format": "uri",
143355
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
143356
- },
143357
- "teams_url": {
143358
- "type": "string",
143359
- "format": "uri",
143360
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
143361
- },
143362
- "trees_url": {
143363
- "type": "string",
143364
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
143365
- },
143366
- "clone_url": {
143367
- "type": "string",
143368
- "example": "https://github.com/octocat/Hello-World.git"
143369
- },
143370
- "mirror_url": {
143371
- "type": "string",
143372
- "format": "uri",
143373
- "example": "git:git.example.com/octocat/Hello-World",
143374
- "nullable": true
143375
- },
143376
- "hooks_url": {
143377
- "type": "string",
143378
- "format": "uri",
143379
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
143380
- },
143381
- "svn_url": {
143382
- "type": "string",
143383
- "format": "uri",
143384
- "example": "https://svn.github.com/octocat/Hello-World"
143385
- },
143386
- "homepage": {
143387
- "type": "string",
143388
- "format": "uri",
143389
- "example": "https://github.com",
143390
- "nullable": true
143391
- },
143392
- "language": {
143393
- "type": "string",
143394
- "nullable": true
143395
- },
143396
- "forks_count": {
143397
- "type": "integer",
143398
- "example": 9
143399
- },
143400
- "stargazers_count": {
143401
- "type": "integer",
143402
- "example": 80
143403
- },
143404
- "watchers_count": {
143405
- "type": "integer",
143406
- "example": 80
143407
- },
143408
- "size": {
143409
- "description": "The size of the repository. Size is calculated hourly. When a repository is initially created, the size is 0.",
143410
- "type": "integer",
143411
- "example": 108
143412
- },
143413
- "default_branch": {
143414
- "description": "The default branch of the repository.",
143415
- "type": "string",
143416
- "example": "master"
143417
- },
143418
- "open_issues_count": {
143419
- "type": "integer",
143420
- "example": 0
143421
- },
143422
- "is_template": {
143423
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
143424
- "default": false,
143425
- "type": "boolean",
143426
- "example": true
143427
- },
143428
- "topics": {
143429
- "type": "array",
143430
- "items": {
143431
- "type": "string"
143432
- }
143433
- },
143434
- "has_issues": {
143435
- "description": "Whether issues are enabled.",
143436
- "default": true,
143437
- "type": "boolean",
143438
- "example": true
143439
- },
143440
- "has_projects": {
143441
- "description": "Whether projects are enabled.",
143442
- "default": true,
143443
- "type": "boolean",
143444
- "example": true
143445
- },
143446
- "has_wiki": {
143447
- "description": "Whether the wiki is enabled.",
143448
- "default": true,
143449
- "type": "boolean",
143450
- "example": true
143451
- },
143452
- "has_pages": {
143453
- "type": "boolean"
143454
- },
143455
- "has_downloads": {
143456
- "description": "Whether downloads are enabled.",
143457
- "default": true,
143458
- "type": "boolean",
143459
- "example": true
143460
- },
143461
- "archived": {
143462
- "description": "Whether the repository is archived.",
143463
- "default": false,
143464
- "type": "boolean"
143465
- },
143466
- "disabled": {
143467
- "type": "boolean",
143468
- "description": "Returns whether or not this repository disabled."
143469
- },
143470
- "visibility": {
143471
- "description": "The repository visibility: public, private, or internal.",
143472
- "default": "public",
143473
- "type": "string"
143474
- },
143475
- "pushed_at": {
143476
- "type": "string",
143477
- "format": "date-time",
143478
- "example": "2011-01-26T19:06:43Z",
143479
- "nullable": true
143480
- },
143481
- "created_at": {
143482
- "type": "string",
143483
- "format": "date-time",
143484
- "example": "2011-01-26T19:01:12Z",
143485
- "nullable": true
143486
- },
143487
- "updated_at": {
143488
- "type": "string",
143489
- "format": "date-time",
143490
- "example": "2011-01-26T19:14:43Z",
143491
- "nullable": true
143492
- },
143493
- "allow_rebase_merge": {
143494
- "description": "Whether to allow rebase merges for pull requests.",
143495
- "default": true,
143496
- "type": "boolean",
143497
- "example": true
143498
- },
143499
- "template_repository": {
143500
- "nullable": true,
143501
- "type": "object",
143502
- "properties": {
143503
- "id": {
143504
- "type": "integer"
143505
- },
143506
- "node_id": {
143507
- "type": "string"
143508
- },
143509
- "name": {
143510
- "type": "string"
143511
- },
143512
- "full_name": {
143513
- "type": "string"
143514
- },
143515
- "owner": {
143516
- "type": "object",
143517
- "properties": {
143518
- "login": {
143519
- "type": "string"
143520
- },
143521
- "id": {
143522
- "type": "integer"
143523
- },
143524
- "node_id": {
143525
- "type": "string"
143526
- },
143527
- "avatar_url": {
143528
- "type": "string"
143529
- },
143530
- "gravatar_id": {
143531
- "type": "string"
143532
- },
143533
- "url": {
143534
- "type": "string"
143535
- },
143536
- "html_url": {
143537
- "type": "string"
143538
- },
143539
- "followers_url": {
143540
- "type": "string"
143541
- },
143542
- "following_url": {
143543
- "type": "string"
143544
- },
143545
- "gists_url": {
143546
- "type": "string"
143547
- },
143548
- "starred_url": {
143549
- "type": "string"
143550
- },
143551
- "subscriptions_url": {
143552
- "type": "string"
143553
- },
143554
- "organizations_url": {
143555
- "type": "string"
143556
- },
143557
- "repos_url": {
143558
- "type": "string"
143559
- },
143560
- "events_url": {
143561
- "type": "string"
143562
- },
143563
- "received_events_url": {
143564
- "type": "string"
143565
- },
143566
- "type": {
143567
- "type": "string"
143568
- },
143569
- "site_admin": {
143570
- "type": "boolean"
143571
- }
143572
- }
143573
- },
143574
- "private": {
143575
- "type": "boolean"
143576
- },
143577
- "html_url": {
143578
- "type": "string"
143579
- },
143580
- "description": {
143581
- "type": "string"
143582
- },
143583
- "fork": {
143584
- "type": "boolean"
143585
- },
143586
- "url": {
143587
- "type": "string"
143588
- },
143589
- "archive_url": {
143590
- "type": "string"
143591
- },
143592
- "assignees_url": {
143593
- "type": "string"
143594
- },
143595
- "blobs_url": {
143596
- "type": "string"
143597
- },
143598
- "branches_url": {
143599
- "type": "string"
143600
- },
143601
- "collaborators_url": {
143602
- "type": "string"
143603
- },
143604
- "comments_url": {
143605
- "type": "string"
143606
- },
143607
- "commits_url": {
143608
- "type": "string"
143609
- },
143610
- "compare_url": {
143611
- "type": "string"
143612
- },
143613
- "contents_url": {
143614
- "type": "string"
143615
- },
143616
- "contributors_url": {
143617
- "type": "string"
143618
- },
143619
- "deployments_url": {
143620
- "type": "string"
143621
- },
143622
- "downloads_url": {
143623
- "type": "string"
143624
- },
143625
- "events_url": {
143626
- "type": "string"
143627
- },
143628
- "forks_url": {
143629
- "type": "string"
143630
- },
143631
- "git_commits_url": {
143632
- "type": "string"
143633
- },
143634
- "git_refs_url": {
143635
- "type": "string"
143636
- },
143637
- "git_tags_url": {
143638
- "type": "string"
143639
- },
143640
- "git_url": {
143641
- "type": "string"
143642
- },
143643
- "issue_comment_url": {
143644
- "type": "string"
143645
- },
143646
- "issue_events_url": {
143647
- "type": "string"
143648
- },
143649
- "issues_url": {
143650
- "type": "string"
143651
- },
143652
- "keys_url": {
143653
- "type": "string"
143654
- },
143655
- "labels_url": {
143656
- "type": "string"
143657
- },
143658
- "languages_url": {
143659
- "type": "string"
143660
- },
143661
- "merges_url": {
143662
- "type": "string"
143663
- },
143664
- "milestones_url": {
143665
- "type": "string"
143666
- },
143667
- "notifications_url": {
143668
- "type": "string"
143669
- },
143670
- "pulls_url": {
143671
- "type": "string"
143672
- },
143673
- "releases_url": {
143674
- "type": "string"
143675
- },
143676
- "ssh_url": {
143677
- "type": "string"
143678
- },
143679
- "stargazers_url": {
143680
- "type": "string"
143681
- },
143682
- "statuses_url": {
143683
- "type": "string"
143684
- },
143685
- "subscribers_url": {
143686
- "type": "string"
143687
- },
143688
- "subscription_url": {
143689
- "type": "string"
143690
- },
143691
- "tags_url": {
143692
- "type": "string"
143693
- },
143694
- "teams_url": {
143695
- "type": "string"
143696
- },
143697
- "trees_url": {
143698
- "type": "string"
143699
- },
143700
- "clone_url": {
143701
- "type": "string"
143702
- },
143703
- "mirror_url": {
143704
- "type": "string"
143705
- },
143706
- "hooks_url": {
143707
- "type": "string"
143708
- },
143709
- "svn_url": {
143710
- "type": "string"
143711
- },
143712
- "homepage": {
143713
- "type": "string"
143714
- },
143715
- "language": {
143716
- "type": "string"
143717
- },
143718
- "forks_count": {
143719
- "type": "integer"
143720
- },
143721
- "stargazers_count": {
143722
- "type": "integer"
143723
- },
143724
- "watchers_count": {
143725
- "type": "integer"
143726
- },
143727
- "size": {
143728
- "type": "integer"
143729
- },
143730
- "default_branch": {
143731
- "type": "string"
143732
- },
143733
- "open_issues_count": {
143734
- "type": "integer"
143735
- },
143736
- "is_template": {
143737
- "type": "boolean"
143738
- },
143739
- "topics": {
143740
- "type": "array",
143741
- "items": {
143742
- "type": "string"
143743
- }
143744
- },
143745
- "has_issues": {
143746
- "type": "boolean"
143747
- },
143748
- "has_projects": {
143749
- "type": "boolean"
143750
- },
143751
- "has_wiki": {
143752
- "type": "boolean"
143753
- },
143754
- "has_pages": {
143755
- "type": "boolean"
143756
- },
143757
- "has_downloads": {
143758
- "type": "boolean"
143759
- },
143760
- "archived": {
143761
- "type": "boolean"
143762
- },
143763
- "disabled": {
143764
- "type": "boolean"
143765
- },
143766
- "visibility": {
143767
- "type": "string"
143768
- },
143769
- "pushed_at": {
143770
- "type": "string"
143771
- },
143772
- "created_at": {
143773
- "type": "string"
143774
- },
143775
- "updated_at": {
143776
- "type": "string"
143777
- },
143778
- "permissions": {
143779
- "type": "object",
143780
- "properties": {
143781
- "admin": {
143782
- "type": "boolean"
143783
- },
143784
- "maintain": {
143785
- "type": "boolean"
143786
- },
143787
- "push": {
143788
- "type": "boolean"
143789
- },
143790
- "triage": {
143791
- "type": "boolean"
143792
- },
143793
- "pull": {
143794
- "type": "boolean"
143795
- }
143796
- }
143797
- },
143798
- "allow_rebase_merge": {
143799
- "type": "boolean"
143800
- },
143801
- "temp_clone_token": {
143802
- "type": "string"
143803
- },
143804
- "allow_squash_merge": {
143805
- "type": "boolean"
143806
- },
143807
- "allow_auto_merge": {
143808
- "type": "boolean"
143809
- },
143810
- "delete_branch_on_merge": {
143811
- "type": "boolean"
143812
- },
143813
- "allow_update_branch": {
143814
- "type": "boolean"
143815
- },
143816
- "allow_merge_commit": {
143817
- "type": "boolean"
143818
- },
143819
- "subscribers_count": {
143820
- "type": "integer"
143821
- },
143822
- "network_count": {
143823
- "type": "integer"
143824
- }
143825
- }
143826
- },
143827
- "temp_clone_token": {
143828
- "type": "string"
143829
- },
143830
- "allow_squash_merge": {
143831
- "description": "Whether to allow squash merges for pull requests.",
143832
- "default": true,
143833
- "type": "boolean",
143834
- "example": true
143835
- },
143836
- "allow_auto_merge": {
143837
- "description": "Whether to allow Auto-merge to be used on pull requests.",
143838
- "default": false,
143839
- "type": "boolean",
143840
- "example": false
143841
- },
143842
- "delete_branch_on_merge": {
143843
- "description": "Whether to delete head branches when pull requests are merged",
143844
- "default": false,
143845
- "type": "boolean",
143846
- "example": false
143847
- },
143848
- "allow_update_branch": {
143849
- "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.",
143850
- "default": false,
143851
- "type": "boolean",
143852
- "example": false
143853
- },
143854
- "allow_merge_commit": {
143855
- "description": "Whether to allow merge commits for pull requests.",
143856
- "default": true,
143857
- "type": "boolean",
143858
- "example": true
143859
- },
143860
- "allow_forking": {
143861
- "description": "Whether to allow forking this repo",
143862
- "type": "boolean"
143863
- },
143864
- "web_commit_signoff_required": {
143865
- "description": "Whether to require contributors to sign off on web-based commits",
143866
- "default": false,
143867
- "type": "boolean"
143868
- },
143869
- "subscribers_count": {
143870
- "type": "integer"
143871
- },
143872
- "network_count": {
143873
- "type": "integer"
143874
- },
143875
- "open_issues": {
143876
- "type": "integer"
143877
- },
143878
- "watchers": {
143879
- "type": "integer"
143880
- },
143881
- "master_branch": {
143882
- "type": "string"
143883
- },
143884
- "starred_at": {
143885
- "type": "string",
143886
- "example": "\"2020-07-09T00:17:42Z\""
143887
- },
143888
- "anonymous_access_enabled": {
143889
- "type": "boolean",
143890
- "description": "Whether anonymous git access is enabled for this repository"
143891
- }
143892
- },
143893
- "required": [
143894
- "archive_url",
143895
- "assignees_url",
143896
- "blobs_url",
143897
- "branches_url",
143898
- "collaborators_url",
143899
- "comments_url",
143900
- "commits_url",
143901
- "compare_url",
143902
- "contents_url",
143903
- "contributors_url",
143904
- "deployments_url",
143905
- "description",
143906
- "downloads_url",
143907
- "events_url",
143908
- "fork",
143909
- "forks_url",
143910
- "full_name",
143911
- "git_commits_url",
143912
- "git_refs_url",
143913
- "git_tags_url",
143914
- "hooks_url",
143915
- "html_url",
143916
- "id",
143917
- "node_id",
143918
- "issue_comment_url",
143919
- "issue_events_url",
143920
- "issues_url",
143921
- "keys_url",
143922
- "labels_url",
143923
- "languages_url",
143924
- "merges_url",
143925
- "milestones_url",
143926
- "name",
143927
- "notifications_url",
143928
- "owner",
143929
- "private",
143930
- "pulls_url",
143931
- "releases_url",
143932
- "stargazers_url",
143933
- "statuses_url",
143934
- "subscribers_url",
143935
- "subscription_url",
143936
- "tags_url",
143937
- "teams_url",
143938
- "trees_url",
143939
- "url",
143940
- "clone_url",
143941
- "default_branch",
143942
- "forks",
143943
- "forks_count",
143944
- "git_url",
143945
- "has_downloads",
143946
- "has_issues",
143947
- "has_projects",
143948
- "has_wiki",
143949
- "has_pages",
143950
- "homepage",
143951
- "language",
143952
- "archived",
143953
- "disabled",
143954
- "mirror_url",
143955
- "open_issues",
143956
- "open_issues_count",
143957
- "license",
143958
- "pushed_at",
143959
- "size",
143960
- "ssh_url",
143961
- "stargazers_count",
143962
- "svn_url",
143963
- "watchers",
143964
- "watchers_count",
143965
- "created_at",
143966
- "updated_at"
143967
- ]
143968
- },
143969
- "sha": {
143970
- "type": "string"
143971
- },
143972
- "user": {
143973
- "title": "Simple User",
143974
- "description": "A GitHub user.",
143975
- "type": "object",
143976
- "properties": {
143977
- "name": {
143978
- "nullable": true,
143979
- "type": "string"
143980
- },
143981
- "email": {
143982
- "nullable": true,
143983
- "type": "string"
143984
- },
143985
- "login": {
143986
- "type": "string",
143987
- "example": "octocat"
143988
- },
143989
- "id": {
143990
- "type": "integer",
143991
- "example": 1
143992
- },
143993
- "node_id": {
143994
- "type": "string",
143995
- "example": "MDQ6VXNlcjE="
143996
- },
143997
- "avatar_url": {
143998
- "type": "string",
143999
- "format": "uri",
144000
- "example": "https://github.com/images/error/octocat_happy.gif"
144001
- },
144002
- "gravatar_id": {
144003
- "type": "string",
144004
- "example": "41d064eb2195891e12d0413f63227ea7",
144005
- "nullable": true
144006
- },
144007
- "url": {
144008
- "type": "string",
144009
- "format": "uri",
144010
- "example": "https://api.github.com/users/octocat"
144011
- },
144012
- "html_url": {
144013
- "type": "string",
144014
- "format": "uri",
144015
- "example": "https://github.com/octocat"
144016
- },
144017
- "followers_url": {
144018
- "type": "string",
144019
- "format": "uri",
144020
- "example": "https://api.github.com/users/octocat/followers"
144021
- },
144022
- "following_url": {
144023
- "type": "string",
144024
- "example": "https://api.github.com/users/octocat/following{/other_user}"
144025
- },
144026
- "gists_url": {
144027
- "type": "string",
144028
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
144029
- },
144030
- "starred_url": {
144031
- "type": "string",
144032
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
144033
- },
144034
- "subscriptions_url": {
144035
- "type": "string",
144036
- "format": "uri",
144037
- "example": "https://api.github.com/users/octocat/subscriptions"
144038
- },
144039
- "organizations_url": {
144040
- "type": "string",
144041
- "format": "uri",
144042
- "example": "https://api.github.com/users/octocat/orgs"
144043
- },
144044
- "repos_url": {
144045
- "type": "string",
144046
- "format": "uri",
144047
- "example": "https://api.github.com/users/octocat/repos"
144048
- },
144049
- "events_url": {
144050
- "type": "string",
144051
- "example": "https://api.github.com/users/octocat/events{/privacy}"
144052
- },
144053
- "received_events_url": {
144054
- "type": "string",
144055
- "format": "uri",
144056
- "example": "https://api.github.com/users/octocat/received_events"
144057
- },
144058
- "type": {
144059
- "type": "string",
144060
- "example": "User"
144061
- },
144062
- "site_admin": {
144063
- "type": "boolean"
144064
- },
144065
- "starred_at": {
144066
- "type": "string",
144067
- "example": "\"2020-07-09T00:17:55Z\""
144068
- }
144069
- },
144070
- "required": [
144071
- "avatar_url",
144072
- "events_url",
144073
- "followers_url",
144074
- "following_url",
144075
- "gists_url",
144076
- "gravatar_id",
144077
- "html_url",
144078
- "id",
144079
- "node_id",
144080
- "login",
144081
- "organizations_url",
144082
- "received_events_url",
144083
- "repos_url",
144084
- "site_admin",
144085
- "starred_url",
144086
- "subscriptions_url",
144087
- "type",
144088
- "url"
144089
- ],
144090
- "nullable": true
144091
- }
144092
- },
144093
- "required": [
144094
- "label",
144095
- "ref",
144096
- "repo",
144097
- "sha",
144098
- "user"
144099
- ]
144100
- },
144101
- "base": {
144102
- "type": "object",
144103
- "properties": {
144104
- "label": {
144105
- "type": "string"
144106
- },
144107
- "ref": {
144108
- "type": "string"
144109
- },
144110
- "repo": {
144111
- "title": "Repository",
144112
- "description": "A repository on GitHub.",
144113
- "type": "object",
144114
- "properties": {
144115
- "id": {
144116
- "description": "Unique identifier of the repository",
144117
- "example": 42,
144118
- "type": "integer"
144119
- },
144120
- "node_id": {
144121
- "type": "string",
144122
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
144123
- },
144124
- "name": {
144125
- "description": "The name of the repository.",
144126
- "type": "string",
144127
- "example": "Team Environment"
144128
- },
144129
- "full_name": {
144130
- "type": "string",
144131
- "example": "octocat/Hello-World"
144132
- },
144133
- "license": {
144134
- "title": "License Simple",
144135
- "description": "License Simple",
144136
- "type": "object",
144137
- "properties": {
144138
- "key": {
144139
- "type": "string",
144140
- "example": "mit"
144141
- },
144142
- "name": {
144143
- "type": "string",
144144
- "example": "MIT License"
144145
- },
144146
- "url": {
144147
- "type": "string",
144148
- "nullable": true,
144149
- "format": "uri",
144150
- "example": "https://api.github.com/licenses/mit"
144151
- },
144152
- "spdx_id": {
144153
- "type": "string",
144154
- "nullable": true,
144155
- "example": "MIT"
144156
- },
144157
- "node_id": {
144158
- "type": "string",
144159
- "example": "MDc6TGljZW5zZW1pdA=="
144160
- },
144161
- "html_url": {
144162
- "type": "string",
144163
- "format": "uri"
144164
- }
144165
- },
144166
- "required": [
144167
- "key",
144168
- "name",
144169
- "url",
144170
- "spdx_id",
144171
- "node_id"
144172
- ],
144173
- "nullable": true
144174
- },
144175
- "organization": {
144176
- "title": "Simple User",
144177
- "description": "A GitHub user.",
144178
- "type": "object",
144179
- "properties": {
144180
- "name": {
144181
- "nullable": true,
144182
- "type": "string"
144183
- },
144184
- "email": {
144185
- "nullable": true,
144186
- "type": "string"
144187
- },
144188
- "login": {
144189
- "type": "string",
144190
- "example": "octocat"
144191
- },
144192
- "id": {
144193
- "type": "integer",
144194
- "example": 1
144195
- },
144196
- "node_id": {
144197
- "type": "string",
144198
- "example": "MDQ6VXNlcjE="
144199
- },
144200
- "avatar_url": {
144201
- "type": "string",
144202
- "format": "uri",
144203
- "example": "https://github.com/images/error/octocat_happy.gif"
144204
- },
144205
- "gravatar_id": {
144206
- "type": "string",
144207
- "example": "41d064eb2195891e12d0413f63227ea7",
144208
- "nullable": true
144209
- },
144210
- "url": {
144211
- "type": "string",
144212
- "format": "uri",
144213
- "example": "https://api.github.com/users/octocat"
144214
- },
144215
- "html_url": {
144216
- "type": "string",
144217
- "format": "uri",
144218
- "example": "https://github.com/octocat"
144219
- },
144220
- "followers_url": {
144221
- "type": "string",
144222
- "format": "uri",
144223
- "example": "https://api.github.com/users/octocat/followers"
144224
- },
144225
- "following_url": {
144226
- "type": "string",
144227
- "example": "https://api.github.com/users/octocat/following{/other_user}"
144228
- },
144229
- "gists_url": {
144230
- "type": "string",
144231
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
144232
- },
144233
- "starred_url": {
144234
- "type": "string",
144235
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
144236
- },
144237
- "subscriptions_url": {
144238
- "type": "string",
144239
- "format": "uri",
144240
- "example": "https://api.github.com/users/octocat/subscriptions"
144241
- },
144242
- "organizations_url": {
144243
- "type": "string",
144244
- "format": "uri",
144245
- "example": "https://api.github.com/users/octocat/orgs"
144246
- },
144247
- "repos_url": {
144248
- "type": "string",
144249
- "format": "uri",
144250
- "example": "https://api.github.com/users/octocat/repos"
144251
- },
144252
- "events_url": {
144253
- "type": "string",
144254
- "example": "https://api.github.com/users/octocat/events{/privacy}"
144255
- },
144256
- "received_events_url": {
144257
- "type": "string",
144258
- "format": "uri",
144259
- "example": "https://api.github.com/users/octocat/received_events"
144260
- },
144261
- "type": {
144262
- "type": "string",
144263
- "example": "User"
144264
- },
144265
- "site_admin": {
144266
- "type": "boolean"
144267
- },
144268
- "starred_at": {
144269
- "type": "string",
144270
- "example": "\"2020-07-09T00:17:55Z\""
144271
- }
144272
- },
144273
- "required": [
144274
- "avatar_url",
144275
- "events_url",
144276
- "followers_url",
144277
- "following_url",
144278
- "gists_url",
144279
- "gravatar_id",
144280
- "html_url",
144281
- "id",
144282
- "node_id",
144283
- "login",
144284
- "organizations_url",
144285
- "received_events_url",
144286
- "repos_url",
144287
- "site_admin",
144288
- "starred_url",
144289
- "subscriptions_url",
144290
- "type",
144291
- "url"
144292
- ],
144293
- "nullable": true
144294
- },
144295
- "forks": {
144296
- "type": "integer"
144297
- },
144298
- "permissions": {
144299
- "type": "object",
144300
- "properties": {
144301
- "admin": {
144302
- "type": "boolean"
144303
- },
144304
- "pull": {
144305
- "type": "boolean"
144306
- },
144307
- "triage": {
144308
- "type": "boolean"
144309
- },
144310
- "push": {
144311
- "type": "boolean"
144312
- },
144313
- "maintain": {
144314
- "type": "boolean"
144315
- }
144316
- },
144317
- "required": [
144318
- "admin",
144319
- "pull",
144320
- "push"
144321
- ]
144322
- },
144323
- "owner": {
144324
- "title": "Simple User",
144325
- "description": "A GitHub user.",
144326
- "type": "object",
144327
- "properties": {
144328
- "name": {
144329
- "nullable": true,
144330
- "type": "string"
144331
- },
144332
- "email": {
144333
- "nullable": true,
144334
- "type": "string"
144335
- },
144336
- "login": {
144337
- "type": "string",
144338
- "example": "octocat"
144339
- },
144340
- "id": {
144341
- "type": "integer",
144342
- "example": 1
144343
- },
144344
- "node_id": {
144345
- "type": "string",
144346
- "example": "MDQ6VXNlcjE="
144347
- },
144348
- "avatar_url": {
144349
- "type": "string",
144350
- "format": "uri",
144351
- "example": "https://github.com/images/error/octocat_happy.gif"
144352
- },
144353
- "gravatar_id": {
144354
- "type": "string",
144355
- "example": "41d064eb2195891e12d0413f63227ea7",
144356
- "nullable": true
144357
- },
144358
- "url": {
144359
- "type": "string",
144360
- "format": "uri",
144361
- "example": "https://api.github.com/users/octocat"
144362
- },
144363
- "html_url": {
144364
- "type": "string",
144365
- "format": "uri",
144366
- "example": "https://github.com/octocat"
144367
- },
144368
- "followers_url": {
144369
- "type": "string",
144370
- "format": "uri",
144371
- "example": "https://api.github.com/users/octocat/followers"
144372
- },
144373
- "following_url": {
144374
- "type": "string",
144375
- "example": "https://api.github.com/users/octocat/following{/other_user}"
144376
- },
144377
- "gists_url": {
144378
- "type": "string",
144379
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
144380
- },
144381
- "starred_url": {
144382
- "type": "string",
144383
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
144384
- },
144385
- "subscriptions_url": {
144386
- "type": "string",
144387
- "format": "uri",
144388
- "example": "https://api.github.com/users/octocat/subscriptions"
144389
- },
144390
- "organizations_url": {
144391
- "type": "string",
144392
- "format": "uri",
144393
- "example": "https://api.github.com/users/octocat/orgs"
144394
- },
144395
- "repos_url": {
144396
- "type": "string",
144397
- "format": "uri",
144398
- "example": "https://api.github.com/users/octocat/repos"
144399
- },
144400
- "events_url": {
144401
- "type": "string",
144402
- "example": "https://api.github.com/users/octocat/events{/privacy}"
144403
- },
144404
- "received_events_url": {
144405
- "type": "string",
144406
- "format": "uri",
144407
- "example": "https://api.github.com/users/octocat/received_events"
144408
- },
144409
- "type": {
144410
- "type": "string",
144411
- "example": "User"
144412
- },
144413
- "site_admin": {
144414
- "type": "boolean"
144415
- },
144416
- "starred_at": {
144417
- "type": "string",
144418
- "example": "\"2020-07-09T00:17:55Z\""
144419
- }
144420
- },
144421
- "required": [
144422
- "avatar_url",
144423
- "events_url",
144424
- "followers_url",
144425
- "following_url",
144426
- "gists_url",
144427
- "gravatar_id",
144428
- "html_url",
144429
- "id",
144430
- "node_id",
144431
- "login",
144432
- "organizations_url",
144433
- "received_events_url",
144434
- "repos_url",
144435
- "site_admin",
144436
- "starred_url",
144437
- "subscriptions_url",
144438
- "type",
144439
- "url"
144440
- ]
144441
- },
144442
- "private": {
144443
- "description": "Whether the repository is private or public.",
144444
- "default": false,
144445
- "type": "boolean"
144446
- },
144447
- "html_url": {
144448
- "type": "string",
144449
- "format": "uri",
144450
- "example": "https://github.com/octocat/Hello-World"
144451
- },
144452
- "description": {
144453
- "type": "string",
144454
- "example": "This your first repo!",
144455
- "nullable": true
144456
- },
144457
- "fork": {
144458
- "type": "boolean"
144459
- },
144460
- "url": {
144461
- "type": "string",
144462
- "format": "uri",
144463
- "example": "https://api.github.com/repos/octocat/Hello-World"
144464
- },
144465
- "archive_url": {
144466
- "type": "string",
144467
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
144468
- },
144469
- "assignees_url": {
144470
- "type": "string",
144471
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
144472
- },
144473
- "blobs_url": {
144474
- "type": "string",
144475
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
144476
- },
144477
- "branches_url": {
144478
- "type": "string",
144479
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
144480
- },
144481
- "collaborators_url": {
144482
- "type": "string",
144483
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
144484
- },
144485
- "comments_url": {
144486
- "type": "string",
144487
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
144488
- },
144489
- "commits_url": {
144490
- "type": "string",
144491
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
144492
- },
144493
- "compare_url": {
144494
- "type": "string",
144495
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
144496
- },
144497
- "contents_url": {
144498
- "type": "string",
144499
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
144500
- },
144501
- "contributors_url": {
144502
- "type": "string",
144503
- "format": "uri",
144504
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
144505
- },
144506
- "deployments_url": {
144507
- "type": "string",
144508
- "format": "uri",
144509
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
144510
- },
144511
- "downloads_url": {
144512
- "type": "string",
144513
- "format": "uri",
144514
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
144515
- },
144516
- "events_url": {
144517
- "type": "string",
144518
- "format": "uri",
144519
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
144520
- },
144521
- "forks_url": {
144522
- "type": "string",
144523
- "format": "uri",
144524
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
144525
- },
144526
- "git_commits_url": {
144527
- "type": "string",
144528
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
144529
- },
144530
- "git_refs_url": {
144531
- "type": "string",
144532
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
144533
- },
144534
- "git_tags_url": {
144535
- "type": "string",
144536
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
144537
- },
144538
- "git_url": {
144539
- "type": "string",
144540
- "example": "git:github.com/octocat/Hello-World.git"
144541
- },
144542
- "issue_comment_url": {
144543
- "type": "string",
144544
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
144545
- },
144546
- "issue_events_url": {
144547
- "type": "string",
144548
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
144549
- },
144550
- "issues_url": {
144551
- "type": "string",
144552
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
144553
- },
144554
- "keys_url": {
144555
- "type": "string",
144556
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
144557
- },
144558
- "labels_url": {
144559
- "type": "string",
144560
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
144561
- },
144562
- "languages_url": {
144563
- "type": "string",
144564
- "format": "uri",
144565
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
144566
- },
144567
- "merges_url": {
144568
- "type": "string",
144569
- "format": "uri",
144570
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
144571
- },
144572
- "milestones_url": {
144573
- "type": "string",
144574
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
144575
- },
144576
- "notifications_url": {
144577
- "type": "string",
144578
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
144579
- },
144580
- "pulls_url": {
144581
- "type": "string",
144582
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
144583
- },
144584
- "releases_url": {
144585
- "type": "string",
144586
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
144587
- },
144588
- "ssh_url": {
144589
- "type": "string",
144590
- "example": "git@github.com:octocat/Hello-World.git"
144591
- },
144592
- "stargazers_url": {
144593
- "type": "string",
144594
- "format": "uri",
144595
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
144596
- },
144597
- "statuses_url": {
144598
- "type": "string",
144599
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
144600
- },
144601
- "subscribers_url": {
144602
- "type": "string",
144603
- "format": "uri",
144604
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
144605
- },
144606
- "subscription_url": {
144607
- "type": "string",
144608
- "format": "uri",
144609
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
144610
- },
144611
- "tags_url": {
144612
- "type": "string",
144613
- "format": "uri",
144614
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
144615
- },
144616
- "teams_url": {
144617
- "type": "string",
144618
- "format": "uri",
144619
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
144620
- },
144621
- "trees_url": {
144622
- "type": "string",
144623
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
144624
- },
144625
- "clone_url": {
144626
- "type": "string",
144627
- "example": "https://github.com/octocat/Hello-World.git"
144628
- },
144629
- "mirror_url": {
144630
- "type": "string",
144631
- "format": "uri",
144632
- "example": "git:git.example.com/octocat/Hello-World",
144633
- "nullable": true
144634
- },
144635
- "hooks_url": {
144636
- "type": "string",
144637
- "format": "uri",
144638
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
144639
- },
144640
- "svn_url": {
144641
- "type": "string",
144642
- "format": "uri",
144643
- "example": "https://svn.github.com/octocat/Hello-World"
144644
- },
144645
- "homepage": {
144646
- "type": "string",
144647
- "format": "uri",
144648
- "example": "https://github.com",
144649
- "nullable": true
144650
- },
144651
- "language": {
144652
- "type": "string",
144653
- "nullable": true
144654
- },
144655
- "forks_count": {
144656
- "type": "integer",
144657
- "example": 9
144658
- },
144659
- "stargazers_count": {
144660
- "type": "integer",
144661
- "example": 80
144662
- },
144663
- "watchers_count": {
144664
- "type": "integer",
144665
- "example": 80
144666
- },
144667
- "size": {
144668
- "description": "The size of the repository. Size is calculated hourly. When a repository is initially created, the size is 0.",
144669
- "type": "integer",
144670
- "example": 108
144671
- },
144672
- "default_branch": {
144673
- "description": "The default branch of the repository.",
144674
- "type": "string",
144675
- "example": "master"
144676
- },
144677
- "open_issues_count": {
144678
- "type": "integer",
144679
- "example": 0
144680
- },
144681
- "is_template": {
144682
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
144683
- "default": false,
144684
- "type": "boolean",
144685
- "example": true
144686
- },
144687
- "topics": {
144688
- "type": "array",
144689
- "items": {
144690
- "type": "string"
144691
- }
144692
- },
144693
- "has_issues": {
144694
- "description": "Whether issues are enabled.",
144695
- "default": true,
144696
- "type": "boolean",
144697
- "example": true
144698
- },
144699
- "has_projects": {
144700
- "description": "Whether projects are enabled.",
144701
- "default": true,
144702
- "type": "boolean",
144703
- "example": true
144704
- },
144705
- "has_wiki": {
144706
- "description": "Whether the wiki is enabled.",
144707
- "default": true,
144708
- "type": "boolean",
144709
- "example": true
144710
- },
144711
- "has_pages": {
144712
- "type": "boolean"
144713
- },
144714
- "has_downloads": {
144715
- "description": "Whether downloads are enabled.",
144716
- "default": true,
144717
- "type": "boolean",
144718
- "example": true
144719
- },
144720
- "archived": {
144721
- "description": "Whether the repository is archived.",
144722
- "default": false,
144723
- "type": "boolean"
144724
- },
144725
- "disabled": {
144726
- "type": "boolean",
144727
- "description": "Returns whether or not this repository disabled."
144728
- },
144729
- "visibility": {
144730
- "description": "The repository visibility: public, private, or internal.",
144731
- "default": "public",
144732
- "type": "string"
144733
- },
144734
- "pushed_at": {
144735
- "type": "string",
144736
- "format": "date-time",
144737
- "example": "2011-01-26T19:06:43Z",
144738
- "nullable": true
144739
- },
144740
- "created_at": {
144741
- "type": "string",
144742
- "format": "date-time",
144743
- "example": "2011-01-26T19:01:12Z",
144744
- "nullable": true
144745
- },
144746
- "updated_at": {
144747
- "type": "string",
144748
- "format": "date-time",
144749
- "example": "2011-01-26T19:14:43Z",
144750
- "nullable": true
144751
- },
144752
- "allow_rebase_merge": {
144753
- "description": "Whether to allow rebase merges for pull requests.",
144754
- "default": true,
144755
- "type": "boolean",
144756
- "example": true
144757
- },
144758
- "template_repository": {
144759
- "nullable": true,
144760
- "type": "object",
144761
- "properties": {
144762
- "id": {
144763
- "type": "integer"
144764
- },
144765
- "node_id": {
144766
- "type": "string"
144767
- },
144768
- "name": {
144769
- "type": "string"
144770
- },
144771
- "full_name": {
144772
- "type": "string"
144773
- },
144774
- "owner": {
144775
- "type": "object",
144776
- "properties": {
144777
- "login": {
144778
- "type": "string"
144779
- },
144780
- "id": {
144781
- "type": "integer"
144782
- },
144783
- "node_id": {
144784
- "type": "string"
144785
- },
144786
- "avatar_url": {
144787
- "type": "string"
144788
- },
144789
- "gravatar_id": {
144790
- "type": "string"
144791
- },
144792
- "url": {
144793
- "type": "string"
144794
- },
144795
- "html_url": {
144796
- "type": "string"
144797
- },
144798
- "followers_url": {
144799
- "type": "string"
144800
- },
144801
- "following_url": {
144802
- "type": "string"
144803
- },
144804
- "gists_url": {
144805
- "type": "string"
144806
- },
144807
- "starred_url": {
144808
- "type": "string"
144809
- },
144810
- "subscriptions_url": {
144811
- "type": "string"
144812
- },
144813
- "organizations_url": {
144814
- "type": "string"
144815
- },
144816
- "repos_url": {
144817
- "type": "string"
144818
- },
144819
- "events_url": {
144820
- "type": "string"
144821
- },
144822
- "received_events_url": {
144823
- "type": "string"
144824
- },
144825
- "type": {
144826
- "type": "string"
144827
- },
144828
- "site_admin": {
144829
- "type": "boolean"
144830
- }
144831
- }
144832
- },
144833
- "private": {
144834
- "type": "boolean"
144835
- },
144836
- "html_url": {
144837
- "type": "string"
144838
- },
144839
- "description": {
144840
- "type": "string"
144841
- },
144842
- "fork": {
144843
- "type": "boolean"
144844
- },
144845
- "url": {
144846
- "type": "string"
144847
- },
144848
- "archive_url": {
144849
- "type": "string"
144850
- },
144851
- "assignees_url": {
144852
- "type": "string"
144853
- },
144854
- "blobs_url": {
144855
- "type": "string"
144856
- },
144857
- "branches_url": {
144858
- "type": "string"
144859
- },
144860
- "collaborators_url": {
144861
- "type": "string"
144862
- },
144863
- "comments_url": {
144864
- "type": "string"
144865
- },
144866
- "commits_url": {
144867
- "type": "string"
144868
- },
144869
- "compare_url": {
144870
- "type": "string"
144871
- },
144872
- "contents_url": {
144873
- "type": "string"
144874
- },
144875
- "contributors_url": {
144876
- "type": "string"
144877
- },
144878
- "deployments_url": {
144879
- "type": "string"
144880
- },
144881
- "downloads_url": {
144882
- "type": "string"
144883
- },
144884
- "events_url": {
144885
- "type": "string"
144886
- },
144887
- "forks_url": {
144888
- "type": "string"
144889
- },
144890
- "git_commits_url": {
144891
- "type": "string"
144892
- },
144893
- "git_refs_url": {
144894
- "type": "string"
144895
- },
144896
- "git_tags_url": {
144897
- "type": "string"
144898
- },
144899
- "git_url": {
144900
- "type": "string"
144901
- },
144902
- "issue_comment_url": {
144903
- "type": "string"
144904
- },
144905
- "issue_events_url": {
144906
- "type": "string"
144907
- },
144908
- "issues_url": {
144909
- "type": "string"
144910
- },
144911
- "keys_url": {
144912
- "type": "string"
144913
- },
144914
- "labels_url": {
144915
- "type": "string"
144916
- },
144917
- "languages_url": {
144918
- "type": "string"
144919
- },
144920
- "merges_url": {
144921
- "type": "string"
144922
- },
144923
- "milestones_url": {
144924
- "type": "string"
144925
- },
144926
- "notifications_url": {
144927
- "type": "string"
144928
- },
144929
- "pulls_url": {
144930
- "type": "string"
144931
- },
144932
- "releases_url": {
144933
- "type": "string"
144934
- },
144935
- "ssh_url": {
144936
- "type": "string"
144937
- },
144938
- "stargazers_url": {
144939
- "type": "string"
144940
- },
144941
- "statuses_url": {
144942
- "type": "string"
144943
- },
144944
- "subscribers_url": {
144945
- "type": "string"
144946
- },
144947
- "subscription_url": {
144948
- "type": "string"
144949
- },
144950
- "tags_url": {
144951
- "type": "string"
144952
- },
144953
- "teams_url": {
144954
- "type": "string"
144955
- },
144956
- "trees_url": {
144957
- "type": "string"
144958
- },
144959
- "clone_url": {
144960
- "type": "string"
144961
- },
144962
- "mirror_url": {
144963
- "type": "string"
144964
- },
144965
- "hooks_url": {
144966
- "type": "string"
144967
- },
144968
- "svn_url": {
144969
- "type": "string"
144970
- },
144971
- "homepage": {
144972
- "type": "string"
144973
- },
144974
- "language": {
144975
- "type": "string"
144976
- },
144977
- "forks_count": {
144978
- "type": "integer"
144979
- },
144980
- "stargazers_count": {
144981
- "type": "integer"
144982
- },
144983
- "watchers_count": {
144984
- "type": "integer"
144985
- },
144986
- "size": {
144987
- "type": "integer"
144988
- },
144989
- "default_branch": {
144990
- "type": "string"
144991
- },
144992
- "open_issues_count": {
144993
- "type": "integer"
144994
- },
144995
- "is_template": {
144996
- "type": "boolean"
144997
- },
144998
- "topics": {
144999
- "type": "array",
145000
- "items": {
145001
- "type": "string"
145002
- }
145003
- },
145004
- "has_issues": {
145005
- "type": "boolean"
145006
- },
145007
- "has_projects": {
145008
- "type": "boolean"
145009
- },
145010
- "has_wiki": {
145011
- "type": "boolean"
145012
- },
145013
- "has_pages": {
145014
- "type": "boolean"
145015
- },
145016
- "has_downloads": {
145017
- "type": "boolean"
145018
- },
145019
- "archived": {
145020
- "type": "boolean"
145021
- },
145022
- "disabled": {
145023
- "type": "boolean"
145024
- },
145025
- "visibility": {
145026
- "type": "string"
145027
- },
145028
- "pushed_at": {
145029
- "type": "string"
145030
- },
145031
- "created_at": {
145032
- "type": "string"
145033
- },
145034
- "updated_at": {
145035
- "type": "string"
145036
- },
145037
- "permissions": {
145038
- "type": "object",
145039
- "properties": {
145040
- "admin": {
145041
- "type": "boolean"
145042
- },
145043
- "maintain": {
145044
- "type": "boolean"
145045
- },
145046
- "push": {
145047
- "type": "boolean"
145048
- },
145049
- "triage": {
145050
- "type": "boolean"
145051
- },
145052
- "pull": {
145053
- "type": "boolean"
145054
- }
145055
- }
145056
- },
145057
- "allow_rebase_merge": {
145058
- "type": "boolean"
145059
- },
145060
- "temp_clone_token": {
145061
- "type": "string"
145062
- },
145063
- "allow_squash_merge": {
145064
- "type": "boolean"
145065
- },
145066
- "allow_auto_merge": {
145067
- "type": "boolean"
145068
- },
145069
- "delete_branch_on_merge": {
145070
- "type": "boolean"
145071
- },
145072
- "allow_update_branch": {
145073
- "type": "boolean"
145074
- },
145075
- "allow_merge_commit": {
145076
- "type": "boolean"
145077
- },
145078
- "subscribers_count": {
145079
- "type": "integer"
145080
- },
145081
- "network_count": {
145082
- "type": "integer"
145083
- }
145084
- }
145085
- },
145086
- "temp_clone_token": {
145087
- "type": "string"
145088
- },
145089
- "allow_squash_merge": {
145090
- "description": "Whether to allow squash merges for pull requests.",
145091
- "default": true,
145092
- "type": "boolean",
145093
- "example": true
145094
- },
145095
- "allow_auto_merge": {
145096
- "description": "Whether to allow Auto-merge to be used on pull requests.",
145097
- "default": false,
145098
- "type": "boolean",
145099
- "example": false
145100
- },
145101
- "delete_branch_on_merge": {
145102
- "description": "Whether to delete head branches when pull requests are merged",
145103
- "default": false,
145104
- "type": "boolean",
145105
- "example": false
145106
- },
145107
- "allow_update_branch": {
145108
- "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.",
145109
- "default": false,
145110
- "type": "boolean",
145111
- "example": false
145112
- },
145113
- "allow_merge_commit": {
145114
- "description": "Whether to allow merge commits for pull requests.",
145115
- "default": true,
145116
- "type": "boolean",
145117
- "example": true
145118
- },
145119
- "allow_forking": {
145120
- "description": "Whether to allow forking this repo",
145121
- "type": "boolean"
145122
- },
145123
- "web_commit_signoff_required": {
145124
- "description": "Whether to require contributors to sign off on web-based commits",
145125
- "default": false,
145126
- "type": "boolean"
145127
- },
145128
- "subscribers_count": {
145129
- "type": "integer"
145130
- },
145131
- "network_count": {
145132
- "type": "integer"
145133
- },
145134
- "open_issues": {
145135
- "type": "integer"
145136
- },
145137
- "watchers": {
145138
- "type": "integer"
145139
- },
145140
- "master_branch": {
145141
- "type": "string"
145142
- },
145143
- "starred_at": {
145144
- "type": "string",
145145
- "example": "\"2020-07-09T00:17:42Z\""
145146
- },
145147
- "anonymous_access_enabled": {
145148
- "type": "boolean",
145149
- "description": "Whether anonymous git access is enabled for this repository"
145150
- }
145151
- },
145152
- "required": [
145153
- "archive_url",
145154
- "assignees_url",
145155
- "blobs_url",
145156
- "branches_url",
145157
- "collaborators_url",
145158
- "comments_url",
145159
- "commits_url",
145160
- "compare_url",
145161
- "contents_url",
145162
- "contributors_url",
145163
- "deployments_url",
145164
- "description",
145165
- "downloads_url",
145166
- "events_url",
145167
- "fork",
145168
- "forks_url",
145169
- "full_name",
145170
- "git_commits_url",
145171
- "git_refs_url",
145172
- "git_tags_url",
145173
- "hooks_url",
145174
- "html_url",
145175
- "id",
145176
- "node_id",
145177
- "issue_comment_url",
145178
- "issue_events_url",
145179
- "issues_url",
145180
- "keys_url",
145181
- "labels_url",
145182
- "languages_url",
145183
- "merges_url",
145184
- "milestones_url",
145185
- "name",
145186
- "notifications_url",
145187
- "owner",
145188
- "private",
145189
- "pulls_url",
145190
- "releases_url",
145191
- "stargazers_url",
145192
- "statuses_url",
145193
- "subscribers_url",
145194
- "subscription_url",
145195
- "tags_url",
145196
- "teams_url",
145197
- "trees_url",
145198
- "url",
145199
- "clone_url",
145200
- "default_branch",
145201
- "forks",
145202
- "forks_count",
145203
- "git_url",
145204
- "has_downloads",
145205
- "has_issues",
145206
- "has_projects",
145207
- "has_wiki",
145208
- "has_pages",
145209
- "homepage",
145210
- "language",
145211
- "archived",
145212
- "disabled",
145213
- "mirror_url",
145214
- "open_issues",
145215
- "open_issues_count",
145216
- "license",
145217
- "pushed_at",
145218
- "size",
145219
- "ssh_url",
145220
- "stargazers_count",
145221
- "svn_url",
145222
- "watchers",
145223
- "watchers_count",
145224
- "created_at",
145225
- "updated_at"
145226
- ]
145227
- },
145228
- "sha": {
145229
- "type": "string"
145230
- },
145231
- "user": {
145232
- "title": "Simple User",
145233
- "description": "A GitHub user.",
145234
- "type": "object",
145235
- "properties": {
145236
- "name": {
145237
- "nullable": true,
145238
- "type": "string"
145239
- },
145240
- "email": {
145241
- "nullable": true,
145242
- "type": "string"
145243
- },
145244
- "login": {
145245
- "type": "string",
145246
- "example": "octocat"
145247
- },
145248
- "id": {
145249
- "type": "integer",
145250
- "example": 1
145251
- },
145252
- "node_id": {
145253
- "type": "string",
145254
- "example": "MDQ6VXNlcjE="
145255
- },
145256
- "avatar_url": {
145257
- "type": "string",
145258
- "format": "uri",
145259
- "example": "https://github.com/images/error/octocat_happy.gif"
145260
- },
145261
- "gravatar_id": {
145262
- "type": "string",
145263
- "example": "41d064eb2195891e12d0413f63227ea7",
145264
- "nullable": true
145265
- },
145266
- "url": {
145267
- "type": "string",
145268
- "format": "uri",
145269
- "example": "https://api.github.com/users/octocat"
145270
- },
145271
- "html_url": {
145272
- "type": "string",
145273
- "format": "uri",
145274
- "example": "https://github.com/octocat"
145275
- },
145276
- "followers_url": {
145277
- "type": "string",
145278
- "format": "uri",
145279
- "example": "https://api.github.com/users/octocat/followers"
145280
- },
145281
- "following_url": {
145282
- "type": "string",
145283
- "example": "https://api.github.com/users/octocat/following{/other_user}"
145284
- },
145285
- "gists_url": {
145286
- "type": "string",
145287
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
145288
- },
145289
- "starred_url": {
145290
- "type": "string",
145291
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
145292
- },
145293
- "subscriptions_url": {
145294
- "type": "string",
145295
- "format": "uri",
145296
- "example": "https://api.github.com/users/octocat/subscriptions"
145297
- },
145298
- "organizations_url": {
145299
- "type": "string",
145300
- "format": "uri",
145301
- "example": "https://api.github.com/users/octocat/orgs"
145302
- },
145303
- "repos_url": {
145304
- "type": "string",
145305
- "format": "uri",
145306
- "example": "https://api.github.com/users/octocat/repos"
145307
- },
145308
- "events_url": {
145309
- "type": "string",
145310
- "example": "https://api.github.com/users/octocat/events{/privacy}"
145311
- },
145312
- "received_events_url": {
145313
- "type": "string",
145314
- "format": "uri",
145315
- "example": "https://api.github.com/users/octocat/received_events"
145316
- },
145317
- "type": {
145318
- "type": "string",
145319
- "example": "User"
145320
- },
145321
- "site_admin": {
145322
- "type": "boolean"
145323
- },
145324
- "starred_at": {
145325
- "type": "string",
145326
- "example": "\"2020-07-09T00:17:55Z\""
145327
- }
145328
- },
145329
- "required": [
145330
- "avatar_url",
145331
- "events_url",
145332
- "followers_url",
145333
- "following_url",
145334
- "gists_url",
145335
- "gravatar_id",
145336
- "html_url",
145337
- "id",
145338
- "node_id",
145339
- "login",
145340
- "organizations_url",
145341
- "received_events_url",
145342
- "repos_url",
145343
- "site_admin",
145344
- "starred_url",
145345
- "subscriptions_url",
145346
- "type",
145347
- "url"
145348
- ],
145349
- "nullable": true
145350
- }
145351
- },
145352
- "required": [
145353
- "label",
145354
- "ref",
145355
- "repo",
145356
- "sha",
145357
- "user"
145358
- ]
145359
- },
145360
- "_links": {
145361
- "type": "object",
145362
- "properties": {
145363
- "comments": {
145364
- "title": "Link",
145365
- "description": "Hypermedia Link",
145366
- "type": "object",
145367
- "properties": {
145368
- "href": {
145369
- "type": "string"
145370
- }
145371
- },
145372
- "required": [
145373
- "href"
145374
- ]
145375
- },
145376
- "commits": {
145377
- "title": "Link",
145378
- "description": "Hypermedia Link",
145379
- "type": "object",
145380
- "properties": {
145381
- "href": {
145382
- "type": "string"
145383
- }
145384
- },
145385
- "required": [
145386
- "href"
145387
- ]
145388
- },
145389
- "statuses": {
145390
- "title": "Link",
145391
- "description": "Hypermedia Link",
145392
- "type": "object",
145393
- "properties": {
145394
- "href": {
145395
- "type": "string"
145396
- }
145397
- },
145398
- "required": [
145399
- "href"
145400
- ]
145401
- },
145402
- "html": {
145403
- "title": "Link",
145404
- "description": "Hypermedia Link",
145405
- "type": "object",
145406
- "properties": {
145407
- "href": {
145408
- "type": "string"
145409
- }
145410
- },
145411
- "required": [
145412
- "href"
145413
- ]
145414
- },
145415
- "issue": {
145416
- "title": "Link",
145417
- "description": "Hypermedia Link",
145418
- "type": "object",
145419
- "properties": {
145420
- "href": {
145421
- "type": "string"
145422
- }
145423
- },
145424
- "required": [
145425
- "href"
145426
- ]
145427
- },
145428
- "review_comments": {
145429
- "title": "Link",
145430
- "description": "Hypermedia Link",
145431
- "type": "object",
145432
- "properties": {
145433
- "href": {
145434
- "type": "string"
145435
- }
145436
- },
145437
- "required": [
145438
- "href"
145439
- ]
145440
- },
145441
- "review_comment": {
145442
- "title": "Link",
145443
- "description": "Hypermedia Link",
145444
- "type": "object",
145445
- "properties": {
145446
- "href": {
145447
- "type": "string"
145448
- }
145449
- },
145450
- "required": [
145451
- "href"
145452
- ]
145453
- },
145454
- "self": {
145455
- "title": "Link",
145456
- "description": "Hypermedia Link",
145457
- "type": "object",
145458
- "properties": {
145459
- "href": {
145460
- "type": "string"
145461
- }
145462
- },
145463
- "required": [
145464
- "href"
145465
- ]
145466
- }
145467
- },
145468
- "required": [
145469
- "comments",
145470
- "commits",
145471
- "statuses",
145472
- "html",
145473
- "issue",
145474
- "review_comments",
145475
- "review_comment",
145476
- "self"
145477
- ]
145478
- },
145479
- "author_association": {
145480
- "title": "author_association",
145481
- "type": "string",
145482
- "example": "OWNER",
145483
- "description": "How the author is associated with the repository.",
145484
- "enum": [
145485
- "COLLABORATOR",
145486
- "CONTRIBUTOR",
145487
- "FIRST_TIMER",
145488
- "FIRST_TIME_CONTRIBUTOR",
145489
- "MANNEQUIN",
145490
- "MEMBER",
145491
- "NONE",
145492
- "OWNER"
145493
- ]
145494
- },
145495
- "auto_merge": {
145496
- "title": "Auto merge",
145497
- "description": "The status of auto merging a pull request.",
145498
- "type": "object",
145499
- "properties": {
145500
- "enabled_by": {
145501
- "title": "Simple User",
145502
- "description": "A GitHub user.",
145503
- "type": "object",
145504
- "properties": {
145505
- "name": {
145506
- "nullable": true,
145507
- "type": "string"
145508
- },
145509
- "email": {
145510
- "nullable": true,
145511
- "type": "string"
145512
- },
145513
- "login": {
145514
- "type": "string",
145515
- "example": "octocat"
145516
- },
145517
- "id": {
145518
- "type": "integer",
145519
- "example": 1
145520
- },
145521
- "node_id": {
145522
- "type": "string",
145523
- "example": "MDQ6VXNlcjE="
145524
- },
145525
- "avatar_url": {
145526
- "type": "string",
145527
- "format": "uri",
145528
- "example": "https://github.com/images/error/octocat_happy.gif"
145529
- },
145530
- "gravatar_id": {
145531
- "type": "string",
145532
- "example": "41d064eb2195891e12d0413f63227ea7",
145533
- "nullable": true
145534
- },
145535
- "url": {
145536
- "type": "string",
145537
- "format": "uri",
145538
- "example": "https://api.github.com/users/octocat"
145539
- },
145540
- "html_url": {
145541
- "type": "string",
145542
- "format": "uri",
145543
- "example": "https://github.com/octocat"
145544
- },
145545
- "followers_url": {
145546
- "type": "string",
145547
- "format": "uri",
145548
- "example": "https://api.github.com/users/octocat/followers"
145549
- },
145550
- "following_url": {
145551
- "type": "string",
145552
- "example": "https://api.github.com/users/octocat/following{/other_user}"
145553
- },
145554
- "gists_url": {
145555
- "type": "string",
145556
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
145557
- },
145558
- "starred_url": {
145559
- "type": "string",
145560
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
145561
- },
145562
- "subscriptions_url": {
145563
- "type": "string",
145564
- "format": "uri",
145565
- "example": "https://api.github.com/users/octocat/subscriptions"
145566
- },
145567
- "organizations_url": {
145568
- "type": "string",
145569
- "format": "uri",
145570
- "example": "https://api.github.com/users/octocat/orgs"
145571
- },
145572
- "repos_url": {
145573
- "type": "string",
145574
- "format": "uri",
145575
- "example": "https://api.github.com/users/octocat/repos"
145576
- },
145577
- "events_url": {
145578
- "type": "string",
145579
- "example": "https://api.github.com/users/octocat/events{/privacy}"
145580
- },
145581
- "received_events_url": {
145582
- "type": "string",
145583
- "format": "uri",
145584
- "example": "https://api.github.com/users/octocat/received_events"
145585
- },
145586
- "type": {
145587
- "type": "string",
145588
- "example": "User"
145589
- },
145590
- "site_admin": {
145591
- "type": "boolean"
145592
- },
145593
- "starred_at": {
145594
- "type": "string",
145595
- "example": "\"2020-07-09T00:17:55Z\""
145596
- }
145597
- },
145598
- "required": [
145599
- "avatar_url",
145600
- "events_url",
145601
- "followers_url",
145602
- "following_url",
145603
- "gists_url",
145604
- "gravatar_id",
145605
- "html_url",
145606
- "id",
145607
- "node_id",
145608
- "login",
145609
- "organizations_url",
145610
- "received_events_url",
145611
- "repos_url",
145612
- "site_admin",
145613
- "starred_url",
145614
- "subscriptions_url",
145615
- "type",
145616
- "url"
145617
- ]
145618
- },
145619
- "merge_method": {
145620
- "type": "string",
145621
- "description": "The merge method to use.",
145622
- "enum": [
145623
- "merge",
145624
- "squash",
145625
- "rebase"
145626
- ]
145627
- },
145628
- "commit_title": {
145629
- "type": "string",
145630
- "description": "Title for the merge commit message."
145631
- },
145632
- "commit_message": {
145633
- "type": "string",
145634
- "description": "Commit message for the merge commit."
145635
- }
145636
- },
145637
- "required": [
145638
- "enabled_by",
145639
- "merge_method",
145640
- "commit_title",
145641
- "commit_message"
145642
- ],
145643
- "nullable": true
145644
- },
145645
- "draft": {
145646
- "description": "Indicates whether or not the pull request is a draft.",
145647
- "example": false,
145648
- "type": "boolean"
145649
- }
145650
- },
145651
- "required": [
145652
- "_links",
145653
- "assignee",
145654
- "labels",
145655
- "base",
145656
- "body",
145657
- "closed_at",
145658
- "comments_url",
145659
- "commits_url",
145660
- "created_at",
145661
- "diff_url",
145662
- "head",
145663
- "html_url",
145664
- "id",
145665
- "node_id",
145666
- "issue_url",
145667
- "merge_commit_sha",
145668
- "merged_at",
145669
- "milestone",
145670
- "number",
145671
- "patch_url",
145672
- "review_comment_url",
145673
- "review_comments_url",
145674
- "statuses_url",
145675
- "state",
145676
- "locked",
145677
- "title",
145678
- "updated_at",
145679
- "url",
145680
- "user",
145681
- "author_association",
145682
- "auto_merge"
145683
- ]
145684
- },
145685
- "examples": {
145686
- "default": {
145687
- "value": {
145688
- "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347",
145689
- "id": 1,
145690
- "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==",
145691
- "html_url": "https://github.com/octocat/Hello-World/pull/1347",
145692
- "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff",
145693
- "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch",
145694
- "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
145695
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits",
145696
- "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments",
145697
- "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}",
145698
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments",
145699
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
145700
- "number": 1347,
145701
- "state": "open",
145702
- "locked": true,
145703
- "title": "Amazing new feature",
145704
- "user": {
145705
- "login": "octocat",
145706
- "id": 1,
145707
- "node_id": "MDQ6VXNlcjE=",
145708
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145709
- "gravatar_id": "",
145710
- "url": "https://api.github.com/users/octocat",
145711
- "html_url": "https://github.com/octocat",
145712
- "followers_url": "https://api.github.com/users/octocat/followers",
145713
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145714
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145715
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145716
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145717
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145718
- "repos_url": "https://api.github.com/users/octocat/repos",
145719
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145720
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145721
- "type": "User",
145722
- "site_admin": false
145723
- },
145724
- "body": "Please pull these awesome changes in!",
145725
- "labels": [
145726
- {
145727
- "id": 208045946,
145728
- "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
145729
- "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug",
145730
- "name": "bug",
145731
- "description": "Something isn't working",
145732
- "color": "f29513",
145733
- "default": true
145734
- }
145735
- ],
145736
- "milestone": {
145737
- "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1",
145738
- "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0",
145739
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels",
145740
- "id": 1002604,
145741
- "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==",
145742
- "number": 1,
145743
- "state": "open",
145744
- "title": "v1.0",
145745
- "description": "Tracking milestone for version 1.0",
145746
- "creator": {
145747
- "login": "octocat",
145748
- "id": 1,
145749
- "node_id": "MDQ6VXNlcjE=",
145750
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145751
- "gravatar_id": "",
145752
- "url": "https://api.github.com/users/octocat",
145753
- "html_url": "https://github.com/octocat",
145754
- "followers_url": "https://api.github.com/users/octocat/followers",
145755
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145756
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145757
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145758
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145759
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145760
- "repos_url": "https://api.github.com/users/octocat/repos",
145761
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145762
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145763
- "type": "User",
145764
- "site_admin": false
145765
- },
145766
- "open_issues": 4,
145767
- "closed_issues": 8,
145768
- "created_at": "2011-04-10T20:09:31Z",
145769
- "updated_at": "2014-03-03T18:58:10Z",
145770
- "closed_at": "2013-02-12T13:22:01Z",
145771
- "due_on": "2012-10-09T23:39:01Z"
145772
- },
145773
- "active_lock_reason": "too heated",
145774
- "created_at": "2011-01-26T19:01:12Z",
145775
- "updated_at": "2011-01-26T19:01:12Z",
145776
- "closed_at": "2011-01-26T19:01:12Z",
145777
- "merged_at": "2011-01-26T19:01:12Z",
145778
- "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
145779
- "assignee": {
145780
- "login": "octocat",
145781
- "id": 1,
145782
- "node_id": "MDQ6VXNlcjE=",
145783
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145784
- "gravatar_id": "",
145785
- "url": "https://api.github.com/users/octocat",
145786
- "html_url": "https://github.com/octocat",
145787
- "followers_url": "https://api.github.com/users/octocat/followers",
145788
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145789
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145790
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145791
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145792
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145793
- "repos_url": "https://api.github.com/users/octocat/repos",
145794
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145795
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145796
- "type": "User",
145797
- "site_admin": false
145798
- },
145799
- "assignees": [
145800
- {
145801
- "login": "octocat",
145802
- "id": 1,
145803
- "node_id": "MDQ6VXNlcjE=",
145804
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145805
- "gravatar_id": "",
145806
- "url": "https://api.github.com/users/octocat",
145807
- "html_url": "https://github.com/octocat",
145808
- "followers_url": "https://api.github.com/users/octocat/followers",
145809
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145810
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145811
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145812
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145813
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145814
- "repos_url": "https://api.github.com/users/octocat/repos",
145815
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145816
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145817
- "type": "User",
145818
- "site_admin": false
145819
- },
145820
- {
145821
- "login": "hubot",
145822
- "id": 1,
145823
- "node_id": "MDQ6VXNlcjE=",
145824
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
145825
- "gravatar_id": "",
145826
- "url": "https://api.github.com/users/hubot",
145827
- "html_url": "https://github.com/hubot",
145828
- "followers_url": "https://api.github.com/users/hubot/followers",
145829
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
145830
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
145831
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
145832
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
145833
- "organizations_url": "https://api.github.com/users/hubot/orgs",
145834
- "repos_url": "https://api.github.com/users/hubot/repos",
145835
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
145836
- "received_events_url": "https://api.github.com/users/hubot/received_events",
145837
- "type": "User",
145838
- "site_admin": true
145839
- }
145840
- ],
145841
- "requested_reviewers": [
145842
- {
145843
- "login": "octocat",
145844
- "id": 1,
145845
- "node_id": "MDQ6VXNlcjE=",
145846
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145847
- "gravatar_id": "",
145848
- "url": "https://api.github.com/users/octocat",
145849
- "html_url": "https://github.com/octocat",
145850
- "followers_url": "https://api.github.com/users/octocat/followers",
145851
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145852
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145853
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145854
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145855
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145856
- "repos_url": "https://api.github.com/users/octocat/repos",
145857
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145858
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145859
- "type": "User",
145860
- "site_admin": false
145861
- },
145862
- {
145863
- "login": "hubot",
145864
- "id": 1,
145865
- "node_id": "MDQ6VXNlcjE=",
145866
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
145867
- "gravatar_id": "",
145868
- "url": "https://api.github.com/users/hubot",
145869
- "html_url": "https://github.com/hubot",
145870
- "followers_url": "https://api.github.com/users/hubot/followers",
145871
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
145872
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
145873
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
145874
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
145875
- "organizations_url": "https://api.github.com/users/hubot/orgs",
145876
- "repos_url": "https://api.github.com/users/hubot/repos",
145877
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
145878
- "received_events_url": "https://api.github.com/users/hubot/received_events",
145879
- "type": "User",
145880
- "site_admin": true
145881
- },
145882
- {
145883
- "login": "other_user",
145884
- "id": 1,
145885
- "node_id": "MDQ6VXNlcjE=",
145886
- "avatar_url": "https://github.com/images/error/other_user_happy.gif",
145887
- "gravatar_id": "",
145888
- "url": "https://api.github.com/users/other_user",
145889
- "html_url": "https://github.com/other_user",
145890
- "followers_url": "https://api.github.com/users/other_user/followers",
145891
- "following_url": "https://api.github.com/users/other_user/following{/other_user}",
145892
- "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
145893
- "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
145894
- "subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
145895
- "organizations_url": "https://api.github.com/users/other_user/orgs",
145896
- "repos_url": "https://api.github.com/users/other_user/repos",
145897
- "events_url": "https://api.github.com/users/other_user/events{/privacy}",
145898
- "received_events_url": "https://api.github.com/users/other_user/received_events",
145899
- "type": "User",
145900
- "site_admin": false
145901
- }
145902
- ],
145903
- "requested_teams": [
145904
- {
145905
- "id": 1,
145906
- "node_id": "MDQ6VGVhbTE=",
145907
- "url": "https://api.github.com/teams/1",
145908
- "html_url": "https://github.com/orgs/github/teams/justice-league",
145909
- "name": "Justice League",
145910
- "slug": "justice-league",
145911
- "description": "A great team.",
145912
- "privacy": "closed",
145913
- "notification_setting": "notifications_enabled",
145914
- "permission": "admin",
145915
- "members_url": "https://api.github.com/teams/1/members{/member}",
145916
- "repositories_url": "https://api.github.com/teams/1/repos",
145917
- "parent": null
145918
- }
145919
- ],
145920
- "head": {
145921
- "label": "octocat:new-topic",
145922
- "ref": "new-topic",
145923
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
145924
- "user": {
145925
- "login": "octocat",
145926
- "id": 1,
145927
- "node_id": "MDQ6VXNlcjE=",
145928
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145929
- "gravatar_id": "",
145930
- "url": "https://api.github.com/users/octocat",
145931
- "html_url": "https://github.com/octocat",
145932
- "followers_url": "https://api.github.com/users/octocat/followers",
145933
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145934
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145935
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145936
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145937
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145938
- "repos_url": "https://api.github.com/users/octocat/repos",
145939
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145940
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145941
- "type": "User",
145942
- "site_admin": false
145943
- },
145944
- "repo": {
145945
- "id": 1296269,
145946
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
145947
- "name": "Hello-World",
145948
- "full_name": "octocat/Hello-World",
145949
- "owner": {
145950
- "login": "octocat",
145951
- "id": 1,
145952
- "node_id": "MDQ6VXNlcjE=",
145953
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
145954
- "gravatar_id": "",
145955
- "url": "https://api.github.com/users/octocat",
145956
- "html_url": "https://github.com/octocat",
145957
- "followers_url": "https://api.github.com/users/octocat/followers",
145958
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
145959
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
145960
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
145961
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
145962
- "organizations_url": "https://api.github.com/users/octocat/orgs",
145963
- "repos_url": "https://api.github.com/users/octocat/repos",
145964
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
145965
- "received_events_url": "https://api.github.com/users/octocat/received_events",
145966
- "type": "User",
145967
- "site_admin": false
145968
- },
145969
- "private": false,
145970
- "html_url": "https://github.com/octocat/Hello-World",
145971
- "description": "This your first repo!",
145972
- "fork": false,
145973
- "url": "https://api.github.com/repos/octocat/Hello-World",
145974
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
145975
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
145976
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
145977
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
145978
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
145979
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
145980
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
145981
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
145982
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
145983
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
145984
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
145985
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
145986
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
145987
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
145988
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
145989
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
145990
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
145991
- "git_url": "git:github.com/octocat/Hello-World.git",
145992
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
145993
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
145994
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
145995
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
145996
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
145997
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
145998
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
145999
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
146000
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
146001
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
146002
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
146003
- "ssh_url": "git@github.com:octocat/Hello-World.git",
146004
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
146005
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
146006
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
146007
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
146008
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
146009
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
146010
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
146011
- "clone_url": "https://github.com/octocat/Hello-World.git",
146012
- "mirror_url": "git:git.example.com/octocat/Hello-World",
146013
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
146014
- "svn_url": "https://svn.github.com/octocat/Hello-World",
146015
- "homepage": "https://github.com",
146016
- "language": null,
146017
- "forks_count": 9,
146018
- "stargazers_count": 80,
146019
- "watchers_count": 80,
146020
- "size": 108,
146021
- "default_branch": "master",
146022
- "open_issues_count": 0,
146023
- "is_template": true,
146024
- "topics": [
146025
- "octocat",
146026
- "atom",
146027
- "electron",
146028
- "api"
146029
- ],
146030
- "has_issues": true,
146031
- "has_projects": true,
146032
- "has_wiki": true,
146033
- "has_pages": false,
146034
- "has_downloads": true,
146035
- "archived": false,
146036
- "disabled": false,
146037
- "visibility": "public",
146038
- "pushed_at": "2011-01-26T19:06:43Z",
146039
- "created_at": "2011-01-26T19:01:12Z",
146040
- "updated_at": "2011-01-26T19:14:43Z",
146041
- "permissions": {
146042
- "admin": false,
146043
- "push": false,
146044
- "pull": true
146045
- },
146046
- "allow_rebase_merge": true,
146047
- "template_repository": null,
146048
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
146049
- "allow_squash_merge": true,
146050
- "allow_auto_merge": false,
146051
- "delete_branch_on_merge": true,
146052
- "allow_merge_commit": true,
146053
- "subscribers_count": 42,
146054
- "network_count": 0,
146055
- "license": {
146056
- "key": "mit",
146057
- "name": "MIT License",
146058
- "url": "https://api.github.com/licenses/mit",
146059
- "spdx_id": "MIT",
146060
- "node_id": "MDc6TGljZW5zZW1pdA==",
146061
- "html_url": "https://github.com/licenses/mit"
146062
- },
146063
- "forks": 1,
146064
- "open_issues": 1,
146065
- "watchers": 1
146066
- }
146067
- },
146068
- "base": {
146069
- "label": "octocat:master",
146070
- "ref": "master",
146071
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
146072
- "user": {
146073
- "login": "octocat",
146074
- "id": 1,
146075
- "node_id": "MDQ6VXNlcjE=",
146076
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
146077
- "gravatar_id": "",
146078
- "url": "https://api.github.com/users/octocat",
146079
- "html_url": "https://github.com/octocat",
146080
- "followers_url": "https://api.github.com/users/octocat/followers",
146081
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
146082
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
146083
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
146084
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
146085
- "organizations_url": "https://api.github.com/users/octocat/orgs",
146086
- "repos_url": "https://api.github.com/users/octocat/repos",
146087
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
146088
- "received_events_url": "https://api.github.com/users/octocat/received_events",
146089
- "type": "User",
146090
- "site_admin": false
146091
- },
146092
- "repo": {
146093
- "id": 1296269,
146094
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
146095
- "name": "Hello-World",
146096
- "full_name": "octocat/Hello-World",
146097
- "owner": {
146098
- "login": "octocat",
146099
- "id": 1,
146100
- "node_id": "MDQ6VXNlcjE=",
146101
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
146102
- "gravatar_id": "",
146103
- "url": "https://api.github.com/users/octocat",
146104
- "html_url": "https://github.com/octocat",
146105
- "followers_url": "https://api.github.com/users/octocat/followers",
146106
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
146107
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
146108
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
146109
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
146110
- "organizations_url": "https://api.github.com/users/octocat/orgs",
146111
- "repos_url": "https://api.github.com/users/octocat/repos",
146112
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
146113
- "received_events_url": "https://api.github.com/users/octocat/received_events",
146114
- "type": "User",
146115
- "site_admin": false
146116
- },
146117
- "private": false,
146118
- "html_url": "https://github.com/octocat/Hello-World",
146119
- "description": "This your first repo!",
146120
- "fork": false,
146121
- "url": "https://api.github.com/repos/octocat/Hello-World",
146122
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
146123
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
146124
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
146125
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
146126
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
146127
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
146128
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
146129
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
146130
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
146131
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
146132
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
146133
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
146134
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
146135
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
146136
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
146137
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
146138
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
146139
- "git_url": "git:github.com/octocat/Hello-World.git",
146140
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
146141
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
146142
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
146143
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
146144
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
146145
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
146146
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
146147
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
146148
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
146149
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
146150
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
146151
- "ssh_url": "git@github.com:octocat/Hello-World.git",
146152
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
146153
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
146154
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
146155
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
146156
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
146157
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
146158
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
146159
- "clone_url": "https://github.com/octocat/Hello-World.git",
146160
- "mirror_url": "git:git.example.com/octocat/Hello-World",
146161
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
146162
- "svn_url": "https://svn.github.com/octocat/Hello-World",
146163
- "homepage": "https://github.com",
146164
- "language": null,
146165
- "forks_count": 9,
146166
- "stargazers_count": 80,
146167
- "watchers_count": 80,
146168
- "size": 108,
146169
- "default_branch": "master",
146170
- "open_issues_count": 0,
146171
- "is_template": true,
146172
- "topics": [
146173
- "octocat",
146174
- "atom",
146175
- "electron",
146176
- "api"
146177
- ],
146178
- "has_issues": true,
146179
- "has_projects": true,
146180
- "has_wiki": true,
146181
- "has_pages": false,
146182
- "has_downloads": true,
146183
- "archived": false,
146184
- "disabled": false,
146185
- "visibility": "public",
146186
- "pushed_at": "2011-01-26T19:06:43Z",
146187
- "created_at": "2011-01-26T19:01:12Z",
146188
- "updated_at": "2011-01-26T19:14:43Z",
146189
- "permissions": {
146190
- "admin": false,
146191
- "push": false,
146192
- "pull": true
146193
- },
146194
- "allow_rebase_merge": true,
146195
- "template_repository": null,
146196
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
146197
- "allow_squash_merge": true,
146198
- "allow_auto_merge": false,
146199
- "delete_branch_on_merge": true,
146200
- "allow_merge_commit": true,
146201
- "subscribers_count": 42,
146202
- "network_count": 0,
146203
- "license": {
146204
- "key": "mit",
146205
- "name": "MIT License",
146206
- "url": "https://api.github.com/licenses/mit",
146207
- "spdx_id": "MIT",
146208
- "node_id": "MDc6TGljZW5zZW1pdA==",
146209
- "html_url": "https://api.github.com/licenses/mit"
146210
- },
146211
- "forks": 1,
146212
- "open_issues": 1,
146213
- "watchers": 1
146214
- }
146215
- },
146216
- "_links": {
146217
- "self": {
146218
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
146219
- },
146220
- "html": {
146221
- "href": "https://github.com/octocat/Hello-World/pull/1347"
146222
- },
146223
- "issue": {
146224
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
146225
- },
146226
- "comments": {
146227
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
146228
- },
146229
- "review_comments": {
146230
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
146231
- },
146232
- "review_comment": {
146233
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
146234
- },
146235
- "commits": {
146236
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
146237
- },
146238
- "statuses": {
146239
- "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
146240
- }
146241
- },
146242
- "author_association": "OWNER",
146243
- "auto_merge": null,
146244
- "draft": false
146245
- }
146246
- }
146247
- }
146248
- }
146249
- }
146250
- },
146251
- "403": {
146252
- "description": "Forbidden",
146253
- "content": {
146254
- "application/json": {
146255
- "schema": {
146256
- "title": "Basic Error",
146257
- "description": "Basic Error",
146258
- "type": "object",
146259
- "properties": {
146260
- "message": {
146261
- "type": "string"
146262
- },
146263
- "documentation_url": {
146264
- "type": "string"
146265
- },
146266
- "url": {
146267
- "type": "string"
146268
- },
146269
- "status": {
146270
- "type": "string"
146271
- }
146272
- }
146273
- }
146274
- }
146275
- }
146276
- },
146277
- "422": {
146278
- "description": "Unprocessable Entity if user is not a collaborator"
146279
- }
146280
- },
146281
- "x-github": {
146282
- "triggersNotification": true,
146283
- "githubCloudOnly": false,
146284
- "enabledForGitHubApps": true,
146285
- "category": "pulls",
146286
- "subcategory": "review-requests"
146287
- },
146288
- "x-octokit": {
146289
- "diff": {
146290
- "api.github.com": {
146291
- "type": "changed"
146292
- }
146293
- }
146294
- }
146295
- }
146296
- },
146297
141704
  "/repos/{owner}/{repo}/releases": {
146298
141705
  "post": {
146299
141706
  "summary": "Create a release",