@octokit/openapi 6.1.4 → 6.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/generated/api.github.com.deref.json +12366 -10615
  2. package/generated/api.github.com.json +3916 -3453
  3. package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
  5. package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +1 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +1 -1
  7. package/generated/ghes-3.2.deref.json +187 -7
  8. package/generated/ghes-3.2.json +190 -29
  9. package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +23 -0
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +96 -1
  11. package/generated/ghes-3.3-diff-to-ghes-3.4.json +92 -1
  12. package/generated/ghes-3.3.deref.json +371 -1395
  13. package/generated/ghes-3.3.json +491 -315
  14. package/generated/ghes-3.4-anicca-diff-to-ghes-3.5.deref.json +0 -14
  15. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +7801 -10209
  16. package/generated/ghes-3.4-diff-to-ghes-3.5.json +341 -326
  17. package/generated/ghes-3.4.deref.json +1434 -3653
  18. package/generated/ghes-3.4.json +1184 -1001
  19. package/generated/ghes-3.5-anicca-diff-to-api.github.com.deref.json +69 -73
  20. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +28230 -31386
  21. package/generated/ghes-3.5-diff-to-api.github.com.json +813 -744
  22. package/generated/ghes-3.5.deref.json +1692 -4983
  23. package/generated/ghes-3.5.json +2093 -2049
  24. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +92 -0
  25. package/generated/github.ae-diff-to-api.github.com.deref.json +488 -1
  26. package/generated/github.ae-diff-to-api.github.com.json +362 -12
  27. package/generated/github.ae.deref.json +253 -104
  28. package/generated/github.ae.json +263 -81
  29. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "6.1.4",
4
+ "version": "6.3.0",
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": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
@@ -3788,6 +3788,11 @@
3788
3788
  "schema": {
3789
3789
  "type": "array",
3790
3790
  "items": { "$ref": "#/components/schemas/event" }
3791
+ },
3792
+ "examples": {
3793
+ "200-response": {
3794
+ "$ref": "#/components/examples/public-org-events-items"
3795
+ }
3791
3796
  }
3792
3797
  }
3793
3798
  }
@@ -5138,7 +5143,8 @@
5138
5143
  "description": "Response",
5139
5144
  "content": {
5140
5145
  "application/json": {
5141
- "schema": { "$ref": "#/components/schemas/empty-object" }
5146
+ "schema": { "$ref": "#/components/schemas/empty-object" },
5147
+ "examples": { "default": { "value": null } }
5142
5148
  }
5143
5149
  }
5144
5150
  },
@@ -5533,7 +5539,8 @@
5533
5539
  "description": "Response",
5534
5540
  "content": {
5535
5541
  "application/json": {
5536
- "schema": { "$ref": "#/components/schemas/empty-object" }
5542
+ "schema": { "$ref": "#/components/schemas/empty-object" },
5543
+ "examples": { "default": { "value": null } }
5537
5544
  }
5538
5545
  }
5539
5546
  }
@@ -5610,6 +5617,160 @@
5610
5617
  }
5611
5618
  }
5612
5619
  },
5620
+ "/repos/{owner}/{repo}/autolinks": {
5621
+ "get": {
5622
+ "summary": "List all autolinks of a repository",
5623
+ "description": "This returns a list of autolinks configured for the given repository.\n\nInformation about autolinks are only available to repository administrators.",
5624
+ "tags": ["repos"],
5625
+ "operationId": "repos/list-autolinks",
5626
+ "externalDocs": {
5627
+ "description": "API method documentation",
5628
+ "url": "https://docs.github.com/enterprise-server@3.5/v3/repos#list-autolinks"
5629
+ },
5630
+ "parameters": [
5631
+ { "$ref": "#/components/parameters/owner" },
5632
+ { "$ref": "#/components/parameters/repo" },
5633
+ { "$ref": "#/components/parameters/page" }
5634
+ ],
5635
+ "responses": {
5636
+ "200": {
5637
+ "description": "Response",
5638
+ "content": {
5639
+ "application/json": {
5640
+ "schema": {
5641
+ "type": "array",
5642
+ "items": { "$ref": "#/components/schemas/autolink" }
5643
+ },
5644
+ "examples": {
5645
+ "default": { "$ref": "#/components/examples/autolink-items" }
5646
+ }
5647
+ }
5648
+ }
5649
+ }
5650
+ },
5651
+ "x-github": {
5652
+ "githubCloudOnly": false,
5653
+ "enabledForGitHubApps": true,
5654
+ "category": "repos",
5655
+ "subcategory": "autolinks"
5656
+ },
5657
+ "x-octokit": {
5658
+ "diff": { "api.github.com.json": { "type": "changed" } }
5659
+ }
5660
+ },
5661
+ "post": {
5662
+ "summary": "Create an autolink reference for a repository",
5663
+ "description": "Users with admin access to the repository can create an autolink.",
5664
+ "tags": ["repos"],
5665
+ "operationId": "repos/create-autolink",
5666
+ "externalDocs": {
5667
+ "description": "API method documentation",
5668
+ "url": "https://docs.github.com/enterprise-server@3.5/v3/repos#create-an-autolink"
5669
+ },
5670
+ "parameters": [
5671
+ { "$ref": "#/components/parameters/owner" },
5672
+ { "$ref": "#/components/parameters/repo" }
5673
+ ],
5674
+ "requestBody": {
5675
+ "required": true,
5676
+ "content": {
5677
+ "application/json": {
5678
+ "schema": {
5679
+ "type": "object",
5680
+ "properties": {
5681
+ "key_prefix": {
5682
+ "type": "string",
5683
+ "description": "The prefix appended by a number will generate a link any time it is found in an issue, pull request, or commit."
5684
+ },
5685
+ "url_template": {
5686
+ "type": "string",
5687
+ "description": "The URL must contain `<num>` for the reference number."
5688
+ }
5689
+ },
5690
+ "required": ["key_prefix", "url_template"]
5691
+ },
5692
+ "examples": {
5693
+ "default": {
5694
+ "value": {
5695
+ "key_prefix": "TICKET-",
5696
+ "url_template": "https://example.com/TICKET?query=<num>"
5697
+ }
5698
+ }
5699
+ }
5700
+ }
5701
+ }
5702
+ },
5703
+ "responses": {
5704
+ "201": {
5705
+ "description": "response",
5706
+ "content": {
5707
+ "application/json": {
5708
+ "schema": { "$ref": "#/components/schemas/autolink" },
5709
+ "examples": {
5710
+ "default": { "$ref": "#/components/examples/autolink" }
5711
+ }
5712
+ }
5713
+ },
5714
+ "headers": {
5715
+ "Location": {
5716
+ "example": "https://api.github.com/repos/octocat/Hello-World/autolinks/1",
5717
+ "schema": { "type": "string" }
5718
+ }
5719
+ }
5720
+ },
5721
+ "422": { "$ref": "#/components/responses/validation_failed" }
5722
+ },
5723
+ "x-github": {
5724
+ "githubCloudOnly": false,
5725
+ "enabledForGitHubApps": true,
5726
+ "category": "repos",
5727
+ "subcategory": "autolinks"
5728
+ },
5729
+ "x-octokit": {
5730
+ "diff": { "api.github.com.json": { "type": "changed" } }
5731
+ }
5732
+ }
5733
+ },
5734
+ "/repos/{owner}/{repo}/autolinks/{autolink_id}": {
5735
+ "get": {
5736
+ "summary": "Get an autolink reference of a repository",
5737
+ "description": "This returns a single autolink reference by ID that was configured for the given repository.\n\nInformation about autolinks are only available to repository administrators.",
5738
+ "tags": ["repos"],
5739
+ "operationId": "repos/get-autolink",
5740
+ "externalDocs": {
5741
+ "description": "API method documentation",
5742
+ "url": "https://docs.github.com/enterprise-server@3.5/v3/repos#get-autolink"
5743
+ },
5744
+ "parameters": [
5745
+ { "$ref": "#/components/parameters/owner" },
5746
+ { "$ref": "#/components/parameters/repo" },
5747
+ { "$ref": "#/components/parameters/autolink-id" }
5748
+ ],
5749
+ "responses": {
5750
+ "200": {
5751
+ "description": "Response",
5752
+ "content": {
5753
+ "application/json": {
5754
+ "schema": { "$ref": "#/components/schemas/autolink" },
5755
+ "examples": {
5756
+ "default": { "$ref": "#/components/examples/autolink" }
5757
+ }
5758
+ }
5759
+ }
5760
+ },
5761
+ "404": { "$ref": "#/components/responses/not_found" }
5762
+ },
5763
+ "x-github": {
5764
+ "githubCloudOnly": false,
5765
+ "enabledForGitHubApps": true,
5766
+ "category": "repos",
5767
+ "subcategory": "autolinks"
5768
+ },
5769
+ "x-octokit": {
5770
+ "diff": { "api.github.com.json": { "type": "changed" } }
5771
+ }
5772
+ }
5773
+ },
5613
5774
  "/repos/{owner}/{repo}/check-suites": {
5614
5775
  "post": {
5615
5776
  "summary": "Create a check suite",
@@ -6380,6 +6541,11 @@
6380
6541
  "schema": {
6381
6542
  "type": "array",
6382
6543
  "items": { "$ref": "#/components/schemas/event" }
6544
+ },
6545
+ "examples": {
6546
+ "200-response": {
6547
+ "$ref": "#/components/examples/repo-events-items"
6548
+ }
6383
6549
  }
6384
6550
  }
6385
6551
  }
