@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": {
@@ -14018,118 +14018,6 @@
14018
14018
  }
14019
14019
  }
14020
14020
  }
14021
- },
14022
- "post": {
14023
- "summary": "Request reviewers for a pull request",
14024
- "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.8/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/enterprise-server@3.8/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.8/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
14025
- "tags": [
14026
- "pulls"
14027
- ],
14028
- "operationId": "pulls/request-reviewers",
14029
- "externalDocs": {
14030
- "description": "API method documentation",
14031
- "url": "https://docs.github.com/enterprise-server@3.8/rest/reference/pulls#request-reviewers-for-a-pull-request"
14032
- },
14033
- "parameters": [
14034
- {
14035
- "$ref": "#/components/parameters/owner"
14036
- },
14037
- {
14038
- "$ref": "#/components/parameters/repo"
14039
- },
14040
- {
14041
- "$ref": "#/components/parameters/pull-number"
14042
- }
14043
- ],
14044
- "requestBody": {
14045
- "required": false,
14046
- "content": {
14047
- "application/json": {
14048
- "schema": {
14049
- "type": "object",
14050
- "properties": {
14051
- "reviewers": {
14052
- "type": "array",
14053
- "description": "An array of user `login`s that will be requested.",
14054
- "items": {
14055
- "type": "string"
14056
- }
14057
- },
14058
- "team_reviewers": {
14059
- "type": "array",
14060
- "description": "An array of team `slug`s that will be requested.",
14061
- "items": {
14062
- "type": "string"
14063
- }
14064
- }
14065
- },
14066
- "anyOf": [
14067
- {
14068
- "required": [
14069
- "reviewers"
14070
- ]
14071
- },
14072
- {
14073
- "required": [
14074
- "team_reviewers"
14075
- ]
14076
- }
14077
- ]
14078
- },
14079
- "examples": {
14080
- "default": {
14081
- "value": {
14082
- "reviewers": [
14083
- "octocat",
14084
- "hubot",
14085
- "other_user"
14086
- ],
14087
- "team_reviewers": [
14088
- "justice-league"
14089
- ]
14090
- }
14091
- }
14092
- }
14093
- }
14094
- }
14095
- },
14096
- "responses": {
14097
- "201": {
14098
- "description": "Response",
14099
- "content": {
14100
- "application/json": {
14101
- "schema": {
14102
- "$ref": "#/components/schemas/pull-request-simple"
14103
- },
14104
- "examples": {
14105
- "default": {
14106
- "$ref": "#/components/examples/pull-request-review-request"
14107
- }
14108
- }
14109
- }
14110
- }
14111
- },
14112
- "403": {
14113
- "$ref": "#/components/responses/forbidden"
14114
- },
14115
- "422": {
14116
- "description": "Unprocessable Entity if user is not a collaborator"
14117
- }
14118
- },
14119
- "x-github": {
14120
- "triggersNotification": true,
14121
- "githubCloudOnly": false,
14122
- "enabledForGitHubApps": true,
14123
- "category": "pulls",
14124
- "subcategory": "review-requests"
14125
- },
14126
- "x-octokit": {
14127
- "diff": {
14128
- "api.github.com": {
14129
- "type": "changed"
14130
- }
14131
- }
14132
- }
14133
14021
  }
14134
14022
  },
14135
14023
  "/repos/{owner}/{repo}/releases": {
@@ -60412,565 +60300,6 @@
60412
60300
  ]
60413
60301
  }
60414
60302
  },
