@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": {
@@ -12444,120 +12444,6 @@
12444
12444
  }
12445
12445
  }
12446
12446
  },
12447
- "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
12448
- "post": {
12449
- "summary": "Request reviewers for a pull request",
12450
- "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.",
12451
- "tags": [
12452
- "pulls"
12453
- ],
12454
- "operationId": "pulls/request-reviewers",
12455
- "externalDocs": {
12456
- "description": "API method documentation",
12457
- "url": "https://docs.github.com/github-ae@latest/rest/reference/pulls#request-reviewers-for-a-pull-request"
12458
- },
12459
- "parameters": [
12460
- {
12461
- "$ref": "#/components/parameters/owner"
12462
- },
12463
- {
12464
- "$ref": "#/components/parameters/repo"
12465
- },
12466
- {
12467
- "$ref": "#/components/parameters/pull-number"
12468
- }
12469
- ],
12470
- "requestBody": {
12471
- "required": false,
12472
- "content": {
12473
- "application/json": {
12474
- "schema": {
12475
- "type": "object",
12476
- "properties": {
12477
- "reviewers": {
12478
- "type": "array",
12479
- "description": "An array of user `login`s that will be requested.",
12480
- "items": {
12481
- "type": "string"
12482
- }
12483
- },
12484
- "team_reviewers": {
12485
- "type": "array",
12486
- "description": "An array of team `slug`s that will be requested.",
12487
- "items": {
12488
- "type": "string"
12489
- }
12490
- }
12491
- },
12492
- "anyOf": [
12493
- {
12494
- "required": [
12495
- "reviewers"
12496
- ]
12497
- },
12498
- {
12499
- "required": [
12500
- "team_reviewers"
12501
- ]
12502
- }
12503
- ]
12504
- },
12505
- "examples": {
12506
- "default": {
12507
- "value": {
12508
- "reviewers": [
12509
- "octocat",
12510
- "hubot",
12511
- "other_user"
12512
- ],
12513
- "team_reviewers": [
12514
- "justice-league"
12515
- ]
12516
- }
12517
- }
12518
- }
12519
- }
12520
- }
12521
- },
12522
- "responses": {
12523
- "201": {
12524
- "description": "Response",
12525
- "content": {
12526
- "application/json": {
12527
- "schema": {
12528
- "$ref": "#/components/schemas/pull-request-simple"
12529
- },
12530
- "examples": {
12531
- "default": {
12532
- "$ref": "#/components/examples/pull-request-review-request"
12533
- }
12534
- }
12535
- }
12536
- }
12537
- },
12538
- "403": {
12539
- "$ref": "#/components/responses/forbidden"
12540
- },
12541
- "422": {
12542
- "description": "Unprocessable Entity if user is not a collaborator"
12543
- }
12544
- },
12545
- "x-github": {
12546
- "triggersNotification": true,
12547
- "githubCloudOnly": false,
12548
- "enabledForGitHubApps": true,
12549
- "category": "pulls",
12550
- "subcategory": "review-requests"
12551
- },
12552
- "x-octokit": {
12553
- "diff": {
12554
- "api.github.com": {
12555
- "type": "changed"
12556
- }
12557
- }
12558
- }
12559
- }
12560
- },
12561
12447
  "/repos/{owner}/{repo}/releases": {
12562
12448
  "post": {
12563
12449
  "summary": "Create a release",
@@ -58145,567 +58031,6 @@
58145
58031
  "side": "RIGHT"
58146
58032
  }
58147
58033
  },