@@ -11171,6 +11337,13 @@
11171
11337
  "required": true,
11172
11338
  "schema": { "oneOf": [{ "type": "integer" }, { "type": "string" }] }
11173
11339
  },
11340
+ "autolink-id": {
11341
+ "name": "autolink_id",
11342
+ "description": "The unique identifier of the autolink.",
11343
+ "in": "path",
11344
+ "required": true,
11345
+ "schema": { "type": "integer" }
11346
+ },
11174
11347
  "check-suite-id": {
11175
11348
  "name": "check_suite_id",
11176
11349
  "description": "The unique identifier of the check suite.",
@@ -12365,7 +12538,7 @@
12365
12538
  "type": "string",
12366
12539
  "description": "The secret that was detected."
12367
12540
  },
12368
- "repository": { "$ref": "#/components/schemas/minimal-repository" }
12541
+ "repository": { "$ref": "#/components/schemas/simple-repository" }
12369
12542
  }
12370
12543
  },
12371
12544
  "event": {
@@ -13112,7 +13285,7 @@
13112
13285
  "$ref": "#/components/schemas/nullable-integration"
13113
13286
  },
13114
13287
  "author_association": {
13115
- "$ref": "#/components/schemas/author_association"
13288
+ "$ref": "#/components/schemas/author-association"
13116
13289
  },
13117
13290
  "reactions": { "$ref": "#/components/schemas/reaction-rollup" }
13118
13291
  },
@@ -13924,7 +14097,7 @@
13924
14097
  "most_recent_instance": {
13925
14098
  "$ref": "#/components/schemas/code-scanning-alert-instance"
13926
14099
  },
13927
- "repository": { "$ref": "#/components/schemas/minimal-repository" }
14100
+ "repository": { "$ref": "#/components/schemas/simple-repository" }
13928
14101
  },
13929
14102
  "required": [
13930
14103
  "number",
@@ -15110,6 +15283,25 @@
15110
15283
  "pull_requests"
15111
15284
  ]
15112
15285
  },
15286
+ "autolink": {
15287
+ "title": "Autolink reference",
15288
+ "description": "An autolink reference.",
15289
+ "type": "object",
15290
+ "properties": {
15291
+ "id": { "type": "integer", "example": 3 },
15292
+ "key_prefix": {
15293
+ "description": "The prefix of a key that is linkified.",
15294
+ "example": "TICKET-",
15295
+ "type": "string"
15296
+ },
15297
+ "url_template": {
15298
+ "description": "A template for the target URL that is generated if a key was found.",
15299
+ "example": "https://example.com/TICKET?query=<num>",
15300
+ "type": "string"
15301
+ }
15302
+ },
15303
+ "required": ["id", "key_prefix", "url_template"]
15304
+ },
15113
15305
  "check-suite": {
15114
15306
  "title": "CheckSuite",
15115
15307
  "description": "A suite of checks performed on the code of a given code change",
@@ -15694,9 +15886,9 @@
15694
15886
  ]
15695
15887
  },
15696
15888
  "author_association": {
15697
- "$ref": "#/components/schemas/author_association"
15889
+ "$ref": "#/components/schemas/author-association"
15698
15890
  },
15699
- "auto_merge": { "$ref": "#/components/schemas/auto_merge" },
15891
+ "auto_merge": { "$ref": "#/components/schemas/auto-merge" },
15700
15892
  "draft": {
15701
15893
  "description": "Indicates whether or not the pull request is a draft.",
15702
15894
  "example": false,
@@ -15812,7 +16004,7 @@
15812
16004
  },
15813
16005
  "rename": { "$ref": "#/components/schemas/issue-event-rename" },
15814
16006
  "author_association": {
15815
- "$ref": "#/components/schemas/author_association"
16007
+ "$ref": "#/components/schemas/author-association"
15816
16008
  },
15817
16009
  "lock_reason": { "type": "string", "nullable": true },
15818
16010
  "performed_via_github_app": {
@@ -16168,7 +16360,7 @@
16168
16360
  "body": { "type": "string" },
16169
16361
  "score": { "type": "number" },
16170
16362
  "author_association": {
16171
- "$ref": "#/components/schemas/author_association"
16363
+ "$ref": "#/components/schemas/author-association"
16172
16364
  },
16173
16365
  "draft": { "type": "boolean" },
16174
16366
  "repository": { "$ref": "#/components/schemas/repository" },
@@ -16729,124 +16921,419 @@
16729
16921
  "format": "uri",
16730
16922
  "readOnly": true
16731
16923
  },