60415
- "pull-request-review-request": {
60416
- "value": {
60417
- "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347",
60418
- "id": 1,
60419
- "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==",
60420
- "html_url": "https://github.com/octocat/Hello-World/pull/1347",
60421
- "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff",
60422
- "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch",
60423
- "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
60424
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits",
60425
- "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments",
60426
- "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}",
60427
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments",
60428
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
60429
- "number": 1347,
60430
- "state": "open",
60431
- "locked": true,
60432
- "title": "Amazing new feature",
60433
- "user": {
60434
- "login": "octocat",
60435
- "id": 1,
60436
- "node_id": "MDQ6VXNlcjE=",
60437
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60438
- "gravatar_id": "",
60439
- "url": "https://api.github.com/users/octocat",
60440
- "html_url": "https://github.com/octocat",
60441
- "followers_url": "https://api.github.com/users/octocat/followers",
60442
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60443
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60444
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60445
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60446
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60447
- "repos_url": "https://api.github.com/users/octocat/repos",
60448
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60449
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60450
- "type": "User",
60451
- "site_admin": false
60452
- },
60453
- "body": "Please pull these awesome changes in!",
60454
- "labels": [
60455
- {
60456
- "id": 208045946,
60457
- "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
60458
- "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug",
60459
- "name": "bug",
60460
- "description": "Something isn't working",
60461
- "color": "f29513",
60462
- "default": true
60463
- }
60464
- ],
60465
- "milestone": {
60466
- "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1",
60467
- "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0",
60468
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels",
60469
- "id": 1002604,
60470
- "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==",
60471
- "number": 1,
60472
- "state": "open",
60473
- "title": "v1.0",
60474
- "description": "Tracking milestone for version 1.0",
60475
- "creator": {
60476
- "login": "octocat",
60477
- "id": 1,
60478
- "node_id": "MDQ6VXNlcjE=",
60479
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60480
- "gravatar_id": "",
60481
- "url": "https://api.github.com/users/octocat",
60482
- "html_url": "https://github.com/octocat",
60483
- "followers_url": "https://api.github.com/users/octocat/followers",
60484
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60485
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60486
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60487
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60488
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60489
- "repos_url": "https://api.github.com/users/octocat/repos",
60490
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60491
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60492
- "type": "User",
60493
- "site_admin": false
60494
- },
60495
- "open_issues": 4,
60496
- "closed_issues": 8,
60497
- "created_at": "2011-04-10T20:09:31Z",
60498
- "updated_at": "2014-03-03T18:58:10Z",
60499
- "closed_at": "2013-02-12T13:22:01Z",
60500
- "due_on": "2012-10-09T23:39:01Z"
60501
- },
60502
- "active_lock_reason": "too heated",
60503
- "created_at": "2011-01-26T19:01:12Z",
60504
- "updated_at": "2011-01-26T19:01:12Z",
60505
- "closed_at": "2011-01-26T19:01:12Z",
60506
- "merged_at": "2011-01-26T19:01:12Z",
60507
- "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
60508
- "assignee": {
60509
- "login": "octocat",
60510
- "id": 1,
60511
- "node_id": "MDQ6VXNlcjE=",
60512
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60513
- "gravatar_id": "",
60514
- "url": "https://api.github.com/users/octocat",
60515
- "html_url": "https://github.com/octocat",
60516
- "followers_url": "https://api.github.com/users/octocat/followers",
60517
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60518
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60519
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60520
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60521
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60522
- "repos_url": "https://api.github.com/users/octocat/repos",
60523
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60524
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60525
- "type": "User",
60526
- "site_admin": false
60527
- },
60528
- "assignees": [
60529
- {
60530
- "login": "octocat",
60531
- "id": 1,
60532
- "node_id": "MDQ6VXNlcjE=",
60533
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60534
- "gravatar_id": "",
60535
- "url": "https://api.github.com/users/octocat",
60536
- "html_url": "https://github.com/octocat",
60537
- "followers_url": "https://api.github.com/users/octocat/followers",
60538
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60539
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60540
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60541
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60542
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60543
- "repos_url": "https://api.github.com/users/octocat/repos",
60544
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60545
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60546
- "type": "User",
60547
- "site_admin": false
60548
- },
60549
- {
60550
- "login": "hubot",
60551
- "id": 1,
60552
- "node_id": "MDQ6VXNlcjE=",
60553
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
60554
- "gravatar_id": "",
60555
- "url": "https://api.github.com/users/hubot",
60556
- "html_url": "https://github.com/hubot",
60557
- "followers_url": "https://api.github.com/users/hubot/followers",
60558
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
60559
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
60560
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
60561
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
60562
- "organizations_url": "https://api.github.com/users/hubot/orgs",
60563
- "repos_url": "https://api.github.com/users/hubot/repos",
60564
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
60565
- "received_events_url": "https://api.github.com/users/hubot/received_events",
60566
- "type": "User",
60567
- "site_admin": true
60568
- }
60569
- ],
60570
- "requested_reviewers": [
60571
- {
60572
- "login": "octocat",
60573
- "id": 1,
60574
- "node_id": "MDQ6VXNlcjE=",
60575
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60576
- "gravatar_id": "",
60577
- "url": "https://api.github.com/users/octocat",
60578
- "html_url": "https://github.com/octocat",
60579
- "followers_url": "https://api.github.com/users/octocat/followers",
60580
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60581
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60582
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60583
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60584
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60585
- "repos_url": "https://api.github.com/users/octocat/repos",
60586
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60587
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60588
- "type": "User",
60589
- "site_admin": false
60590
- },
60591
- {
60592
- "login": "hubot",
60593
- "id": 1,
60594
- "node_id": "MDQ6VXNlcjE=",
60595
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
60596
- "gravatar_id": "",
60597
- "url": "https://api.github.com/users/hubot",
60598
- "html_url": "https://github.com/hubot",
60599
- "followers_url": "https://api.github.com/users/hubot/followers",
60600
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
60601
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
60602
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
60603
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
60604
- "organizations_url": "https://api.github.com/users/hubot/orgs",
60605
- "repos_url": "https://api.github.com/users/hubot/repos",
60606
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
60607
- "received_events_url": "https://api.github.com/users/hubot/received_events",
60608
- "type": "User",
60609
- "site_admin": true
60610
- },
60611
- {
60612
- "login": "other_user",
60613
- "id": 1,
60614
- "node_id": "MDQ6VXNlcjE=",
60615
- "avatar_url": "https://github.com/images/error/other_user_happy.gif",
60616
- "gravatar_id": "",
60617
- "url": "https://api.github.com/users/other_user",
60618
- "html_url": "https://github.com/other_user",
60619
- "followers_url": "https://api.github.com/users/other_user/followers",
60620
- "following_url": "https://api.github.com/users/other_user/following{/other_user}",
60621
- "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
60622
- "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
60623
- "subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
60624
- "organizations_url": "https://api.github.com/users/other_user/orgs",
60625
- "repos_url": "https://api.github.com/users/other_user/repos",
60626
- "events_url": "https://api.github.com/users/other_user/events{/privacy}",
60627
- "received_events_url": "https://api.github.com/users/other_user/received_events",
60628
- "type": "User",
60629
- "site_admin": false
60630
- }
60631
- ],
60632
- "requested_teams": [
60633
- {
60634
- "id": 1,
60635
- "node_id": "MDQ6VGVhbTE=",
60636
- "url": "https://api.github.com/teams/1",
60637
- "html_url": "https://github.com/orgs/github/teams/justice-league",
60638
- "name": "Justice League",
60639
- "slug": "justice-league",
60640
- "description": "A great team.",
60641
- "privacy": "closed",
60642
- "permission": "admin",
60643
- "members_url": "https://api.github.com/teams/1/members{/member}",
60644
- "repositories_url": "https://api.github.com/teams/1/repos",
60645
- "parent": null
60646
- }
60647
- ],
60648
- "head": {
60649
- "label": "octocat:new-topic",
60650
- "ref": "new-topic",
60651
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
60652
- "user": {
60653
- "login": "octocat",
60654
- "id": 1,
60655
- "node_id": "MDQ6VXNlcjE=",
60656
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60657
- "gravatar_id": "",
60658
- "url": "https://api.github.com/users/octocat",
60659
- "html_url": "https://github.com/octocat",
60660
- "followers_url": "https://api.github.com/users/octocat/followers",
60661
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60662
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60663
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60664
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60665
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60666
- "repos_url": "https://api.github.com/users/octocat/repos",
60667
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60668
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60669
- "type": "User",
60670
- "site_admin": false
60671
- },
60672
- "repo": {
60673
- "id": 1296269,
60674
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
60675
- "name": "Hello-World",
60676
- "full_name": "octocat/Hello-World",
60677
- "owner": {
60678
- "login": "octocat",
60679
- "id": 1,
60680
- "node_id": "MDQ6VXNlcjE=",
60681
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60682
- "gravatar_id": "",
60683
- "url": "https://api.github.com/users/octocat",
60684
- "html_url": "https://github.com/octocat",
60685
- "followers_url": "https://api.github.com/users/octocat/followers",
60686
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60687
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60688
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60689
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60690
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60691
- "repos_url": "https://api.github.com/users/octocat/repos",
60692
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60693
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60694
- "type": "User",
60695
- "site_admin": false
60696
- },
60697
- "private": false,
60698
- "html_url": "https://github.com/octocat/Hello-World",
60699
- "description": "This your first repo!",
60700
- "fork": false,
60701
- "url": "https://api.github.com/repos/octocat/Hello-World",
60702
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
60703
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
60704
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
60705
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
60706
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
60707
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
60708
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
60709
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
60710
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
60711
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
60712
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
60713
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
60714
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
60715
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
60716
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
60717
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
60718
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
60719
- "git_url": "git:github.com/octocat/Hello-World.git",
60720
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
60721
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
60722
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
60723
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
60724
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
60725
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
60726
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
60727
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
60728
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
60729
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
60730
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
60731
- "ssh_url": "git@github.com:octocat/Hello-World.git",
60732
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
60733
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
60734
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
60735
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
60736
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
60737
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
60738
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
60739
- "clone_url": "https://github.com/octocat/Hello-World.git",
60740
- "mirror_url": "git:git.example.com/octocat/Hello-World",
60741
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
60742
- "svn_url": "https://svn.github.com/octocat/Hello-World",
60743
- "homepage": "https://github.com",
60744
- "language": null,
60745
- "forks_count": 9,
60746
- "stargazers_count": 80,
60747
- "watchers_count": 80,
60748
- "size": 108,
60749
- "default_branch": "master",
60750
- "open_issues_count": 0,
60751
- "is_template": true,
60752
- "topics": [
60753
- "octocat",
60754
- "atom",
60755
- "electron",
60756
- "api"
60757
- ],
60758
- "has_issues": true,
60759
- "has_projects": true,
60760
- "has_wiki": true,
60761
- "has_pages": false,
60762
- "has_downloads": true,
60763
- "archived": false,
60764
- "disabled": false,
60765
- "visibility": "public",
60766
- "pushed_at": "2011-01-26T19:06:43Z",
60767
- "created_at": "2011-01-26T19:01:12Z",
60768
- "updated_at": "2011-01-26T19:14:43Z",
60769
- "permissions": {
60770
- "admin": false,
60771
- "push": false,
60772
- "pull": true
60773
- },
60774
- "allow_rebase_merge": true,
60775
- "template_repository": null,
60776
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
60777
- "allow_squash_merge": true,
60778
- "allow_auto_merge": false,
60779
- "delete_branch_on_merge": true,
60780
- "allow_merge_commit": true,
60781
- "subscribers_count": 42,
60782
- "network_count": 0,
60783
- "license": {
60784
- "key": "mit",
60785
- "name": "MIT License",
60786
- "url": "https://api.github.com/licenses/mit",
60787
- "spdx_id": "MIT",
60788
- "node_id": "MDc6TGljZW5zZW1pdA==",
60789
- "html_url": "https://github.com/licenses/mit"
60790
- },
60791
- "forks": 1,
60792
- "open_issues": 1,
60793
- "watchers": 1
60794
- }
60795
- },
60796
- "base": {
60797
- "label": "octocat:master",
60798
- "ref": "master",
60799
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
60800
- "user": {
60801
- "login": "octocat",
60802
- "id": 1,
60803
- "node_id": "MDQ6VXNlcjE=",
60804
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60805
- "gravatar_id": "",
60806
- "url": "https://api.github.com/users/octocat",
60807
- "html_url": "https://github.com/octocat",
60808
- "followers_url": "https://api.github.com/users/octocat/followers",
60809
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60810
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60811
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60812
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60813
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60814
- "repos_url": "https://api.github.com/users/octocat/repos",
60815
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60816
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60817
- "type": "User",
60818
- "site_admin": false
60819
- },
60820
- "repo": {
60821
- "id": 1296269,
60822
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
60823
- "name": "Hello-World",
60824
- "full_name": "octocat/Hello-World",
60825
- "owner": {
60826
- "login": "octocat",
60827
- "id": 1,
60828
- "node_id": "MDQ6VXNlcjE=",
60829
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
60830
- "gravatar_id": "",
60831
- "url": "https://api.github.com/users/octocat",
60832
- "html_url": "https://github.com/octocat",
60833
- "followers_url": "https://api.github.com/users/octocat/followers",
60834
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
60835
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
60836
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
60837
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
60838
- "organizations_url": "https://api.github.com/users/octocat/orgs",
60839
- "repos_url": "https://api.github.com/users/octocat/repos",
60840
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
60841
- "received_events_url": "https://api.github.com/users/octocat/received_events",
60842
- "type": "User",
60843
- "site_admin": false
60844
- },
60845
- "private": false,
60846
- "html_url": "https://github.com/octocat/Hello-World",
60847
- "description": "This your first repo!",
60848
- "fork": false,
60849
- "url": "https://api.github.com/repos/octocat/Hello-World",
60850
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
60851
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
60852
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
60853
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
60854
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
60855
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
60856
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
60857
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
60858
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
60859
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
60860
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
60861
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
60862
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
60863
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
60864
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
60865
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
60866
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
60867
- "git_url": "git:github.com/octocat/Hello-World.git",
60868
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
60869
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
60870
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
60871
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
60872
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
60873
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
60874
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
60875
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
60876
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
60877
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
60878
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
60879
- "ssh_url": "git@github.com:octocat/Hello-World.git",
60880
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
60881
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
60882
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
60883
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
60884
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
60885
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
60886
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
60887
- "clone_url": "https://github.com/octocat/Hello-World.git",
60888
- "mirror_url": "git:git.example.com/octocat/Hello-World",
60889
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
60890
- "svn_url": "https://svn.github.com/octocat/Hello-World",
60891
- "homepage": "https://github.com",
60892
- "language": null,
60893
- "forks_count": 9,
60894
- "stargazers_count": 80,
60895
- "watchers_count": 80,
60896
- "size": 108,
60897
- "default_branch": "master",
60898
- "open_issues_count": 0,
60899
- "is_template": true,
60900
- "topics": [
60901
- "octocat",
60902
- "atom",
60903
- "electron",
60904
- "api"
60905
- ],
60906
- "has_issues": true,
60907
- "has_projects": true,
60908
- "has_wiki": true,
60909
- "has_pages": false,
60910
- "has_downloads": true,
60911
- "archived": false,
60912
- "disabled": false,
60913
- "visibility": "public",
60914
- "pushed_at": "2011-01-26T19:06:43Z",
60915
- "created_at": "2011-01-26T19:01:12Z",
60916
- "updated_at": "2011-01-26T19:14:43Z",
60917
- "permissions": {
60918
- "admin": false,
60919
- "push": false,
60920
- "pull": true
60921
- },
60922
- "allow_rebase_merge": true,
60923
- "template_repository": null,
60924
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
60925
- "allow_squash_merge": true,
60926
- "allow_auto_merge": false,
60927
- "delete_branch_on_merge": true,
60928
- "allow_merge_commit": true,
60929
- "subscribers_count": 42,
60930
- "network_count": 0,
60931
- "license": {
60932
- "key": "mit",
60933
- "name": "MIT License",
60934
- "url": "https://api.github.com/licenses/mit",
60935
- "spdx_id": "MIT",
60936
- "node_id": "MDc6TGljZW5zZW1pdA==",
60937
- "html_url": "https://api.github.com/licenses/mit"
60938
- },
60939
- "forks": 1,
60940
- "open_issues": 1,
60941
- "watchers": 1
60942
- }
60943
- },
60944
- "_links": {
60945
- "self": {
60946
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
60947
- },
60948
- "html": {
60949
- "href": "https://github.com/octocat/Hello-World/pull/1347"
60950
- },
60951
- "issue": {
60952
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
60953
- },
60954
- "comments": {
60955
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
60956
- },
60957
- "review_comments": {
60958
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
60959
- },
60960
- "review_comment": {
60961
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
60962
- },
60963
- "commits": {
60964
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
60965
- },
60966
- "statuses": {
60967
- "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
60968
- }
60969
- },
60970
- "author_association": "OWNER",
60971
- "draft": false
60972
- }
60973
- },
60974
60303
  "release-items": {
60975
60304
  "value": [
60976
60305
  {