58148
- "pull-request-review-request": {
58149
- "value": {
58150
- "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347",
58151
- "id": 1,
58152
- "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==",
58153
- "html_url": "https://github.com/octocat/Hello-World/pull/1347",
58154
- "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff",
58155
- "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch",
58156
- "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
58157
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits",
58158
- "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments",
58159
- "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}",
58160
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments",
58161
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
58162
- "number": 1347,
58163
- "state": "open",
58164
- "locked": true,
58165
- "title": "Amazing new feature",
58166
- "user": {
58167
- "login": "octocat",
58168
- "id": 1,
58169
- "node_id": "MDQ6VXNlcjE=",
58170
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58171
- "gravatar_id": "",
58172
- "url": "https://api.github.com/users/octocat",
58173
- "html_url": "https://github.com/octocat",
58174
- "followers_url": "https://api.github.com/users/octocat/followers",
58175
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58176
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58177
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58178
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58179
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58180
- "repos_url": "https://api.github.com/users/octocat/repos",
58181
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58182
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58183
- "type": "User",
58184
- "site_admin": false
58185
- },
58186
- "body": "Please pull these awesome changes in!",
58187
- "labels": [
58188
- {
58189
- "id": 208045946,
58190
- "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
58191
- "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug",
58192
- "name": "bug",
58193
- "description": "Something isn't working",
58194
- "color": "f29513",
58195
- "default": true
58196
- }
58197
- ],
58198
- "milestone": {
58199
- "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1",
58200
- "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0",
58201
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels",
58202
- "id": 1002604,
58203
- "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==",
58204
- "number": 1,
58205
- "state": "open",
58206
- "title": "v1.0",
58207
- "description": "Tracking milestone for version 1.0",
58208
- "creator": {
58209
- "login": "octocat",
58210
- "id": 1,
58211
- "node_id": "MDQ6VXNlcjE=",
58212
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58213
- "gravatar_id": "",
58214
- "url": "https://api.github.com/users/octocat",
58215
- "html_url": "https://github.com/octocat",
58216
- "followers_url": "https://api.github.com/users/octocat/followers",
58217
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58218
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58219
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58220
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58221
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58222
- "repos_url": "https://api.github.com/users/octocat/repos",
58223
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58224
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58225
- "type": "User",
58226
- "site_admin": false
58227
- },
58228
- "open_issues": 4,
58229
- "closed_issues": 8,
58230
- "created_at": "2011-04-10T20:09:31Z",
58231
- "updated_at": "2014-03-03T18:58:10Z",
58232
- "closed_at": "2013-02-12T13:22:01Z",
58233
- "due_on": "2012-10-09T23:39:01Z"
58234
- },
58235
- "active_lock_reason": "too heated",
58236
- "created_at": "2011-01-26T19:01:12Z",
58237
- "updated_at": "2011-01-26T19:01:12Z",
58238
- "closed_at": "2011-01-26T19:01:12Z",
58239
- "merged_at": "2011-01-26T19:01:12Z",
58240
- "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
58241
- "assignee": {
58242
- "login": "octocat",
58243
- "id": 1,
58244
- "node_id": "MDQ6VXNlcjE=",
58245
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58246
- "gravatar_id": "",
58247
- "url": "https://api.github.com/users/octocat",
58248
- "html_url": "https://github.com/octocat",
58249
- "followers_url": "https://api.github.com/users/octocat/followers",
58250
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58251
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58252
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58253
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58254
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58255
- "repos_url": "https://api.github.com/users/octocat/repos",
58256
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58257
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58258
- "type": "User",
58259
- "site_admin": false
58260
- },
58261
- "assignees": [
58262
- {
58263
- "login": "octocat",
58264
- "id": 1,
58265
- "node_id": "MDQ6VXNlcjE=",
58266
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58267
- "gravatar_id": "",
58268
- "url": "https://api.github.com/users/octocat",
58269
- "html_url": "https://github.com/octocat",
58270
- "followers_url": "https://api.github.com/users/octocat/followers",
58271
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58272
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58273
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58274
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58275
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58276
- "repos_url": "https://api.github.com/users/octocat/repos",
58277
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58278
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58279
- "type": "User",
58280
- "site_admin": false
58281
- },
58282
- {
58283
- "login": "hubot",
58284
- "id": 1,
58285
- "node_id": "MDQ6VXNlcjE=",
58286
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
58287
- "gravatar_id": "",
58288
- "url": "https://api.github.com/users/hubot",
58289
- "html_url": "https://github.com/hubot",
58290
- "followers_url": "https://api.github.com/users/hubot/followers",
58291
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
58292
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
58293
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
58294
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
58295
- "organizations_url": "https://api.github.com/users/hubot/orgs",
58296
- "repos_url": "https://api.github.com/users/hubot/repos",
58297
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
58298
- "received_events_url": "https://api.github.com/users/hubot/received_events",
58299
- "type": "User",
58300
- "site_admin": true
58301
- }
58302
- ],
58303
- "requested_reviewers": [
58304
- {
58305
- "login": "octocat",
58306
- "id": 1,
58307
- "node_id": "MDQ6VXNlcjE=",
58308
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58309
- "gravatar_id": "",
58310
- "url": "https://api.github.com/users/octocat",
58311
- "html_url": "https://github.com/octocat",
58312
- "followers_url": "https://api.github.com/users/octocat/followers",
58313
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58314
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58315
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58316
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58317
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58318
- "repos_url": "https://api.github.com/users/octocat/repos",
58319
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58320
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58321
- "type": "User",
58322
- "site_admin": false
58323
- },
58324
- {
58325
- "login": "hubot",
58326
- "id": 1,
58327
- "node_id": "MDQ6VXNlcjE=",
58328
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
58329
- "gravatar_id": "",
58330
- "url": "https://api.github.com/users/hubot",
58331
- "html_url": "https://github.com/hubot",
58332
- "followers_url": "https://api.github.com/users/hubot/followers",
58333
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
58334
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
58335
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
58336
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
58337
- "organizations_url": "https://api.github.com/users/hubot/orgs",
58338
- "repos_url": "https://api.github.com/users/hubot/repos",
58339
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
58340
- "received_events_url": "https://api.github.com/users/hubot/received_events",
58341
- "type": "User",
58342
- "site_admin": true
58343
- },
58344
- {
58345
- "login": "other_user",
58346
- "id": 1,
58347
- "node_id": "MDQ6VXNlcjE=",
58348
- "avatar_url": "https://github.com/images/error/other_user_happy.gif",
58349
- "gravatar_id": "",
58350
- "url": "https://api.github.com/users/other_user",
58351
- "html_url": "https://github.com/other_user",
58352
- "followers_url": "https://api.github.com/users/other_user/followers",
58353
- "following_url": "https://api.github.com/users/other_user/following{/other_user}",
58354
- "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
58355
- "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
58356
- "subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
58357
- "organizations_url": "https://api.github.com/users/other_user/orgs",
58358
- "repos_url": "https://api.github.com/users/other_user/repos",
58359
- "events_url": "https://api.github.com/users/other_user/events{/privacy}",
58360
- "received_events_url": "https://api.github.com/users/other_user/received_events",
58361
- "type": "User",
58362
- "site_admin": false
58363
- }
58364
- ],
58365
- "requested_teams": [
58366
- {
58367
- "id": 1,
58368
- "node_id": "MDQ6VGVhbTE=",
58369
- "url": "https://api.github.com/teams/1",
58370
- "html_url": "https://github.com/orgs/github/teams/justice-league",
58371
- "name": "Justice League",
58372
- "slug": "justice-league",
58373
- "description": "A great team.",
58374
- "privacy": "closed",
58375
- "notification_setting": "notifications_enabled",
58376
- "permission": "admin",
58377
- "members_url": "https://api.github.com/teams/1/members{/member}",
58378
- "repositories_url": "https://api.github.com/teams/1/repos",
58379
- "parent": null
58380
- }
58381
- ],
58382
- "head": {
58383
- "label": "octocat:new-topic",
58384
- "ref": "new-topic",
58385
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
58386
- "user": {
58387
- "login": "octocat",
58388
- "id": 1,
58389
- "node_id": "MDQ6VXNlcjE=",
58390
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58391
- "gravatar_id": "",
58392
- "url": "https://api.github.com/users/octocat",
58393
- "html_url": "https://github.com/octocat",
58394
- "followers_url": "https://api.github.com/users/octocat/followers",
58395
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58396
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58397
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58398
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58399
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58400
- "repos_url": "https://api.github.com/users/octocat/repos",
58401
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58402
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58403
- "type": "User",
58404
- "site_admin": false
58405
- },
58406
- "repo": {
58407
- "id": 1296269,
58408
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
58409
- "name": "Hello-World",
58410
- "full_name": "octocat/Hello-World",
58411
- "owner": {
58412
- "login": "octocat",
58413
- "id": 1,
58414
- "node_id": "MDQ6VXNlcjE=",
58415
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58416
- "gravatar_id": "",
58417
- "url": "https://api.github.com/users/octocat",
58418
- "html_url": "https://github.com/octocat",
58419
- "followers_url": "https://api.github.com/users/octocat/followers",
58420
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58421
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58422
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58423
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58424
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58425
- "repos_url": "https://api.github.com/users/octocat/repos",
58426
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58427
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58428
- "type": "User",
58429
- "site_admin": false
58430
- },
58431
- "private": false,
58432
- "html_url": "https://github.com/octocat/Hello-World",
58433
- "description": "This your first repo!",
58434
- "fork": false,
58435
- "url": "https://api.github.com/repos/octocat/Hello-World",
58436
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
58437
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
58438
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
58439
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
58440
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
58441
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
58442
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
58443
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
58444
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
58445
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
58446
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
58447
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
58448
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
58449
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
58450
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
58451
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
58452
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
58453
- "git_url": "git:github.com/octocat/Hello-World.git",
58454
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
58455
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
58456
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
58457
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
58458
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
58459
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
58460
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
58461
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
58462
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
58463
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
58464
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
58465
- "ssh_url": "git@github.com:octocat/Hello-World.git",
58466
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
58467
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
58468
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
58469
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
58470
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
58471
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
58472
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
58473
- "clone_url": "https://github.com/octocat/Hello-World.git",
58474
- "mirror_url": "git:git.example.com/octocat/Hello-World",
58475
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
58476
- "svn_url": "https://svn.github.com/octocat/Hello-World",
58477
- "homepage": "https://github.com",
58478
- "language": null,
58479
- "forks_count": 9,
58480
- "stargazers_count": 80,
58481
- "watchers_count": 80,
58482
- "size": 108,
58483
- "default_branch": "master",
58484
- "open_issues_count": 0,
58485
- "is_template": true,
58486
- "topics": [
58487
- "octocat",
58488
- "atom",
58489
- "electron",
58490
- "api"
58491
- ],
58492
- "has_issues": true,
58493
- "has_projects": true,
58494
- "has_wiki": true,
58495
- "has_pages": false,
58496
- "has_downloads": true,
58497
- "archived": false,
58498
- "disabled": false,
58499
- "visibility": "public",
58500
- "pushed_at": "2011-01-26T19:06:43Z",
58501
- "created_at": "2011-01-26T19:01:12Z",
58502
- "updated_at": "2011-01-26T19:14:43Z",
58503
- "permissions": {
58504
- "admin": false,
58505
- "push": false,
58506
- "pull": true
58507
- },
58508
- "allow_rebase_merge": true,
58509
- "template_repository": null,
58510
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
58511
- "allow_squash_merge": true,
58512
- "allow_auto_merge": false,
58513
- "delete_branch_on_merge": true,
58514
- "allow_merge_commit": true,
58515
- "subscribers_count": 42,
58516
- "network_count": 0,
58517
- "license": {
58518
- "key": "mit",
58519
- "name": "MIT License",
58520
- "url": "https://api.github.com/licenses/mit",
58521
- "spdx_id": "MIT",
58522
- "node_id": "MDc6TGljZW5zZW1pdA==",
58523
- "html_url": "https://github.com/licenses/mit"
58524
- },
58525
- "forks": 1,
58526
- "open_issues": 1,
58527
- "watchers": 1
58528
- }
58529
- },
58530
- "base": {
58531
- "label": "octocat:master",
58532
- "ref": "master",
58533
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
58534
- "user": {
58535
- "login": "octocat",
58536
- "id": 1,
58537
- "node_id": "MDQ6VXNlcjE=",
58538
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58539
- "gravatar_id": "",
58540
- "url": "https://api.github.com/users/octocat",
58541
- "html_url": "https://github.com/octocat",
58542
- "followers_url": "https://api.github.com/users/octocat/followers",
58543
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58544
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58545
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58546
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58547
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58548
- "repos_url": "https://api.github.com/users/octocat/repos",
58549
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58550
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58551
- "type": "User",
58552
- "site_admin": false
58553
- },
58554
- "repo": {
58555
- "id": 1296269,
58556
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
58557
- "name": "Hello-World",
58558
- "full_name": "octocat/Hello-World",
58559
- "owner": {
58560
- "login": "octocat",
58561
- "id": 1,
58562
- "node_id": "MDQ6VXNlcjE=",
58563
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
58564
- "gravatar_id": "",
58565
- "url": "https://api.github.com/users/octocat",
58566
- "html_url": "https://github.com/octocat",
58567
- "followers_url": "https://api.github.com/users/octocat/followers",
58568
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
58569
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
58570
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
58571
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
58572
- "organizations_url": "https://api.github.com/users/octocat/orgs",
58573
- "repos_url": "https://api.github.com/users/octocat/repos",
58574
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
58575
- "received_events_url": "https://api.github.com/users/octocat/received_events",
58576
- "type": "User",
58577
- "site_admin": false
58578
- },
58579
- "private": false,
58580
- "html_url": "https://github.com/octocat/Hello-World",
58581
- "description": "This your first repo!",
58582
- "fork": false,
58583
- "url": "https://api.github.com/repos/octocat/Hello-World",
58584
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
58585
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
58586
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
58587
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
58588
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
58589
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
58590
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
58591
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
58592
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
58593
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
58594
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
58595
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
58596
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
58597
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
58598
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
58599
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
58600
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
58601
- "git_url": "git:github.com/octocat/Hello-World.git",
58602
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
58603
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
58604
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
58605
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
58606
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
58607
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
58608
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
58609
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
58610
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
58611
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
58612
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
58613
- "ssh_url": "git@github.com:octocat/Hello-World.git",
58614
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
58615
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
58616
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
58617
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
58618
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
58619
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
58620
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
58621
- "clone_url": "https://github.com/octocat/Hello-World.git",
58622
- "mirror_url": "git:git.example.com/octocat/Hello-World",
58623
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
58624
- "svn_url": "https://svn.github.com/octocat/Hello-World",
58625
- "homepage": "https://github.com",
58626
- "language": null,
58627
- "forks_count": 9,
58628
- "stargazers_count": 80,
58629
- "watchers_count": 80,
58630
- "size": 108,
58631
- "default_branch": "master",
58632
- "open_issues_count": 0,
58633
- "is_template": true,
58634
- "topics": [
58635
- "octocat",
58636
- "atom",
58637
- "electron",
58638
- "api"
58639
- ],
58640
- "has_issues": true,
58641
- "has_projects": true,
58642
- "has_wiki": true,
58643
- "has_pages": false,
58644
- "has_downloads": true,
58645
- "archived": false,
58646
- "disabled": false,
58647
- "visibility": "public",
58648
- "pushed_at": "2011-01-26T19:06:43Z",
58649
- "created_at": "2011-01-26T19:01:12Z",
58650
- "updated_at": "2011-01-26T19:14:43Z",
58651
- "permissions": {
58652
- "admin": false,
58653
- "push": false,
58654
- "pull": true
58655
- },
58656
- "allow_rebase_merge": true,
58657
- "template_repository": null,
58658
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
58659
- "allow_squash_merge": true,
58660
- "allow_auto_merge": false,
58661
- "delete_branch_on_merge": true,
58662
- "allow_merge_commit": true,
58663
- "subscribers_count": 42,
58664
- "network_count": 0,
58665
- "license": {
58666
- "key": "mit",
58667
- "name": "MIT License",
58668
- "url": "https://api.github.com/licenses/mit",
58669
- "spdx_id": "MIT",
58670
- "node_id": "MDc6TGljZW5zZW1pdA==",
58671
- "html_url": "https://api.github.com/licenses/mit"
58672
- },
58673
- "forks": 1,
58674
- "open_issues": 1,
58675
- "watchers": 1
58676
- }
58677
- },
58678
- "_links": {
58679
- "self": {
58680
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
58681
- },
58682
- "html": {
58683
- "href": "https://github.com/octocat/Hello-World/pull/1347"
58684
- },
58685
- "issue": {
58686
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
58687
- },
58688
- "comments": {
58689
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
58690
- },
58691
- "review_comments": {
58692
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
58693
- },
58694
- "review_comment": {
58695
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
58696
- },
58697
- "commits": {
58698
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
58699
- },
58700
- "statuses": {
58701
- "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
58702
- }
58703
- },
58704
- "author_association": "OWNER",
58705
- "auto_merge": null,
58706
- "draft": false
58707
- }
58708
- },
58709
58034
  "release": {
58710
58035
  "value": {
58711
58036
  "url": "https://api.github.com/repos/octocat/Hello-World/releases/1",