16732
- "actor": {
16733
- "title": "Actor",
16734
- "description": "Actor",
16735
- "type": "object",
16736
- "properties": {
16737
- "id": { "type": "integer" },
16738
- "login": { "type": "string" },
16739
- "display_login": { "type": "string" },
16740
- "gravatar_id": { "type": "string", "nullable": true },
16741
- "url": { "type": "string", "format": "uri" },
16742
- "avatar_url": { "type": "string", "format": "uri" }
16743
- },
16744
- "required": ["id", "login", "gravatar_id", "url", "avatar_url"]
16745
- },
16746
- "issue-comment": {
16747
- "title": "Issue Comment",
16748
- "description": "Comments provide a way for people to collaborate on an issue.",
16924
+ "simple-repository": {
16925
+ "title": "Simple Repository",
16926
+ "description": "Simple Repository",
16749
16927
  "type": "object",
16750
16928
  "properties": {
16751
16929
  "id": {
16752
- "description": "Unique identifier of the issue comment",
16753
- "example": 42,
16754
- "type": "integer"
16930
+ "type": "integer",
16931
+ "example": 1296269,
16932
+ "description": "A unique identifier of the repository."
16755
16933
  },
16756
- "node_id": { "type": "string" },
16757
- "url": {
16758
- "description": "URL for the issue comment",
16759
- "example": "https://api.github.com/repositories/42/issues/comments/1",
16934
+ "node_id": {
16760
16935
  "type": "string",
16761
- "format": "uri"
16762
- },
16763
- "body": {
16764
- "description": "Contents of the issue comment",
16765
- "example": "What version of Safari were you using when you observed this bug?",
16766
- "type": "string"
16936
+ "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
16937
+ "description": "The GraphQL identifier of the repository."
16767
16938
  },
16768
- "body_text": { "type": "string" },
16769
- "body_html": { "type": "string" },
16770
- "html_url": { "type": "string", "format": "uri" },
16771
- "user": { "$ref": "#/components/schemas/nullable-simple-user" },
16772
- "created_at": {
16939
+ "name": {
16773
16940
  "type": "string",
16774
- "format": "date-time",
16775
- "example": "2011-04-14T16:00:49Z"
16941
+ "example": "Hello-World",
16942
+ "description": "The name of the repository."
16776
16943
  },
16777
- "updated_at": {
16944
+ "full_name": {
16778
16945
  "type": "string",
16779
- "format": "date-time",
16780
- "example": "2011-04-14T16:00:49Z"
16781
- },
16782
- "issue_url": { "type": "string", "format": "uri" },
16783
- "author_association": {
16784
- "$ref": "#/components/schemas/author_association"
16785
- },
16786
- "performed_via_github_app": {
16787
- "$ref": "#/components/schemas/nullable-integration"
16946
+ "example": "octocat/Hello-World",
16947
+ "description": "The full, globally unique, name of the repository."
16788
16948
  },
16789
- "reactions": { "$ref": "#/components/schemas/reaction-rollup" }
16790
- },
16791
- "required": [
16792
- "id",
16793
- "node_id",
16794
- "html_url",
16795
- "issue_url",
16796
- "author_association",
16797
- "user",
16798
- "url",
16799
- "created_at",
16800
- "updated_at"
16801
- ]
16802
- },
16803
- "author_association": {
16804
- "title": "author_association",
16805
- "type": "string",
16806
- "example": "OWNER",
16807
- "description": "How the author is associated with the repository.",
16808
- "enum": [
16809
- "COLLABORATOR",
16810
- "CONTRIBUTOR",
16811
- "FIRST_TIMER",
16812
- "FIRST_TIME_CONTRIBUTOR",
16813
- "MANNEQUIN",
16814
- "MEMBER",
16815
- "NONE",
16816
- "OWNER"
16817
- ]
16818
- },
16819
- "nullable-integration": {
16820
- "title": "GitHub app",
16821
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
16822
- "type": "object",
16823
- "properties": {
16824
- "id": {
16825
- "description": "Unique identifier of the GitHub app",
16826
- "example": 37,
16827
- "type": "integer"
16828
- },
16829
- "slug": {
16830
- "description": "The slug name of the GitHub app",
16831
- "example": "probot-owners",
16832
- "type": "string"
16949
+ "owner": { "$ref": "#/components/schemas/simple-user" },
16950
+ "private": {
16951
+ "type": "boolean",
16952
+ "description": "Whether the repository is private."
16833
16953
  },
16834
- "node_id": {
16954
+ "html_url": {
16835
16955
  "type": "string",
16836
- "example": "MDExOkludGVncmF0aW9uMQ=="
16837
- },
16838
- "owner": { "$ref": "#/components/schemas/nullable-simple-user" },
16839
- "name": {
16840
- "description": "The name of the GitHub app",
16841
- "example": "Probot Owners",
16842
- "type": "string"
16956
+ "format": "uri",
16957
+ "example": "https://github.com/octocat/Hello-World",
16958
+ "description": "The URL to view the repository on GitHub.com."
16843
16959
  },
16844
16960
  "description": {
16845
16961
  "type": "string",
16846
- "example": "The description of the app.",
16847
- "nullable": true
16962
+ "example": "This your first repo!",
16963
+ "nullable": true,
16964
+ "description": "The repository description."
16848
16965
  },
16849
- "external_url": {
16966
+ "fork": {
16967
+ "type": "boolean",
16968
+ "description": "Whether the repository is a fork."
16969
+ },
16970
+ "url": {
16971
+ "type": "string",
16972
+ "format": "uri",
16973
+ "example": "https://api.github.com/repos/octocat/Hello-World",
16974
+ "description": "The URL to get more information about the repository from the GitHub API."
16975
+ },
16976
+ "archive_url": {
16977
+ "type": "string",
16978
+ "example": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
16979
+ "description": "A template for the API URL to download the repository as an archive."
16980
+ },
16981
+ "assignees_url": {
16982
+ "type": "string",
16983
+ "example": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
16984
+ "description": "A template for the API URL to list the available assignees for issues in the repository."
16985
+ },
16986
+ "blobs_url": {
16987
+ "type": "string",
16988
+ "example": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
16989
+ "description": "A template for the API URL to create or retrieve a raw Git blob in the repository."
16990
+ },
16991
+ "branches_url": {
16992
+ "type": "string",
16993
+ "example": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
16994
+ "description": "A template for the API URL to get information about branches in the repository."
16995
+ },
16996
+ "collaborators_url": {
16997
+ "type": "string",
16998
+ "example": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
16999
+ "description": "A template for the API URL to get information about collaborators of the repository."
17000
+ },
17001
+ "comments_url": {
17002
+ "type": "string",
17003
+ "example": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
17004
+ "description": "A template for the API URL to get information about comments on the repository."
17005
+ },
17006
+ "commits_url": {
17007
+ "type": "string",
17008
+ "example": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
17009
+ "description": "A template for the API URL to get information about commits on the repository."
17010
+ },
17011
+ "compare_url": {
17012
+ "type": "string",
17013
+ "example": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
17014
+ "description": "A template for the API URL to compare two commits or refs."
17015
+ },
17016
+ "contents_url": {
17017
+ "type": "string",
17018
+ "example": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
17019
+ "description": "A template for the API URL to get the contents of the repository."
17020
+ },
17021
+ "contributors_url": {
17022
+ "type": "string",
17023
+ "format": "uri",
17024
+ "example": "https://api.github.com/repos/octocat/Hello-World/contributors",
17025
+ "description": "A template for the API URL to list the contributors to the repository."
17026
+ },
17027
+ "deployments_url": {
17028
+ "type": "string",
17029
+ "format": "uri",
17030
+ "example": "https://api.github.com/repos/octocat/Hello-World/deployments",
17031
+ "description": "The API URL to list the deployments of the repository."
17032
+ },
17033
+ "downloads_url": {
17034
+ "type": "string",
17035
+ "format": "uri",
17036
+ "example": "https://api.github.com/repos/octocat/Hello-World/downloads",
17037
+ "description": "The API URL to list the downloads on the repository."
17038
+ },
17039
+ "events_url": {
17040
+ "type": "string",
17041
+ "format": "uri",
17042
+ "example": "https://api.github.com/repos/octocat/Hello-World/events",
17043
+ "description": "The API URL to list the events of the repository."
17044
+ },
17045
+ "forks_url": {
17046
+ "type": "string",
17047
+ "format": "uri",
17048
+ "example": "https://api.github.com/repos/octocat/Hello-World/forks",
17049
+ "description": "The API URL to list the forks of the repository."
17050
+ },
17051
+ "git_commits_url": {
17052
+ "type": "string",
17053
+ "example": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
17054
+ "description": "A template for the API URL to get information about Git commits of the repository."
17055
+ },
17056
+ "git_refs_url": {
17057
+ "type": "string",
17058
+ "example": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
17059
+ "description": "A template for the API URL to get information about Git refs of the repository."
17060
+ },
17061
+ "git_tags_url": {
17062
+ "type": "string",
17063
+ "example": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
17064
+ "description": "A template for the API URL to get information about Git tags of the repository."
17065
+ },
17066
+ "issue_comment_url": {
17067
+ "type": "string",
17068
+ "example": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
17069
+ "description": "A template for the API URL to get information about issue comments on the repository."
17070
+ },
17071
+ "issue_events_url": {
17072
+ "type": "string",
17073
+ "example": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
17074
+ "description": "A template for the API URL to get information about issue events on the repository."
17075
+ },
17076
+ "issues_url": {
17077
+ "type": "string",
17078
+ "example": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
17079
+ "description": "A template for the API URL to get information about issues on the repository."
17080
+ },
17081
+ "keys_url": {
17082
+ "type": "string",
17083
+ "example": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
17084
+ "description": "A template for the API URL to get information about deploy keys on the repository."
17085
+ },
17086
+ "labels_url": {
17087
+ "type": "string",
17088
+ "example": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
17089
+ "description": "A template for the API URL to get information about labels of the repository."
17090
+ },
17091
+ "languages_url": {
17092
+ "type": "string",
17093
+ "format": "uri",
17094
+ "example": "https://api.github.com/repos/octocat/Hello-World/languages",
17095
+ "description": "The API URL to get information about the languages of the repository."
17096
+ },
17097
+ "merges_url": {
17098
+ "type": "string",
17099
+ "format": "uri",
17100
+ "example": "https://api.github.com/repos/octocat/Hello-World/merges",
17101
+ "description": "The API URL to merge branches in the repository."
17102
+ },
17103
+ "milestones_url": {
17104
+ "type": "string",
17105
+ "example": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
17106
+ "description": "A template for the API URL to get information about milestones of the repository."
17107
+ },
17108
+ "notifications_url": {
17109
+ "type": "string",
17110
+ "example": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
17111
+ "description": "A template for the API URL to get information about notifications on the repository."
17112
+ },
17113
+ "pulls_url": {
17114
+ "type": "string",
17115
+ "example": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
17116
+ "description": "A template for the API URL to get information about pull requests on the repository."
17117
+ },
17118
+ "releases_url": {
17119
+ "type": "string",
17120
+ "example": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
17121
+ "description": "A template for the API URL to get information about releases on the repository."
17122
+ },
17123
+ "stargazers_url": {
17124
+ "type": "string",
17125
+ "format": "uri",
17126
+ "example": "https://api.github.com/repos/octocat/Hello-World/stargazers",
17127
+ "description": "The API URL to list the stargazers on the repository."
17128
+ },
17129
+ "statuses_url": {
17130
+ "type": "string",
17131
+ "example": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
17132
+ "description": "A template for the API URL to get information about statuses of a commit."
17133
+ },
17134
+ "subscribers_url": {
17135
+ "type": "string",
17136
+ "format": "uri",
17137
+ "example": "https://api.github.com/repos/octocat/Hello-World/subscribers",
17138
+ "description": "The API URL to list the subscribers on the repository."
17139
+ },
17140
+ "subscription_url": {
17141
+ "type": "string",
17142
+ "format": "uri",
17143
+ "example": "https://api.github.com/repos/octocat/Hello-World/subscription",
17144
+ "description": "The API URL to subscribe to notifications for this repository."
17145
+ },
17146
+ "tags_url": {
17147
+ "type": "string",
17148
+ "format": "uri",
17149
+ "example": "https://api.github.com/repos/octocat/Hello-World/tags",
17150
+ "description": "The API URL to get information about tags on the repository."
17151
+ },
17152
+ "teams_url": {
17153
+ "type": "string",
17154
+ "format": "uri",
17155
+ "example": "https://api.github.com/repos/octocat/Hello-World/teams",
17156
+ "description": "The API URL to list the teams on the repository."
17157
+ },
17158
+ "trees_url": {
17159
+ "type": "string",
17160
+ "example": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
17161
+ "description": "A template for the API URL to create or retrieve a raw Git tree of the repository."
17162
+ },
17163
+ "hooks_url": {
17164
+ "type": "string",
17165
+ "format": "uri",
17166
+ "example": "https://api.github.com/repos/octocat/Hello-World/hooks",
17167
+ "description": "The API URL to list the hooks on the repository."
17168
+ }
17169
+ },
17170
+ "required": [
17171
+ "archive_url",
17172
+ "assignees_url",
17173
+ "blobs_url",
17174
+ "branches_url",
17175
+ "collaborators_url",
17176
+ "comments_url",
17177
+ "commits_url",
17178
+ "compare_url",
17179
+ "contents_url",
17180
+ "contributors_url",
17181
+ "deployments_url",
17182
+ "description",
17183
+ "downloads_url",
17184
+ "events_url",
17185
+ "fork",
17186
+ "forks_url",
17187
+ "full_name",
17188
+ "git_commits_url",
17189
+ "git_refs_url",
17190
+ "git_tags_url",
17191
+ "hooks_url",
17192
+ "html_url",
17193
+ "id",
17194
+ "node_id",
17195
+ "issue_comment_url",
17196
+ "issue_events_url",
17197
+ "issues_url",
17198
+ "keys_url",
17199
+ "labels_url",
17200
+ "languages_url",
17201
+ "merges_url",
17202
+ "milestones_url",
17203
+ "name",
17204
+ "notifications_url",
17205
+ "owner",
17206
+ "private",
17207
+ "pulls_url",
17208
+ "releases_url",
17209
+ "stargazers_url",
17210
+ "statuses_url",
17211
+ "subscribers_url",
17212
+ "subscription_url",
17213
+ "tags_url",
17214
+ "teams_url",
17215
+ "trees_url",
17216
+ "url"
17217
+ ]
17218
+ },
17219
+ "actor": {
17220
+ "title": "Actor",
17221
+ "description": "Actor",
17222
+ "type": "object",
17223
+ "properties": {
17224
+ "id": { "type": "integer" },
17225
+ "login": { "type": "string" },
17226
+ "display_login": { "type": "string" },
17227
+ "gravatar_id": { "type": "string", "nullable": true },
17228
+ "url": { "type": "string", "format": "uri" },
17229
+ "avatar_url": { "type": "string", "format": "uri" }
17230
+ },
17231
+ "required": ["id", "login", "gravatar_id", "url", "avatar_url"]
17232
+ },
17233
+ "issue-comment": {
17234
+ "title": "Issue Comment",
17235
+ "description": "Comments provide a way for people to collaborate on an issue.",
17236
+ "type": "object",
17237
+ "properties": {
17238
+ "id": {
17239
+ "description": "Unique identifier of the issue comment",
17240
+ "example": 42,
17241
+ "type": "integer"
17242
+ },
17243
+ "node_id": { "type": "string" },
17244
+ "url": {
17245
+ "description": "URL for the issue comment",
17246
+ "example": "https://api.github.com/repositories/42/issues/comments/1",
17247
+ "type": "string",
17248
+ "format": "uri"
17249
+ },
17250
+ "body": {
17251
+ "description": "Contents of the issue comment",
17252
+ "example": "What version of Safari were you using when you observed this bug?",
17253
+ "type": "string"
17254
+ },
17255
+ "body_text": { "type": "string" },
17256
+ "body_html": { "type": "string" },
17257
+ "html_url": { "type": "string", "format": "uri" },
17258
+ "user": { "$ref": "#/components/schemas/nullable-simple-user" },
17259
+ "created_at": {
17260
+ "type": "string",
17261
+ "format": "date-time",
17262
+ "example": "2011-04-14T16:00:49Z"
17263
+ },
17264
+ "updated_at": {
17265
+ "type": "string",
17266
+ "format": "date-time",
17267
+ "example": "2011-04-14T16:00:49Z"
17268
+ },
17269
+ "issue_url": { "type": "string", "format": "uri" },
17270
+ "author_association": {
17271
+ "$ref": "#/components/schemas/author-association"
17272
+ },
17273
+ "performed_via_github_app": {
17274
+ "$ref": "#/components/schemas/nullable-integration"
17275
+ },
17276
+ "reactions": { "$ref": "#/components/schemas/reaction-rollup" }
17277
+ },
17278
+ "required": [
17279
+ "id",
17280
+ "node_id",
17281
+ "html_url",
17282
+ "issue_url",
17283
+ "author_association",
17284
+ "user",
17285
+ "url",
17286
+ "created_at",
17287
+ "updated_at"
17288
+ ]
17289
+ },
17290
+ "author-association": {
17291
+ "title": "author_association",
17292
+ "type": "string",
17293
+ "example": "OWNER",
17294
+ "description": "How the author is associated with the repository.",
17295
+ "enum": [
17296
+ "COLLABORATOR",
17297
+ "CONTRIBUTOR",
17298
+ "FIRST_TIMER",
17299
+ "FIRST_TIME_CONTRIBUTOR",
17300
+ "MANNEQUIN",
17301
+ "MEMBER",
17302
+ "NONE",
17303
+ "OWNER"
17304
+ ]
17305
+ },
17306
+ "nullable-integration": {
17307
+ "title": "GitHub app",
17308
+ "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
17309
+ "type": "object",
17310
+ "properties": {
17311
+ "id": {
17312
+ "description": "Unique identifier of the GitHub app",
17313
+ "example": 37,
17314
+ "type": "integer"
17315
+ },
17316
+ "slug": {
17317
+ "description": "The slug name of the GitHub app",
17318
+ "example": "probot-owners",
17319
+ "type": "string"
17320
+ },
17321
+ "node_id": {
17322
+ "type": "string",
17323
+ "example": "MDExOkludGVncmF0aW9uMQ=="
17324
+ },
17325
+ "owner": { "$ref": "#/components/schemas/nullable-simple-user" },
17326
+ "name": {
17327
+ "description": "The name of the GitHub app",
17328
+ "example": "Probot Owners",
17329
+ "type": "string"
17330
+ },
17331
+ "description": {
17332
+ "type": "string",
17333
+ "example": "The description of the app.",
17334
+ "nullable": true
17335
+ },
17336
+ "external_url": {
16850
17337
  "type": "string",
16851
17338
  "format": "uri",
16852
17339
  "example": "https://example.com"
@@ -18243,7 +18730,7 @@
18243
18730
  "properties": { "href": { "type": "string" } },
18244
18731
  "required": ["href"]
18245
18732
  },
18246
- "auto_merge": {
18733
+ "auto-merge": {
18247
18734
  "title": "Auto merge",
18248
18735
  "description": "The status of auto merging a pull request.",
18249
18736
  "type": "object",
@@ -18435,7 +18922,7 @@
18435
18922
  "$ref": "#/components/schemas/nullable-integration"
18436
18923
  },
18437
18924
  "author_association": {
18438
- "$ref": "#/components/schemas/author_association"
18925
+ "$ref": "#/components/schemas/author-association"
18439
18926
  },
18440
18927
  "reactions": { "$ref": "#/components/schemas/reaction-rollup" }
18441
18928
  },
@@ -19371,181 +19858,41 @@
19371
19858
  "fork": false,
19372
19859
  "url": "https://api.github.com/repos/octocat/Hello-World",
19373
19860
  "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
19374
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
19375
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
19376
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
19377
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
19378
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
19379
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
19380
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
19381
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
19382
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
19383
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
19384
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
19385
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
19386
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
19387
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
19388
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
19389
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
19390
- "git_url": "git:github.com/octocat/Hello-World.git",
19391
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
19392
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
19393
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
19394
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
19395
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
19396
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
19397
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
19398
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
19399
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
19400
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
19401
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
19402
- "ssh_url": "git@github.com:octocat/Hello-World.git",
19403
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
19404
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
19405
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
19406
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
19407
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
19408
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
19409
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
19410
- "clone_url": "https://github.com/octocat/Hello-World.git",
19411
- "mirror_url": "git:git.example.com/octocat/Hello-World",
19412
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
19413
- "svn_url": "https://svn.github.com/octocat/Hello-World",
19414
- "homepage": "https://github.com",
19415
- "language": null,
19416
- "forks_count": 9,
19417
- "stargazers_count": 80,
19418
- "watchers_count": 80,
19419
- "size": 108,
19420
- "default_branch": "master",
19421
- "open_issues_count": 0,
19422
- "is_template": false,
19423
- "topics": ["octocat", "atom", "electron", "api"],
19424
- "has_issues": true,
19425
- "has_projects": true,
19426
- "has_wiki": true,
19427
- "has_pages": false,
19428
- "has_downloads": true,
19429
- "archived": false,
19430
- "disabled": false,
19431
- "visibility": "public",
19432
- "pushed_at": "2011-01-26T19:06:43Z",
19433
- "created_at": "2011-01-26T19:01:12Z",
19434
- "updated_at": "2011-01-26T19:14:43Z",
19435
- "permissions": { "admin": false, "push": false, "pull": true },
19436
- "template_repository": {
19437
- "id": 1296269,
19438
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
19439
- "name": "Hello-World-Template",
19440
- "full_name": "octocat/Hello-World-Template",
19441
- "owner": {
19442
- "login": "octocat",
19443
- "id": 1,
19444
- "node_id": "MDQ6VXNlcjE=",
19445
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
19446
- "gravatar_id": "",
19447
- "url": "https://api.github.com/users/octocat",
19448
- "html_url": "https://github.com/octocat",
19449
- "followers_url": "https://api.github.com/users/octocat/followers",
19450
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
19451
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
19452
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
19453
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
19454
- "organizations_url": "https://api.github.com/users/octocat/orgs",
19455
- "repos_url": "https://api.github.com/users/octocat/repos",
19456
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
19457
- "received_events_url": "https://api.github.com/users/octocat/received_events",
19458
- "type": "User",
19459
- "site_admin": false
19460
- },
19461
- "private": false,
19462
- "html_url": "https://github.com/octocat/Hello-World-Template",
19463
- "description": "This your first repo!",
19464
- "fork": false,
19465
- "url": "https://api.github.com/repos/octocat/Hello-World-Template",
19466
- "archive_url": "https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}",
19467
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}",
19468
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}",
19469
- "branches_url": "https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}",
19470
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}",
19471
- "comments_url": "https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}",
19472
- "commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}",
19473
- "compare_url": "https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}",
19474
- "contents_url": "https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}",
19475
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World-Template/contributors",
19476
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World-Template/deployments",
19477
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World-Template/downloads",
19478
- "events_url": "https://api.github.com/repos/octocat/Hello-World-Template/events",
19479
- "forks_url": "https://api.github.com/repos/octocat/Hello-World-Template/forks",
19480
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}",
19481
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}",
19482
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}",
19483
- "git_url": "git:github.com/octocat/Hello-World-Template.git",
19484
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}",
19485
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}",
19486
- "issues_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}",
19487
- "keys_url": "https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}",
19488
- "labels_url": "https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}",
19489
- "languages_url": "https://api.github.com/repos/octocat/Hello-World-Template/languages",
19490
- "merges_url": "https://api.github.com/repos/octocat/Hello-World-Template/merges",
19491
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}",
19492
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}",
19493
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}",
19494
- "releases_url": "https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}",
19495
- "ssh_url": "git@github.com:octocat/Hello-World-Template.git",
19496
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World-Template/stargazers",
19497
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}",
19498
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscribers",
19499
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscription",
19500
- "tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/tags",
19501
- "teams_url": "https://api.github.com/repos/octocat/Hello-World-Template/teams",
19502
- "trees_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}",
19503
- "clone_url": "https://github.com/octocat/Hello-World-Template.git",
19504
- "mirror_url": "git:git.example.com/octocat/Hello-World-Template",
19505
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World-Template/hooks",
19506
- "svn_url": "https://svn.github.com/octocat/Hello-World-Template",
19507
- "homepage": "https://github.com",
19508
- "language": null,
19509
- "forks": 9,
19510
- "forks_count": 9,
19511
- "stargazers_count": 80,
19512
- "watchers_count": 80,
19513
- "watchers": 80,
19514
- "size": 108,
19515
- "default_branch": "master",
19516
- "open_issues": 0,
19517
- "open_issues_count": 0,
19518
- "is_template": true,
19519
- "license": {
19520
- "key": "mit",
19521
- "name": "MIT License",
19522
- "url": "https://api.github.com/licenses/mit",
19523
- "spdx_id": "MIT",
19524
- "node_id": "MDc6TGljZW5zZW1pdA==",
19525
- "html_url": "https://api.github.com/licenses/mit"
19526
- },
19527
- "topics": ["octocat", "atom", "electron", "api"],
19528
- "has_issues": true,
19529
- "has_projects": true,
19530
- "has_wiki": true,
19531
- "has_pages": false,
19532
- "has_downloads": true,
19533
- "archived": false,
19534
- "disabled": false,
19535
- "visibility": "public",
19536
- "pushed_at": "2011-01-26T19:06:43Z",
19537
- "created_at": "2011-01-26T19:01:12Z",
19538
- "updated_at": "2011-01-26T19:14:43Z",
19539
- "permissions": { "admin": false, "push": false, "pull": true },
19540
- "allow_rebase_merge": true,
19541
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
19542
- "allow_squash_merge": true,
19543
- "allow_auto_merge": false,
19544
- "delete_branch_on_merge": true,
19545
- "allow_merge_commit": true,
19546
- "subscribers_count": 42,
19547
- "network_count": 0
19548
- }
19861
+ "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
19862
+ "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
19863
+ "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
19864
+ "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
19865
+ "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
19866
+ "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
19867
+ "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
19868
+ "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
19869
+ "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
19870
+ "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
19871
+ "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
19872
+ "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
19873
+ "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
19874
+ "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
19875
+ "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
19876
+ "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
19877
+ "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
19878
+ "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
19879
+ "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
19880
+ "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
19881
+ "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
19882
+ "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
19883
+ "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
19884
+ "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
19885
+ "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
19886
+ "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
19887
+ "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
19888
+ "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
19889
+ "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
19890
+ "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
19891
+ "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
19892
+ "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
19893
+ "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
19894
+ "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
19895
+ "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks"
19549
19896
  }
19550
19897
  },
19551
19898
  {
@@ -19608,7 +19955,6 @@
19608
19955
  "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
19609
19956
  "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
19610
19957
  "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
19611
- "git_url": "git:github.com/octocat/Hello-World.git",
19612
19958
  "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
19613
19959
  "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
19614
19960
  "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
@@ -19620,7 +19966,6 @@
19620
19966
  "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
19621
19967
  "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
19622
19968
  "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
19623
- "ssh_url": "git@github.com:octocat/Hello-World.git",
19624
19969
  "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
19625
19970
  "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
19626
19971
  "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
@@ -19628,145 +19973,7 @@
19628
19973
  "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
19629
19974
  "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
19630
19975
  "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
19631
- "clone_url": "https://github.com/octocat/Hello-World.git",
19632
- "mirror_url": "git:git.example.com/octocat/Hello-World",
19633
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
19634
- "svn_url": "https://svn.github.com/octocat/Hello-World",
19635
- "homepage": "https://github.com",
19636
- "language": null,
19637
- "forks_count": 9,
19638
- "stargazers_count": 80,
19639
- "watchers_count": 80,
19640
- "size": 108,
19641
- "default_branch": "master",
19642
- "open_issues_count": 0,
19643
- "is_template": false,
19644
- "topics": ["octocat", "atom", "electron", "api"],
19645
- "has_issues": true,
19646
- "has_projects": true,
19647
- "has_wiki": true,
19648
- "has_pages": false,
19649
- "has_downloads": true,
19650
- "archived": false,
19651
- "disabled": false,
19652
- "visibility": "public",
19653
- "pushed_at": "2011-01-26T19:06:43Z",
19654
- "created_at": "2011-01-26T19:01:12Z",
19655
- "updated_at": "2011-01-26T19:14:43Z",
19656
- "permissions": { "admin": false, "push": false, "pull": true },
19657
- "template_repository": {
19658
- "id": 1296269,
19659
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
19660
- "name": "Hello-World-Template",
19661
- "full_name": "octocat/Hello-World-Template",
19662
- "owner": {
19663
- "login": "octocat",
19664
- "id": 1,
19665
- "node_id": "MDQ6VXNlcjE=",
19666
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
19667
- "gravatar_id": "",
19668
- "url": "https://api.github.com/users/octocat",
19669
- "html_url": "https://github.com/octocat",
19670
- "followers_url": "https://api.github.com/users/octocat/followers",
19671
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
19672
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
19673
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
19674
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
19675
- "organizations_url": "https://api.github.com/users/octocat/orgs",
19676
- "repos_url": "https://api.github.com/users/octocat/repos",
19677
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
19678
- "received_events_url": "https://api.github.com/users/octocat/received_events",
19679
- "type": "User",
19680
- "site_admin": false
19681
- },
19682
- "private": false,
19683
- "html_url": "https://github.com/octocat/Hello-World-Template",
19684
- "description": "This your first repo!",
19685
- "fork": false,
19686
- "url": "https://api.github.com/repos/octocat/Hello-World-Template",
19687
- "archive_url": "https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}",
19688
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}",
19689
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}",
19690
- "branches_url": "https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}",
19691
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}",
19692
- "comments_url": "https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}",
19693
- "commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}",
19694
- "compare_url": "https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}",
19695
- "contents_url": "https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}",
19696
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World-Template/contributors",
19697
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World-Template/deployments",
19698
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World-Template/downloads",
19699
- "events_url": "https://api.github.com/repos/octocat/Hello-World-Template/events",
19700
- "forks_url": "https://api.github.com/repos/octocat/Hello-World-Template/forks",
19701
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}",
19702
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}",
19703
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}",
19704
- "git_url": "git:github.com/octocat/Hello-World-Template.git",
19705
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}",
19706
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}",
19707
- "issues_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}",
19708
- "keys_url": "https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}",
19709
- "labels_url": "https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}",
19710
- "languages_url": "https://api.github.com/repos/octocat/Hello-World-Template/languages",
19711
- "merges_url": "https://api.github.com/repos/octocat/Hello-World-Template/merges",
19712
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}",
19713
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}",
19714
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}",
19715
- "releases_url": "https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}",
19716
- "ssh_url": "git@github.com:octocat/Hello-World-Template.git",
19717
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World-Template/stargazers",
19718
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}",
19719
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscribers",
19720
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscription",
19721
- "tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/tags",
19722
- "teams_url": "https://api.github.com/repos/octocat/Hello-World-Template/teams",
19723
- "trees_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}",
19724
- "clone_url": "https://github.com/octocat/Hello-World-Template.git",
19725
- "mirror_url": "git:git.example.com/octocat/Hello-World-Template",
19726
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World-Template/hooks",
19727
- "svn_url": "https://svn.github.com/octocat/Hello-World-Template",
19728
- "homepage": "https://github.com",
19729
- "language": null,
19730
- "forks": 9,
19731
- "forks_count": 9,
19732
- "stargazers_count": 80,
19733
- "watchers_count": 80,
19734
- "watchers": 80,
19735
- "size": 108,
19736
- "default_branch": "master",
19737
- "open_issues": 0,
19738
- "open_issues_count": 0,
19739
- "is_template": true,
19740
- "license": {
19741
- "key": "mit",
19742
- "name": "MIT License",
19743
- "url": "https://api.github.com/licenses/mit",
19744
- "spdx_id": "MIT",
19745
- "node_id": "MDc6TGljZW5zZW1pdA==",
19746
- "html_url": "https://api.github.com/licenses/mit"
19747
- },
19748
- "topics": ["octocat", "atom", "electron", "api"],
19749
- "has_issues": true,
19750
- "has_projects": true,
19751
- "has_wiki": true,
19752
- "has_pages": false,
19753
- "has_downloads": true,
19754
- "archived": false,
19755
- "disabled": false,
19756
- "visibility": "public",
19757
- "pushed_at": "2011-01-26T19:06:43Z",
19758
- "created_at": "2011-01-26T19:01:12Z",
19759
- "updated_at": "2011-01-26T19:14:43Z",
19760
- "permissions": { "admin": false, "push": false, "pull": true },
19761
- "allow_rebase_merge": true,
19762
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
19763
- "allow_squash_merge": true,
19764
- "allow_auto_merge": false,
19765
- "delete_branch_on_merge": true,
19766
- "allow_merge_commit": true,
19767
- "subscribers_count": 42,
19768
- "network_count": 0
19769
- }
19976
+ "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks"
19770
19977
  }
19771
19978
  }
19772
19979
  ]
@@ -21179,179 +21386,39 @@
21179
21386
  "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
21180
21387
  "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
21181
21388
  "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
21182
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
21183
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
21184
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
21185
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
21186
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
21187
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
21188
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
21189
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
21190
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
21191
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
21192
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
21193
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
21194
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
21195
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
21196
- "git_url": "git:github.com/octocat/Hello-World.git",
21197
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
21198
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
21199
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
21200
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
21201
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
21202
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
21203
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
21204
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
21205
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
21206
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
21207
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
21208
- "ssh_url": "git@github.com:octocat/Hello-World.git",
21209
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
21210
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
21211
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
21212
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
21213
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
21214
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
21215
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
21216
- "clone_url": "https://github.com/octocat/Hello-World.git",
21217
- "mirror_url": "git:git.example.com/octocat/Hello-World",
21218
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
21219
- "svn_url": "https://svn.github.com/octocat/Hello-World",
21220
- "homepage": "https://github.com",
21221
- "language": null,
21222
- "forks_count": 9,
21223
- "stargazers_count": 80,
21224
- "watchers_count": 80,
21225
- "size": 108,
21226
- "default_branch": "master",
21227
- "open_issues_count": 0,
21228
- "is_template": false,
21229
- "topics": ["octocat", "atom", "electron", "api"],
21230
- "has_issues": true,
21231
- "has_projects": true,
21232
- "has_wiki": true,
21233
- "has_pages": false,
21234
- "has_downloads": true,
21235
- "archived": false,
21236
- "disabled": false,
21237
- "visibility": "public",
21238
- "pushed_at": "2011-01-26T19:06:43Z",
21239
- "created_at": "2011-01-26T19:01:12Z",
21240
- "updated_at": "2011-01-26T19:14:43Z",
21241
- "permissions": { "admin": false, "push": false, "pull": true },
21242
- "template_repository": {
21243
- "id": 1296269,
21244
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
21245
- "name": "Hello-World-Template",
21246
- "full_name": "octocat/Hello-World-Template",
21247
- "owner": {
21248
- "login": "octocat",
21249
- "id": 1,
21250
- "node_id": "MDQ6VXNlcjE=",
21251
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
21252
- "gravatar_id": "",
21253
- "url": "https://api.github.com/users/octocat",
21254
- "html_url": "https://github.com/octocat",
21255
- "followers_url": "https://api.github.com/users/octocat/followers",
21256
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
21257
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
21258
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
21259
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
21260
- "organizations_url": "https://api.github.com/users/octocat/orgs",
21261
- "repos_url": "https://api.github.com/users/octocat/repos",
21262
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
21263
- "received_events_url": "https://api.github.com/users/octocat/received_events",
21264
- "type": "User",
21265
- "site_admin": false
21266
- },
21267
- "private": false,
21268
- "html_url": "https://github.com/octocat/Hello-World-Template",
21269
- "description": "This your first repo!",
21270
- "fork": false,
21271
- "url": "https://api.github.com/repos/octocat/Hello-World-Template",
21272
- "archive_url": "https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}",
21273
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}",
21274
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}",
21275
- "branches_url": "https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}",
21276
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}",
21277
- "comments_url": "https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}",
21278
- "commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}",
21279
- "compare_url": "https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}",
21280
- "contents_url": "https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}",
21281
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World-Template/contributors",
21282
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World-Template/deployments",
21283
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World-Template/downloads",
21284
- "events_url": "https://api.github.com/repos/octocat/Hello-World-Template/events",
21285
- "forks_url": "https://api.github.com/repos/octocat/Hello-World-Template/forks",
21286
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}",
21287
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}",
21288
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}",
21289
- "git_url": "git:github.com/octocat/Hello-World-Template.git",
21290
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}",
21291
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}",
21292
- "issues_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}",
21293
- "keys_url": "https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}",
21294
- "labels_url": "https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}",
21295
- "languages_url": "https://api.github.com/repos/octocat/Hello-World-Template/languages",
21296
- "merges_url": "https://api.github.com/repos/octocat/Hello-World-Template/merges",
21297
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}",
21298
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}",
21299
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}",
21300
- "releases_url": "https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}",
21301
- "ssh_url": "git@github.com:octocat/Hello-World-Template.git",
21302
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World-Template/stargazers",
21303
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}",
21304
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscribers",
21305
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscription",
21306
- "tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/tags",
21307
- "teams_url": "https://api.github.com/repos/octocat/Hello-World-Template/teams",
21308
- "trees_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}",
21309
- "clone_url": "https://github.com/octocat/Hello-World-Template.git",
21310
- "mirror_url": "git:git.example.com/octocat/Hello-World-Template",
21311
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World-Template/hooks",
21312
- "svn_url": "https://svn.github.com/octocat/Hello-World-Template",
21313
- "homepage": "https://github.com",
21314
- "language": null,
21315
- "forks": 9,
21316
- "forks_count": 9,
21317
- "stargazers_count": 80,
21318
- "watchers_count": 80,
21319
- "watchers": 80,
21320
- "size": 108,
21321
- "default_branch": "master",
21322
- "open_issues": 0,
21323
- "open_issues_count": 0,
21324
- "is_template": true,
21325
- "license": {
21326
- "key": "mit",
21327
- "name": "MIT License",
21328
- "url": "https://api.github.com/licenses/mit",
21329
- "spdx_id": "MIT",
21330
- "node_id": "MDc6TGljZW5zZW1pdA==",
21331
- "html_url": "https://api.github.com/licenses/mit"
21332
- },
21333
- "topics": ["octocat", "atom", "electron", "api"],
21334
- "has_issues": true,
21335
- "has_projects": true,
21336
- "has_wiki": true,
21337
- "has_pages": false,
21338
- "has_downloads": true,
21339
- "archived": false,
21340
- "disabled": false,
21341
- "visibility": "public",
21342
- "pushed_at": "2011-01-26T19:06:43Z",
21343
- "created_at": "2011-01-26T19:01:12Z",
21344
- "updated_at": "2011-01-26T19:14:43Z",
21345
- "permissions": { "admin": false, "push": false, "pull": true },
21346
- "allow_rebase_merge": true,
21347
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
21348
- "allow_squash_merge": true,
21349
- "allow_auto_merge": false,
21350
- "delete_branch_on_merge": true,
21351
- "allow_merge_commit": true,
21352
- "subscribers_count": 42,
21353
- "network_count": 0
21354
- }
21389
+ "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
21390
+ "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
21391
+ "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
21392
+ "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
21393
+ "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
21394
+ "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
21395
+ "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
21396
+ "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
21397
+ "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
21398
+ "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
21399
+ "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
21400
+ "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
21401
+ "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
21402
+ "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
21403
+ "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
21404
+ "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
21405
+ "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
21406
+ "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
21407
+ "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
21408
+ "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
21409
+ "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
21410
+ "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
21411
+ "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
21412
+ "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
21413
+ "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
21414
+ "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
21415
+ "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
21416
+ "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
21417
+ "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
21418
+ "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
21419
+ "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
21420
+ "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
21421
+ "svn_url": "https://svn.github.com/octocat/Hello-World"
21355
21422
  }
21356
21423
  },
21357
21424
  {
@@ -21456,7 +21523,6 @@
21456
21523
  "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
21457
21524
  "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
21458
21525
  "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
21459
- "git_url": "git:github.com/octocat/Hello-World.git",
21460
21526
  "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
21461
21527
  "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
21462
21528
  "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
@@ -21468,7 +21534,6 @@
21468
21534
  "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
21469
21535
  "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
21470
21536
  "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
21471
- "ssh_url": "git@github.com:octocat/Hello-World.git",
21472
21537
  "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
21473
21538
  "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
21474
21539
  "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
@@ -21476,149 +21541,74 @@
21476
21541
  "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
21477
21542
  "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
21478
21543
  "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
21479
- "clone_url": "https://github.com/octocat/Hello-World.git",
21480
- "mirror_url": "git:git.example.com/octocat/Hello-World",
21481
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
21482
- "svn_url": "https://svn.github.com/octocat/Hello-World",
21483
- "homepage": "https://github.com",
21484
- "language": null,
21485
- "forks_count": 9,
21486
- "stargazers_count": 80,
21487
- "watchers_count": 80,
21488
- "size": 108,
21489
- "default_branch": "master",
21490
- "open_issues_count": 0,
21491
- "is_template": false,
21492
- "topics": ["octocat", "atom", "electron", "api"],
21493
- "has_issues": true,
21494
- "has_projects": true,
21495
- "has_wiki": true,
21496
- "has_pages": false,
21497
- "has_downloads": true,
21498
- "archived": false,
21499
- "disabled": false,
21500
- "visibility": "public",
21501
- "pushed_at": "2011-01-26T19:06:43Z",
21502
- "created_at": "2011-01-26T19:01:12Z",
21503
- "updated_at": "2011-01-26T19:14:43Z",
21504
- "permissions": { "admin": false, "push": false, "pull": true },
21505
- "template_repository": {
21506
- "id": 1296269,
21507
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
21508
- "name": "Hello-World-Template",
21509
- "full_name": "octocat/Hello-World-Template",
21510
- "owner": {
21511
- "login": "octocat",
21512
- "id": 1,
21513
- "node_id": "MDQ6VXNlcjE=",
21514
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
21515
- "gravatar_id": "",
21516
- "url": "https://api.github.com/users/octocat",
21517
- "html_url": "https://github.com/octocat",
21518
- "followers_url": "https://api.github.com/users/octocat/followers",
21519
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
21520
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
21521
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
21522
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
21523
- "organizations_url": "https://api.github.com/users/octocat/orgs",
21524
- "repos_url": "https://api.github.com/users/octocat/repos",
21525
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
21526
- "received_events_url": "https://api.github.com/users/octocat/received_events",
21527
- "type": "User",
21528
- "site_admin": false
21529
- },
21530
- "private": false,
21531
- "html_url": "https://github.com/octocat/Hello-World-Template",
21532
- "description": "This your first repo!",
21533
- "fork": false,
21534
- "url": "https://api.github.com/repos/octocat/Hello-World-Template",
21535
- "archive_url": "https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}",
21536
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}",
21537
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}",
21538
- "branches_url": "https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}",
21539
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}",
21540
- "comments_url": "https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}",
21541
- "commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}",
21542
- "compare_url": "https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}",
21543
- "contents_url": "https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}",
21544
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World-Template/contributors",
21545
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World-Template/deployments",
21546
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World-Template/downloads",
21547
- "events_url": "https://api.github.com/repos/octocat/Hello-World-Template/events",
21548
- "forks_url": "https://api.github.com/repos/octocat/Hello-World-Template/forks",
21549
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}",
21550
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}",
21551
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}",
21552
- "git_url": "git:github.com/octocat/Hello-World-Template.git",
21553
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}",
21554
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}",
21555
- "issues_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}",
21556
- "keys_url": "https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}",
21557
- "labels_url": "https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}",
21558
- "languages_url": "https://api.github.com/repos/octocat/Hello-World-Template/languages",
21559
- "merges_url": "https://api.github.com/repos/octocat/Hello-World-Template/merges",
21560
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}",
21561
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}",
21562
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}",
21563
- "releases_url": "https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}",
21564
- "ssh_url": "git@github.com:octocat/Hello-World-Template.git",
21565
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World-Template/stargazers",
21566
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}",
21567
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscribers",
21568
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscription",
21569
- "tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/tags",
21570
- "teams_url": "https://api.github.com/repos/octocat/Hello-World-Template/teams",
21571
- "trees_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}",
21572
- "clone_url": "https://github.com/octocat/Hello-World-Template.git",
21573
- "mirror_url": "git:git.example.com/octocat/Hello-World-Template",
21574
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World-Template/hooks",
21575
- "svn_url": "https://svn.github.com/octocat/Hello-World-Template",
21576
- "homepage": "https://github.com",
21577
- "language": null,
21578
- "forks": 9,
21579
- "forks_count": 9,
21580
- "stargazers_count": 80,
21581
- "watchers_count": 80,
21582
- "watchers": 80,
21583
- "size": 108,
21584
- "default_branch": "master",
21585
- "open_issues": 0,
21586
- "open_issues_count": 0,
21587
- "is_template": true,
21588
- "license": {
21589
- "key": "mit",
21590
- "name": "MIT License",
21591
- "url": "https://api.github.com/licenses/mit",
21592
- "spdx_id": "MIT",
21593
- "node_id": "MDc6TGljZW5zZW1pdA==",
21594
- "html_url": "https://api.github.com/licenses/mit"
21595
- },
21596
- "topics": ["octocat", "atom", "electron", "api"],
21597
- "has_issues": true,
21598
- "has_projects": true,
21599
- "has_wiki": true,
21600
- "has_pages": false,
21601
- "has_downloads": true,
21602
- "archived": false,
21603
- "disabled": false,
21604
- "visibility": "public",
21605
- "pushed_at": "2011-01-26T19:06:43Z",
21606
- "created_at": "2011-01-26T19:01:12Z",
21607
- "updated_at": "2011-01-26T19:14:43Z",
21608
- "permissions": { "admin": false, "push": false, "pull": true },
21609
- "allow_rebase_merge": true,
21610
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
21611
- "allow_squash_merge": true,
21612
- "allow_auto_merge": false,
21613
- "delete_branch_on_merge": true,
21614
- "allow_merge_commit": true,
21615
- "subscribers_count": 42,
21616
- "network_count": 0
21617
- }
21544
+ "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks"
21618
21545
  }
21619
21546
  }
21620
21547
  ]
21621
21548
  },
21549
+ "public-org-events-items": {
21550
+ "value": [
21551
+ {
21552
+ "id": "22237752260",
21553
+ "type": "WatchEvent",
21554
+ "actor": {
21555
+ "id": 583231,
21556
+ "login": "octocat",
21557
+ "display_login": "octocat",
21558
+ "gravatar_id": "",
21559
+ "url": "https://api.github.com/users/octocat",
21560
+ "avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
21561
+ },
21562
+ "repo": {
21563
+ "id": 1296269,
21564
+ "name": "octo-org/octo-repo",
21565
+ "url": "https://api.github.com/repos/octo-org/octo-repo"
21566
+ },
21567
+ "payload": { "action": "started" },
21568
+ "public": true,
21569
+ "created_at": "2022-06-08T23:29:25Z"
21570
+ },
21571
+ {
21572
+ "id": "22249084964",
21573
+ "type": "PushEvent",
21574
+ "actor": {
21575
+ "id": 583231,
21576
+ "login": "octocat",
21577
+ "display_login": "octocat",
21578
+ "gravatar_id": "",
21579
+ "url": "https://api.github.com/users/octocat",
21580
+ "avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
21581
+ },
21582
+ "repo": {
21583
+ "id": 1296269,
21584
+ "name": "octo-org/octo-repo",
21585
+ "url": "https://api.github.com/repos/octo-org/oct-repo"
21586
+ },
21587
+ "payload": {
21588
+ "push_id": 10115855396,
21589
+ "size": 1,
21590
+ "distinct_size": 1,
21591
+ "ref": "refs/heads/master",
21592
+ "head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
21593
+ "before": "883efe034920928c47fe18598c01249d1a9fdabd",
21594
+ "commits": [
21595
+ {
21596
+ "sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
21597
+ "author": {
21598
+ "email": "octocat@github.com",
21599
+ "name": "Monalisa Octocat"
21600
+ },
21601
+ "message": "commit",
21602
+ "distinct": true,
21603
+ "url": "https://api.github.com/repos/octo-org/oct-repo/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
21604
+ }
21605
+ ]
21606
+ },
21607
+ "public": true,
21608
+ "created_at": "2022-06-09T12:47:28Z"
21609
+ }
21610
+ ]
21611
+ },
21622
21612
  "migration-with-short-org-items": {
21623
21613
  "value": [
21624
21614
  {
@@ -23995,6 +23985,22 @@
23995
23985
  }
23996
23986
  }
23997
23987
  },
23988
+ "autolink-items": {
23989
+ "value": [
23990
+ {
23991
+ "id": 1,
23992
+ "key_prefix": "TICKET-",
23993
+ "url_template": "https://example.com/TICKET?query=<num>"
23994
+ }
23995
+ ]
23996
+ },
23997
+ "autolink": {
23998
+ "value": {
23999
+ "id": 1,
24000
+ "key_prefix": "TICKET-",
24001
+ "url_template": "https://example.com/TICKET?query=<num>"
24002
+ }
24003
+ },
23998
24004
  "check-suite": {
23999
24005
  "value": {
24000
24006
  "id": 5,
@@ -25669,6 +25675,69 @@
25669
25675
  "url": "https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status"
25670
25676
  }
25671
25677
  },
25678
+ "repo-events-items": {
25679
+ "value": [
25680
+ {
25681
+ "id": "22249084964",
25682
+ "type": "PushEvent",
25683
+ "actor": {
25684
+ "id": 583231,
25685
+ "login": "octocat",
25686
+ "display_login": "octocat",
25687
+ "gravatar_id": "",
25688
+ "url": "https://api.github.com/users/octocat",
25689
+ "avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
25690
+ },
25691
+ "repo": {
25692
+ "id": 1296269,
25693
+ "name": "octocat/Hello-World",
25694
+ "url": "https://api.github.com/repos/octocat/Hello-World"
25695
+ },
25696
+ "payload": {
25697
+ "push_id": 10115855396,
25698
+ "size": 1,
25699
+ "distinct_size": 1,
25700
+ "ref": "refs/heads/master",
25701
+ "head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
25702
+ "before": "883efe034920928c47fe18598c01249d1a9fdabd",
25703
+ "commits": [
25704
+ {
25705
+ "sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
25706
+ "author": {
25707
+ "email": "octocat@github.com",
25708
+ "name": "Monalisa Octocat"
25709
+ },
25710
+ "message": "commit",
25711
+ "distinct": true,
25712
+ "url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
25713
+ }
25714
+ ]
25715
+ },
25716
+ "public": true,
25717
+ "created_at": "2022-06-09T12:47:28Z"
25718
+ },
25719
+ {
25720
+ "id": "22237752260",
25721
+ "type": "WatchEvent",
25722
+ "actor": {
25723
+ "id": 583231,
25724
+ "login": "octocat",
25725
+ "display_login": "octocat",
25726
+ "gravatar_id": "",
25727
+ "url": "https://api.github.com/users/octocat",
25728
+ "avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
25729
+ },
25730
+ "repo": {
25731
+ "id": 1296269,
25732
+ "name": "octocat/Hello-World",
25733
+ "url": "https://api.github.com/repos/octocat/Hello-World"
25734
+ },
25735
+ "payload": { "action": "started" },
25736
+ "public": true,
25737
+ "created_at": "2022-06-08T23:29:25Z"
25738
+ }
25739
+ ]
25740
+ },
25672
25741
  "minimal-repository-items-2": {
25673
25742
  "value": [
25674
25743
  {