@octokit/openapi 5.6.4 → 5.6.5

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 (27) hide show
  1. package/generated/api.github.com.deref.json +2 -2
  2. package/generated/api.github.com.json +2 -2
  3. package/generated/ghes-2.22-diff-to-ghes-3.0.deref.json +1 -1
  4. package/generated/ghes-2.22-diff-to-ghes-3.0.json +1 -1
  5. package/generated/ghes-2.22.deref.json +1 -1
  6. package/generated/ghes-2.22.json +1 -1
  7. package/generated/ghes-3.0-anicca-diff-to-ghes-3.1.deref.json +0 -145
  8. package/generated/ghes-3.0-diff-to-ghes-3.1.deref.json +8739 -19455
  9. package/generated/ghes-3.0-diff-to-ghes-3.1.json +245 -1527
  10. package/generated/ghes-3.0.deref.json +7 -7
  11. package/generated/ghes-3.0.json +7 -7
  12. package/generated/ghes-3.1-anicca-diff-to-ghes-3.2.deref.json +286 -1467
  13. package/generated/ghes-3.1-diff-to-ghes-3.2.deref.json +81247 -128945
  14. package/generated/ghes-3.1-diff-to-ghes-3.2.json +9485 -14738
  15. package/generated/ghes-3.1.deref.json +39 -39
  16. package/generated/ghes-3.1.json +39 -39
  17. package/generated/ghes-3.2-anicca-diff-to-api.github.com.deref.json +0 -130
  18. package/generated/ghes-3.2-diff-to-api.github.com.deref.json +282 -2066
  19. package/generated/ghes-3.2-diff-to-api.github.com.json +160 -865
  20. package/generated/ghes-3.2.deref.json +8 -8
  21. package/generated/ghes-3.2.json +8 -20
  22. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +0 -55
  23. package/generated/github.ae-diff-to-api.github.com.deref.json +1 -4963
  24. package/generated/github.ae-diff-to-api.github.com.json +106 -2784
  25. package/generated/github.ae.deref.json +5 -5
  26. package/generated/github.ae.json +5 -11
  27. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "5.6.4",
4
+ "version": "5.6.5",
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" },
@@ -1955,338 +1955,6 @@
1955
1955
  "x-octokit": { "diff": { "api.github.com.json": { "type": "added" } } }
1956
1956
  }
1957
1957
  },
1958
- "/repos/{owner}/{repo}": {
1959
- "patch": {
1960
- "summary": "Update a repository",
1961
- "description": "**Note**: To edit a repository's topics, use the [Replace all repository topics](https://docs.github.com/github-ae@latest/rest/reference/repos#replace-all-repository-topics) endpoint.",
1962
- "tags": ["repos"],
1963
- "operationId": "repos/update",
1964
- "externalDocs": {
1965
- "description": "API method documentation",
1966
- "url": "https://docs.github.com/github-ae@latest/rest/reference/repos/#update-a-repository"
1967
- },
1968
- "parameters": [
1969
- { "$ref": "#/components/parameters/owner" },
1970
- { "$ref": "#/components/parameters/repo" }
1971
- ],
1972
- "requestBody": {
1973
- "content": {
1974
- "application/json": {
1975
- "schema": {
1976
- "type": "object",
1977
- "properties": {
1978
- "name": {
1979
- "type": "string",
1980
- "description": "The name of the repository."
1981
- },
1982
- "description": {
1983
- "type": "string",
1984
- "description": "A short description of the repository."
1985
- },
1986
- "homepage": {
1987
- "type": "string",
1988
- "description": "A URL with more information about the repository."
1989
- },
1990
- "private": {
1991
- "type": "boolean",
1992
- "description": "Either `true` to make the repository private or `false` to make it public. Default: `false`. \n**Note**: You will get a `422` error if the organization restricts [changing repository visibility](https://help.github.com/articles/repository-permission-levels-for-an-organization#changing-the-visibility-of-repositories) to organization owners and a non-owner tries to change the value of private. **Note**: You will get a `422` error if the organization restricts [changing repository visibility](https://help.github.com/articles/repository-permission-levels-for-an-organization#changing-the-visibility-of-repositories) to organization owners and a non-owner tries to change the value of private.",
1993
- "default": false
1994
- },
1995
- "visibility": {
1996
- "type": "string",
1997
- "description": "Can be `public` or `private`. If your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+, `visibility` can also be `internal`. The `visibility` parameter overrides the `private` parameter when you use both along with the `nebula-preview` preview header.",
1998
- "enum": ["public", "private", "visibility", "internal"]
1999
- },
2000
- "has_issues": {
2001
- "type": "boolean",
2002
- "description": "Either `true` to enable issues for this repository or `false` to disable them.",
2003
- "default": true
2004
- },
2005
- "has_projects": {
2006
- "type": "boolean",
2007
- "description": "Either `true` to enable projects for this repository or `false` to disable them. **Note:** If you're creating a repository in an organization that has disabled repository projects, the default is `false`, and if you pass `true`, the API returns an error.",
2008
- "default": true
2009
- },
2010
- "has_wiki": {
2011
- "type": "boolean",
2012
- "description": "Either `true` to enable the wiki for this repository or `false` to disable it.",
2013
- "default": true
2014
- },
2015
- "is_template": {
2016
- "type": "boolean",
2017
- "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.",
2018
- "default": false
2019
- },
2020
- "default_branch": {
2021
- "type": "string",
2022
- "description": "Updates the default branch for this repository."
2023
- },
2024
- "allow_squash_merge": {
2025
- "type": "boolean",
2026
- "description": "Either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging.",
2027
- "default": true
2028
- },
2029
- "allow_merge_commit": {
2030
- "type": "boolean",
2031
- "description": "Either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits.",
2032
- "default": true
2033
- },
2034
- "allow_rebase_merge": {
2035
- "type": "boolean",
2036
- "description": "Either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging.",
2037
- "default": true
2038
- },
2039
- "allow_auto_merge": {
2040
- "type": "boolean",
2041
- "description": "Either `true` to allow auto-merge on pull requests, or `false` to disallow auto-merge.",
2042
- "default": false
2043
- },
2044
- "delete_branch_on_merge": {
2045
- "type": "boolean",
2046
- "description": "Either `true` to allow automatically deleting head branches when pull requests are merged, or `false` to prevent automatic deletion.",
2047
- "default": false
2048
- },
2049
- "archived": {
2050
- "type": "boolean",
2051
- "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
2052
- "default": false
2053
- },
2054
- "allow_forking": {
2055
- "type": "boolean",
2056
- "description": "Either `true` to allow private forks, or `false` to prevent private forks.",
2057
- "default": false
2058
- }
2059
- }
2060
- },
2061
- "example": {
2062
- "name": "Hello-World",
2063
- "description": "This is your first repository",
2064
- "homepage": "https://github.com",
2065
- "private": true,
2066
- "has_issues": true,
2067
- "has_projects": true,
2068
- "has_wiki": true
2069
- }
2070
- }
2071
- }
2072
- },
2073
- "responses": {
2074
- "200": {
2075
- "description": "Response",
2076
- "content": {
2077
- "application/json": {
2078
- "schema": { "$ref": "#/components/schemas/full-repository" },
2079
- "examples": {
2080
- "default": { "$ref": "#/components/examples/full-repository" }
2081
- }
2082
- }
2083
- }
2084
- },
2085
- "307": { "$ref": "#/components/responses/temporary_redirect" },
2086
- "403": { "$ref": "#/components/responses/forbidden" },
2087
- "404": { "$ref": "#/components/responses/not_found" },
2088
- "422": { "$ref": "#/components/responses/validation_failed" }
2089
- },
2090
- "x-github": {
2091
- "githubCloudOnly": false,
2092
- "enabledForGitHubApps": true,
2093
- "previews": [
2094
- {
2095
- "required": false,
2096
- "name": "nebula",
2097
- "note": "You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://docs.github.com/github-ae@latest/rest/reference/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\nTo access repository visibility during the preview period, you must provide a custom [media type](https://docs.github.com/github-ae@latest/rest/overview/media-types) in the `Accept` header:\n```shell\napplication/vnd.github.nebula-preview+json\n```"
2098
- },
2099
- {
2100
- "required": false,
2101
- "name": "baptiste",
2102
- "note": "The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://docs.github.com/github-ae@latest/rest/reference/repos#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://docs.github.com/github-ae@latest/rest/overview/media-types) in the `Accept` header:\n\n```shell\napplication/vnd.github.baptiste-preview+json\n```"
2103
- }
2104
- ],
2105
- "category": "repos",
2106
- "subcategory": null
2107
- },
2108
- "x-octokit": {
2109
- "diff": { "api.github.com.json": { "type": "changed" } }
2110
- }
2111
- }
2112
- },
2113
- "/repos/{owner}/{repo}/releases": {
2114
- "post": {
2115
- "summary": "Create a release",
2116
- "description": "Users with push access to the repository can create a release.\n\nThis endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/github-ae@latest/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
2117
- "tags": ["repos"],
2118
- "operationId": "repos/create-release",
2119
- "externalDocs": {
2120
- "description": "API method documentation",
2121
- "url": "https://docs.github.com/github-ae@latest/rest/reference/repos#create-a-release"
2122
- },
2123
- "parameters": [
2124
- { "$ref": "#/components/parameters/owner" },
2125
- { "$ref": "#/components/parameters/repo" }
2126
- ],
2127
- "requestBody": {
2128
- "required": true,
2129
- "content": {
2130
- "application/json": {
2131
- "schema": {
2132
- "type": "object",
2133
- "properties": {
2134
- "tag_name": {
2135
- "type": "string",
2136
- "description": "The name of the tag."
2137
- },
2138
- "target_commitish": {
2139
- "type": "string",
2140
- "description": "Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch (usually `master`)."
2141
- },
2142
- "name": {
2143
- "type": "string",
2144
- "description": "The name of the release."
2145
- },
2146
- "body": {
2147
- "type": "string",
2148
- "description": "Text describing the contents of the tag."
2149
- },
2150
- "draft": {
2151
- "type": "boolean",
2152
- "description": "`true` to create a draft (unpublished) release, `false` to create a published one.",
2153
- "default": false
2154
- },
2155
- "prerelease": {
2156
- "type": "boolean",
2157
- "description": "`true` to identify the release as a prerelease. `false` to identify the release as a full release.",
2158
- "default": false
2159
- }
2160
- },
2161
- "required": ["tag_name"]
2162
- },
2163
- "example": {
2164
- "tag_name": "v1.0.0",
2165
- "target_commitish": "master",
2166
- "name": "v1.0.0",
2167
- "body": "Description of the release",
2168
- "draft": false,
2169
- "prerelease": false
2170
- }
2171
- }
2172
- }
2173
- },
2174
- "responses": {
2175
- "201": {
2176
- "description": "Response",
2177
- "content": {
2178
- "application/json": {
2179
- "schema": { "$ref": "#/components/schemas/release" },
2180
- "examples": {
2181
- "default": { "$ref": "#/components/examples/release" }
2182
- }
2183
- }
2184
- },
2185
- "headers": {
2186
- "Location": {
2187
- "example": "https://api.github.com/repos/octocat/Hello-World/releases/1",
2188
- "schema": { "type": "string" }
2189
- }
2190
- }
2191
- },
2192
- "422": { "$ref": "#/components/responses/validation_failed" }
2193
- },
2194
- "x-github": {
2195
- "triggersNotification": true,
2196
- "githubCloudOnly": false,
2197
- "enabledForGitHubApps": true,
2198
- "previews": [],
2199
- "category": "repos",
2200
- "subcategory": "releases"
2201
- },
2202
- "x-octokit": {
2203
- "diff": { "api.github.com.json": { "type": "changed" } }
2204
- }
2205
- }
2206
- },
2207
- "/repos/{owner}/{repo}/releases/{release_id}": {
2208
- "patch": {
2209
- "summary": "Update a release",
2210
- "description": "Users with push access to the repository can edit a release.",
2211
- "tags": ["repos"],
2212
- "operationId": "repos/update-release",
2213
- "externalDocs": {
2214
- "description": "API method documentation",
2215
- "url": "https://docs.github.com/github-ae@latest/rest/reference/repos#update-a-release"
2216
- },
2217
- "parameters": [
2218
- { "$ref": "#/components/parameters/owner" },
2219
- { "$ref": "#/components/parameters/repo" },
2220
- { "$ref": "#/components/parameters/release-id" }
2221
- ],
2222
- "requestBody": {
2223
- "content": {
2224
- "application/json": {
2225
- "schema": {
2226
- "type": "object",
2227
- "properties": {
2228
- "tag_name": {
2229
- "type": "string",
2230
- "description": "The name of the tag."
2231
- },
2232
- "target_commitish": {
2233
- "type": "string",
2234
- "description": "Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch (usually `master`)."
2235
- },
2236
- "name": {
2237
- "type": "string",
2238
- "description": "The name of the release."
2239
- },
2240
- "body": {
2241
- "type": "string",
2242
- "description": "Text describing the contents of the tag."
2243
- },
2244
- "draft": {
2245
- "type": "boolean",
2246
- "description": "`true` makes the release a draft, and `false` publishes the release."
2247
- },
2248
- "prerelease": {
2249
- "type": "boolean",
2250
- "description": "`true` to identify the release as a prerelease, `false` to identify the release as a full release."
2251
- }
2252
- }
2253
- },
2254
- "example": {
2255
- "tag_name": "v1.0.0",
2256
- "target_commitish": "master",
2257
- "name": "v1.0.0",
2258
- "body": "Description of the release",
2259
- "draft": false,
2260
- "prerelease": false
2261
- }
2262
- }
2263
- }
2264
- },
2265
- "responses": {
2266
- "200": {
2267
- "description": "Response",
2268
- "content": {
2269
- "application/json": {
2270
- "schema": { "$ref": "#/components/schemas/release" },
2271
- "examples": {
2272
- "default": { "$ref": "#/components/examples/release" }
2273
- }
2274
- }
2275
- }
2276
- }
2277
- },
2278
- "x-github": {
2279
- "githubCloudOnly": false,
2280
- "enabledForGitHubApps": true,
2281
- "previews": [],
2282
- "category": "repos",
2283
- "subcategory": "releases"
2284
- },
2285
- "x-octokit": {
2286
- "diff": { "api.github.com.json": { "type": "changed" } }
2287
- }
2288
- }
2289
- },
2290
1958
  "/users/{username}/suspended": {
2291
1959
  "put": {
2292
1960
  "summary": "Suspend a user",
@@ -2435,25 +2103,6 @@
2435
2103
  "in": "path",
2436
2104
  "required": true,
2437
2105
  "schema": { "type": "string" }
2438
- },
2439
- "owner": {
2440
- "name": "owner",
2441
- "in": "path",
2442
- "required": true,
2443
- "schema": { "type": "string" }
2444
- },
2445
- "repo": {
2446
- "name": "repo",
2447
- "in": "path",
2448
- "required": true,
2449
- "schema": { "type": "string" }
2450
- },
2451
- "release-id": {
2452
- "name": "release_id",
2453
- "description": "release_id parameter",
2454
- "in": "path",
2455
- "required": true,
2456
- "schema": { "type": "integer" }
2457
2106
  }
2458
2107
  },
2459
2108
  "schemas": {
@@ -2922,567 +2571,80 @@
2922
2571
  },
2923
2572
  "required": ["total_users", "admin_users", "suspended_users"]
2924
2573
  },
2925
- "full-repository": {
2926
- "title": "Full Repository",
2927
- "description": "Full Repository",
2574
+ "nullable-simple-user": {
2575
+ "title": "Simple User",
2576
+ "description": "Simple User",
2928
2577
  "type": "object",
2929
2578
  "properties": {
2930
- "id": { "type": "integer", "example": 1296269 },
2931
- "node_id": {
2932
- "type": "string",
2933
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
2934
- },
2935
- "name": { "type": "string", "example": "Hello-World" },
2936
- "full_name": { "type": "string", "example": "octocat/Hello-World" },
2937
- "owner": { "$ref": "#/components/schemas/simple-user" },
2938
- "private": { "type": "boolean" },
2939
- "html_url": {
2579
+ "name": { "nullable": true, "type": "string" },
2580
+ "email": { "nullable": true, "type": "string" },
2581
+ "login": { "type": "string", "example": "octocat" },
2582
+ "id": { "type": "integer", "example": 1 },
2583
+ "node_id": { "type": "string", "example": "MDQ6VXNlcjE=" },
2584
+ "avatar_url": {
2940
2585
  "type": "string",
2941
2586
  "format": "uri",
2942
- "example": "https://github.com/octocat/Hello-World"
2587
+ "example": "https://github.com/images/error/octocat_happy.gif"
2943
2588
  },
2944
- "description": {
2589
+ "gravatar_id": {
2945
2590
  "type": "string",
2946
- "example": "This your first repo!",
2591
+ "example": "41d064eb2195891e12d0413f63227ea7",
2947
2592
  "nullable": true
2948
2593
  },
2949
- "fork": { "type": "boolean" },
2950
2594
  "url": {
2951
2595
  "type": "string",
2952
2596
  "format": "uri",
2953
- "example": "https://api.github.com/repos/octocat/Hello-World"
2954
- },
2955
- "archive_url": {
2956
- "type": "string",
2957
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
2958
- },
2959
- "assignees_url": {
2960
- "type": "string",
2961
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
2962
- },
2963
- "blobs_url": {
2964
- "type": "string",
2965
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
2966
- },
2967
- "branches_url": {
2968
- "type": "string",
2969
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
2597
+ "example": "https://api.github.com/users/octocat"
2970
2598
  },
2971
- "collaborators_url": {
2599
+ "html_url": {
2972
2600
  "type": "string",
2973
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
2601
+ "format": "uri",
2602
+ "example": "https://github.com/octocat"
2974
2603
  },
2975
- "comments_url": {
2604
+ "followers_url": {
2976
2605
  "type": "string",
2977
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
2606
+ "format": "uri",
2607
+ "example": "https://api.github.com/users/octocat/followers"
2978
2608
  },
2979
- "commits_url": {
2609
+ "following_url": {
2980
2610
  "type": "string",
2981
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
2611
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
2982
2612
  },
2983
- "compare_url": {
2613
+ "gists_url": {
2984
2614
  "type": "string",
2985
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
2615
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
2986
2616
  },
2987
- "contents_url": {
2617
+ "starred_url": {
2988
2618
  "type": "string",
2989
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
2619
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
2990
2620
  },
2991
- "contributors_url": {
2621
+ "subscriptions_url": {
2992
2622
  "type": "string",
2993
2623
  "format": "uri",
2994
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
2624
+ "example": "https://api.github.com/users/octocat/subscriptions"
2995
2625
  },
2996
- "deployments_url": {
2626
+ "organizations_url": {
2997
2627
  "type": "string",
2998
2628
  "format": "uri",
2999
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
2629
+ "example": "https://api.github.com/users/octocat/orgs"
3000
2630
  },
3001
- "downloads_url": {
2631
+ "repos_url": {
3002
2632
  "type": "string",
3003
2633
  "format": "uri",
3004
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
2634
+ "example": "https://api.github.com/users/octocat/repos"
3005
2635
  },
3006
2636
  "events_url": {
3007
2637
  "type": "string",
3008
- "format": "uri",
3009
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
2638
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
3010
2639
  },
3011
- "forks_url": {
2640
+ "received_events_url": {
3012
2641
  "type": "string",
3013
2642
  "format": "uri",
3014
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
3015
- },
3016
- "git_commits_url": {
3017
- "type": "string",
3018
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
3019
- },
3020
- "git_refs_url": {
3021
- "type": "string",
3022
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
3023
- },
3024
- "git_tags_url": {
3025
- "type": "string",
3026
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
2643
+ "example": "https://api.github.com/users/octocat/received_events"
3027
2644
  },
3028
- "git_url": {
3029
- "type": "string",
3030
- "example": "git:github.com/octocat/Hello-World.git"
3031
- },
3032
- "issue_comment_url": {
3033
- "type": "string",
3034
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
3035
- },
3036
- "issue_events_url": {
3037
- "type": "string",
3038
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
3039
- },
3040
- "issues_url": {
3041
- "type": "string",
3042
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
3043
- },
3044
- "keys_url": {
3045
- "type": "string",
3046
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
3047
- },
3048
- "labels_url": {
3049
- "type": "string",
3050
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
3051
- },
3052
- "languages_url": {
3053
- "type": "string",
3054
- "format": "uri",
3055
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
3056
- },
3057
- "merges_url": {
3058
- "type": "string",
3059
- "format": "uri",
3060
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
3061
- },
3062
- "milestones_url": {
3063
- "type": "string",
3064
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
3065
- },
3066
- "notifications_url": {
3067
- "type": "string",
3068
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
3069
- },
3070
- "pulls_url": {
3071
- "type": "string",
3072
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
3073
- },
3074
- "releases_url": {
3075
- "type": "string",
3076
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
3077
- },
3078
- "ssh_url": {
3079
- "type": "string",
3080
- "example": "git@github.com:octocat/Hello-World.git"
3081
- },
3082
- "stargazers_url": {
3083
- "type": "string",
3084
- "format": "uri",
3085
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
3086
- },
3087
- "statuses_url": {
3088
- "type": "string",
3089
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
3090
- },
3091
- "subscribers_url": {
3092
- "type": "string",
3093
- "format": "uri",
3094
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
3095
- },
3096
- "subscription_url": {
3097
- "type": "string",
3098
- "format": "uri",
3099
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
3100
- },
3101
- "tags_url": {
3102
- "type": "string",
3103
- "format": "uri",
3104
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
3105
- },
3106
- "teams_url": {
3107
- "type": "string",
3108
- "format": "uri",
3109
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
3110
- },
3111
- "trees_url": {
3112
- "type": "string",
3113
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
3114
- },
3115
- "clone_url": {
3116
- "type": "string",
3117
- "example": "https://github.com/octocat/Hello-World.git"
3118
- },
3119
- "mirror_url": {
3120
- "type": "string",
3121
- "format": "uri",
3122
- "example": "git:git.example.com/octocat/Hello-World",
3123
- "nullable": true
3124
- },
3125
- "hooks_url": {
3126
- "type": "string",
3127
- "format": "uri",
3128
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
3129
- },
3130
- "svn_url": {
3131
- "type": "string",
3132
- "format": "uri",
3133
- "example": "https://svn.github.com/octocat/Hello-World"
3134
- },
3135
- "homepage": {
3136
- "type": "string",
3137
- "format": "uri",
3138
- "example": "https://github.com",
3139
- "nullable": true
3140
- },
3141
- "language": { "type": "string", "nullable": true },
3142
- "forks_count": { "type": "integer", "example": 9 },
3143
- "stargazers_count": { "type": "integer", "example": 80 },
3144
- "watchers_count": { "type": "integer", "example": 80 },
3145
- "size": { "type": "integer", "example": 108 },
3146
- "default_branch": { "type": "string", "example": "master" },
3147
- "open_issues_count": { "type": "integer", "example": 0 },
3148
- "is_template": { "type": "boolean", "example": true },
3149
- "topics": {
3150
- "type": "array",
3151
- "items": { "type": "string" },
3152
- "example": ["octocat", "atom", "electron", "API"]
3153
- },
3154
- "has_issues": { "type": "boolean", "example": true },
3155
- "has_projects": { "type": "boolean", "example": true },
3156
- "has_wiki": { "type": "boolean", "example": true },
3157
- "has_pages": { "type": "boolean" },
3158
- "has_downloads": { "type": "boolean", "example": true },
3159
- "archived": { "type": "boolean" },
3160
- "disabled": {
3161
- "type": "boolean",
3162
- "description": "Returns whether or not this repository disabled."
3163
- },
3164
- "visibility": {
3165
- "description": "The repository visibility: public, private, or internal.",
3166
- "type": "string",
3167
- "example": "public"
3168
- },
3169
- "pushed_at": {
3170
- "type": "string",
3171
- "format": "date-time",
3172
- "example": "2011-01-26T19:06:43Z"
3173
- },
3174
- "created_at": {
3175
- "type": "string",
3176
- "format": "date-time",
3177
- "example": "2011-01-26T19:01:12Z"
3178
- },
3179
- "updated_at": {
3180
- "type": "string",
3181
- "format": "date-time",
3182
- "example": "2011-01-26T19:14:43Z"
3183
- },
3184
- "permissions": {
3185
- "type": "object",
3186
- "properties": {
3187
- "admin": { "type": "boolean" },
3188
- "maintain": { "type": "boolean" },
3189
- "push": { "type": "boolean" },
3190
- "triage": { "type": "boolean" },
3191
- "pull": { "type": "boolean" }
3192
- },
3193
- "required": ["admin", "pull", "push"]
3194
- },
3195
- "allow_rebase_merge": { "type": "boolean", "example": true },
3196
- "template_repository": {
3197
- "$ref": "#/components/schemas/nullable-repository"
3198
- },
3199
- "temp_clone_token": { "type": "string", "nullable": true },
3200
- "allow_squash_merge": { "type": "boolean", "example": true },
3201
- "allow_auto_merge": { "type": "boolean", "example": false },
3202
- "delete_branch_on_merge": { "type": "boolean", "example": false },
3203
- "allow_merge_commit": { "type": "boolean", "example": true },
3204
- "allow_forking": { "type": "boolean", "example": true },
3205
- "subscribers_count": { "type": "integer", "example": 42 },
3206
- "network_count": { "type": "integer", "example": 0 },
3207
- "license": { "$ref": "#/components/schemas/nullable-license-simple" },
3208
- "organization": {
3209
- "$ref": "#/components/schemas/nullable-simple-user"
3210
- },
3211
- "parent": { "$ref": "#/components/schemas/repository" },
3212
- "source": { "$ref": "#/components/schemas/repository" },
3213
- "forks": { "type": "integer" },
3214
- "master_branch": { "type": "string" },
3215
- "open_issues": { "type": "integer" },
3216
- "watchers": { "type": "integer" },
3217
- "anonymous_access_enabled": {
3218
- "description": "Whether anonymous git access is allowed.",
3219
- "default": true,
3220
- "type": "boolean"
3221
- },
3222
- "code_of_conduct": {
3223
- "$ref": "#/components/schemas/code-of-conduct-simple"
3224
- },
3225
- "security_and_analysis": {
3226
- "nullable": true,
3227
- "type": "object",
3228
- "properties": {
3229
- "advanced_security": {
3230
- "type": "object",
3231
- "properties": {
3232
- "status": {
3233
- "type": "string",
3234
- "enum": ["enabled", "disabled"]
3235
- }
3236
- }
3237
- },
3238
- "secret_scanning": {
3239
- "type": "object",
3240
- "properties": {
3241
- "status": {
3242
- "type": "string",
3243
- "enum": ["enabled", "disabled"]
3244
- }
3245
- }
3246
- }
3247
- }
3248
- }
3249
- },
3250
- "required": [
3251
- "archive_url",
3252
- "assignees_url",
3253
- "blobs_url",
3254
- "branches_url",
3255
- "collaborators_url",
3256
- "comments_url",
3257
- "commits_url",
3258
- "compare_url",
3259
- "contents_url",
3260
- "contributors_url",
3261
- "deployments_url",
3262
- "description",
3263
- "downloads_url",
3264
- "events_url",
3265
- "fork",
3266
- "forks_url",
3267
- "full_name",
3268
- "git_commits_url",
3269
- "git_refs_url",
3270
- "git_tags_url",
3271
- "hooks_url",
3272
- "html_url",
3273
- "id",
3274
- "node_id",
3275
- "issue_comment_url",
3276
- "issue_events_url",
3277
- "issues_url",
3278
- "keys_url",
3279
- "labels_url",
3280
- "languages_url",
3281
- "merges_url",
3282
- "milestones_url",
3283
- "name",
3284
- "notifications_url",
3285
- "owner",
3286
- "private",
3287
- "pulls_url",
3288
- "releases_url",
3289
- "stargazers_url",
3290
- "statuses_url",
3291
- "subscribers_url",
3292
- "subscription_url",
3293
- "tags_url",
3294
- "teams_url",
3295
- "trees_url",
3296
- "url",
3297
- "clone_url",
3298
- "default_branch",
3299
- "forks",
3300
- "forks_count",
3301
- "git_url",
3302
- "has_downloads",
3303
- "has_issues",
3304
- "has_projects",
3305
- "has_wiki",
3306
- "has_pages",
3307
- "homepage",
3308
- "language",
3309
- "archived",
3310
- "disabled",
3311
- "mirror_url",
3312
- "open_issues",
3313
- "open_issues_count",
3314
- "license",
3315
- "pushed_at",
3316
- "size",
3317
- "ssh_url",
3318
- "stargazers_count",
3319
- "svn_url",
3320
- "watchers",
3321
- "watchers_count",
3322
- "created_at",
3323
- "updated_at",
3324
- "network_count",
3325
- "subscribers_count"
3326
- ]
3327
- },
3328
- "release": {
3329
- "title": "Release",
3330
- "description": "A release.",
3331
- "type": "object",
3332
- "properties": {
3333
- "url": { "type": "string", "format": "uri" },
3334
- "html_url": { "type": "string", "format": "uri" },
3335
- "assets_url": { "type": "string", "format": "uri" },
3336
- "upload_url": { "type": "string" },
3337
- "tarball_url": {
3338
- "type": "string",
3339
- "format": "uri",
3340
- "nullable": true
3341
- },
3342
- "zipball_url": {
3343
- "type": "string",
3344
- "format": "uri",
3345
- "nullable": true
3346
- },
3347
- "id": { "type": "integer" },
3348
- "node_id": { "type": "string" },
3349
- "tag_name": {
3350
- "description": "The name of the tag.",
3351
- "example": "v1.0.0",
3352
- "type": "string"
3353
- },
3354
- "target_commitish": {
3355
- "description": "Specifies the commitish value that determines where the Git tag is created from.",
3356
- "example": "master",
3357
- "type": "string"
3358
- },
3359
- "name": { "type": "string", "nullable": true },
3360
- "body": { "type": "string", "nullable": true },
3361
- "draft": {
3362
- "description": "true to create a draft (unpublished) release, false to create a published one.",
3363
- "example": false,
3364
- "type": "boolean"
3365
- },
3366
- "prerelease": {
3367
- "description": "Whether to identify the release as a prerelease or a full release.",
3368
- "example": false,
3369
- "type": "boolean"
3370
- },
3371
- "created_at": { "type": "string", "format": "date-time" },
3372
- "published_at": {
3373
- "type": "string",
3374
- "format": "date-time",
3375
- "nullable": true
3376
- },
3377
- "author": { "$ref": "#/components/schemas/simple-user" },
3378
- "assets": {
3379
- "type": "array",
3380
- "items": { "$ref": "#/components/schemas/release-asset" }
3381
- },
3382
- "body_html": { "type": "string" },
3383
- "body_text": { "type": "string" },
3384
- "mentions_count": { "type": "integer" },
3385
- "discussion_url": {
3386
- "description": "The URL of the release discussion.",
3387
- "type": "string",
3388
- "format": "uri"
3389
- },
3390
- "reactions": { "$ref": "#/components/schemas/reaction-rollup" }
3391
- },
3392
- "required": [
3393
- "assets_url",
3394
- "upload_url",
3395
- "tarball_url",
3396
- "zipball_url",
3397
- "created_at",
3398
- "published_at",
3399
- "draft",
3400
- "id",
3401
- "node_id",
3402
- "author",
3403
- "html_url",
3404
- "name",
3405
- "prerelease",
3406
- "tag_name",
3407
- "target_commitish",
3408
- "assets",
3409
- "url"
3410
- ]
3411
- },
3412
- "nullable-simple-user": {
3413
- "title": "Simple User",
3414
- "description": "Simple User",
3415
- "type": "object",
3416
- "properties": {
3417
- "name": { "nullable": true, "type": "string" },
3418
- "email": { "nullable": true, "type": "string" },
3419
- "login": { "type": "string", "example": "octocat" },
3420
- "id": { "type": "integer", "example": 1 },
3421
- "node_id": { "type": "string", "example": "MDQ6VXNlcjE=" },
3422
- "avatar_url": {
3423
- "type": "string",
3424
- "format": "uri",
3425
- "example": "https://github.com/images/error/octocat_happy.gif"
3426
- },
3427
- "gravatar_id": {
3428
- "type": "string",
3429
- "example": "41d064eb2195891e12d0413f63227ea7",
3430
- "nullable": true
3431
- },
3432
- "url": {
3433
- "type": "string",
3434
- "format": "uri",
3435
- "example": "https://api.github.com/users/octocat"
3436
- },
3437
- "html_url": {
3438
- "type": "string",
3439
- "format": "uri",
3440
- "example": "https://github.com/octocat"
3441
- },
3442
- "followers_url": {
3443
- "type": "string",
3444
- "format": "uri",
3445
- "example": "https://api.github.com/users/octocat/followers"
3446
- },
3447
- "following_url": {
3448
- "type": "string",
3449
- "example": "https://api.github.com/users/octocat/following{/other_user}"
3450
- },
3451
- "gists_url": {
3452
- "type": "string",
3453
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
3454
- },
3455
- "starred_url": {
3456
- "type": "string",
3457
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
3458
- },
3459
- "subscriptions_url": {
3460
- "type": "string",
3461
- "format": "uri",
3462
- "example": "https://api.github.com/users/octocat/subscriptions"
3463
- },
3464
- "organizations_url": {
3465
- "type": "string",
3466
- "format": "uri",
3467
- "example": "https://api.github.com/users/octocat/orgs"
3468
- },
3469
- "repos_url": {
3470
- "type": "string",
3471
- "format": "uri",
3472
- "example": "https://api.github.com/users/octocat/repos"
3473
- },
3474
- "events_url": {
3475
- "type": "string",
3476
- "example": "https://api.github.com/users/octocat/events{/privacy}"
3477
- },
3478
- "received_events_url": {
3479
- "type": "string",
3480
- "format": "uri",
3481
- "example": "https://api.github.com/users/octocat/received_events"
3482
- },
3483
- "type": { "type": "string", "example": "User" },
3484
- "site_admin": { "type": "boolean" },
3485
- "starred_at": {
2645
+ "type": { "type": "string", "example": "User" },
2646
+ "site_admin": { "type": "boolean" },
2647
+ "starred_at": {
3486
2648
  "type": "string",
3487
2649
  "example": "\"2020-07-09T00:17:55Z\""
3488
2650
  }
@@ -3716,1389 +2878,125 @@
3716
2878
  },
3717
2879
  "simple-user": {
3718
2880
  "title": "Simple User",
3719
- "description": "Simple User",
3720
- "type": "object",
3721
- "properties": {
3722
- "name": { "nullable": true, "type": "string" },
3723
- "email": { "nullable": true, "type": "string" },
3724
- "login": { "type": "string", "example": "octocat" },
3725
- "id": { "type": "integer", "example": 1 },
3726
- "node_id": { "type": "string", "example": "MDQ6VXNlcjE=" },
3727
- "avatar_url": {
3728
- "type": "string",
3729
- "format": "uri",
3730
- "example": "https://github.com/images/error/octocat_happy.gif"
3731
- },
3732
- "gravatar_id": {
3733
- "type": "string",
3734
- "example": "41d064eb2195891e12d0413f63227ea7",
3735
- "nullable": true
3736
- },
3737
- "url": {
3738
- "type": "string",
3739
- "format": "uri",
3740
- "example": "https://api.github.com/users/octocat"
3741
- },
3742
- "html_url": {
3743
- "type": "string",
3744
- "format": "uri",
3745
- "example": "https://github.com/octocat"
3746
- },
3747
- "followers_url": {
3748
- "type": "string",
3749
- "format": "uri",
3750
- "example": "https://api.github.com/users/octocat/followers"
3751
- },
3752
- "following_url": {
3753
- "type": "string",
3754
- "example": "https://api.github.com/users/octocat/following{/other_user}"
3755
- },
3756
- "gists_url": {
3757
- "type": "string",
3758
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
3759
- },
3760
- "starred_url": {
3761
- "type": "string",
3762
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
3763
- },
3764
- "subscriptions_url": {
3765
- "type": "string",
3766
- "format": "uri",
3767
- "example": "https://api.github.com/users/octocat/subscriptions"
3768
- },
3769
- "organizations_url": {
3770
- "type": "string",
3771
- "format": "uri",
3772
- "example": "https://api.github.com/users/octocat/orgs"
3773
- },
3774
- "repos_url": {
3775
- "type": "string",
3776
- "format": "uri",
3777
- "example": "https://api.github.com/users/octocat/repos"
3778
- },
3779
- "events_url": {
3780
- "type": "string",
3781
- "example": "https://api.github.com/users/octocat/events{/privacy}"
3782
- },
3783
- "received_events_url": {
3784
- "type": "string",
3785
- "format": "uri",
3786
- "example": "https://api.github.com/users/octocat/received_events"
3787
- },
3788
- "type": { "type": "string", "example": "User" },
3789
- "site_admin": { "type": "boolean" },
3790
- "starred_at": {
3791
- "type": "string",
3792
- "example": "\"2020-07-09T00:17:55Z\""
3793
- }
3794
- },
3795
- "required": [
3796
- "avatar_url",
3797
- "events_url",
3798
- "followers_url",
3799
- "following_url",
3800
- "gists_url",
3801
- "gravatar_id",
3802
- "html_url",
3803
- "id",
3804
- "node_id",
3805
- "login",
3806
- "organizations_url",
3807
- "received_events_url",
3808
- "repos_url",
3809
- "site_admin",
3810
- "starred_url",
3811
- "subscriptions_url",
3812
- "type",
3813
- "url"
3814
- ]
3815
- },
3816
- "basic-error": {
3817
- "title": "Basic Error",
3818
- "description": "Basic Error",
3819
- "type": "object",
3820
- "properties": {
3821
- "message": { "type": "string" },
3822
- "documentation_url": { "type": "string" },
3823
- "url": { "type": "string" },
3824
- "status": { "type": "string" }
3825
- }
3826
- },
3827
- "announcement-message": {
3828
- "type": "string",
3829
- "description": "The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see \"[Mastering markdown](https://guides.github.com/features/mastering-markdown/).\"",
3830
- "example": "Very **important** announcement about _nothing_."
3831
- },
3832
- "announcement-expiration": {
3833
- "type": "string",
3834
- "format": "date-time",
3835
- "description": "The time at which the announcement expires. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. To set an announcement that never expires, omit this parameter, set it to `null`, or set it to an empty string.",
3836
- "example": "\"2021-01-01T00:00:00.000-07:00\"",
3837
- "nullable": true
3838
- },
3839
- "nullable-repository": {
3840
- "title": "Repository",
3841
- "description": "A git repository",
3842
- "type": "object",
3843
- "properties": {
3844
- "id": {
3845
- "description": "Unique identifier of the repository",
3846
- "example": 42,
3847
- "type": "integer"
3848
- },
3849
- "node_id": {
3850
- "type": "string",
3851
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
3852
- },
3853
- "name": {
3854
- "description": "The name of the repository.",
3855
- "type": "string",
3856
- "example": "Team Environment"
3857
- },
3858
- "full_name": { "type": "string", "example": "octocat/Hello-World" },
3859
- "license": { "$ref": "#/components/schemas/nullable-license-simple" },
3860
- "organization": {
3861
- "$ref": "#/components/schemas/nullable-simple-user"
3862
- },
3863
- "forks": { "type": "integer" },
3864
- "permissions": {
3865
- "type": "object",
3866
- "properties": {
3867
- "admin": { "type": "boolean" },
3868
- "pull": { "type": "boolean" },
3869
- "triage": { "type": "boolean" },
3870
- "push": { "type": "boolean" },
3871
- "maintain": { "type": "boolean" }
3872
- },
3873
- "required": ["admin", "pull", "push"]
3874
- },
3875
- "owner": { "$ref": "#/components/schemas/simple-user" },
3876
- "private": {
3877
- "description": "Whether the repository is private or public.",
3878
- "default": false,
3879
- "type": "boolean"
3880
- },
3881
- "html_url": {
3882
- "type": "string",
3883
- "format": "uri",
3884
- "example": "https://github.com/octocat/Hello-World"
3885
- },
3886
- "description": {
3887
- "type": "string",
3888
- "example": "This your first repo!",
3889
- "nullable": true
3890
- },
3891
- "fork": { "type": "boolean" },
3892
- "url": {
3893
- "type": "string",
3894
- "format": "uri",
3895
- "example": "https://api.github.com/repos/octocat/Hello-World"
3896
- },
3897
- "archive_url": {
3898
- "type": "string",
3899
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
3900
- },
3901
- "assignees_url": {
3902
- "type": "string",
3903
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
3904
- },
3905
- "blobs_url": {
3906
- "type": "string",
3907
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
3908
- },
3909
- "branches_url": {
3910
- "type": "string",
3911
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
3912
- },
3913
- "collaborators_url": {
3914
- "type": "string",
3915
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
3916
- },
3917
- "comments_url": {
3918
- "type": "string",
3919
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
3920
- },
3921
- "commits_url": {
3922
- "type": "string",
3923
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
3924
- },
3925
- "compare_url": {
3926
- "type": "string",
3927
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
3928
- },
3929
- "contents_url": {
3930
- "type": "string",
3931
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
3932
- },
3933
- "contributors_url": {
3934
- "type": "string",
3935
- "format": "uri",
3936
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
3937
- },
3938
- "deployments_url": {
3939
- "type": "string",
3940
- "format": "uri",
3941
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
3942
- },
3943
- "downloads_url": {
3944
- "type": "string",
3945
- "format": "uri",
3946
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
3947
- },
3948
- "events_url": {
3949
- "type": "string",
3950
- "format": "uri",
3951
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
3952
- },
3953
- "forks_url": {
3954
- "type": "string",
3955
- "format": "uri",
3956
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
3957
- },
3958
- "git_commits_url": {
3959
- "type": "string",
3960
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
3961
- },
3962
- "git_refs_url": {
3963
- "type": "string",
3964
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
3965
- },
3966
- "git_tags_url": {
3967
- "type": "string",
3968
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
3969
- },
3970
- "git_url": {
3971
- "type": "string",
3972
- "example": "git:github.com/octocat/Hello-World.git"
3973
- },
3974
- "issue_comment_url": {
3975
- "type": "string",
3976
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
3977
- },
3978
- "issue_events_url": {
3979
- "type": "string",
3980
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
3981
- },
3982
- "issues_url": {
3983
- "type": "string",
3984
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
3985
- },
3986
- "keys_url": {
3987
- "type": "string",
3988
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
3989
- },
3990
- "labels_url": {
3991
- "type": "string",
3992
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
3993
- },
3994
- "languages_url": {
3995
- "type": "string",
3996
- "format": "uri",
3997
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
3998
- },
3999
- "merges_url": {
4000
- "type": "string",
4001
- "format": "uri",
4002
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
4003
- },
4004
- "milestones_url": {
4005
- "type": "string",
4006
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
4007
- },
4008
- "notifications_url": {
4009
- "type": "string",
4010
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
4011
- },
4012
- "pulls_url": {
4013
- "type": "string",
4014
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
4015
- },
4016
- "releases_url": {
4017
- "type": "string",
4018
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
4019
- },
4020
- "ssh_url": {
4021
- "type": "string",
4022
- "example": "git@github.com:octocat/Hello-World.git"
4023
- },
4024
- "stargazers_url": {
4025
- "type": "string",
4026
- "format": "uri",
4027
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
4028
- },
4029
- "statuses_url": {
4030
- "type": "string",
4031
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
4032
- },
4033
- "subscribers_url": {
4034
- "type": "string",
4035
- "format": "uri",
4036
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
4037
- },
4038
- "subscription_url": {
4039
- "type": "string",
4040
- "format": "uri",
4041
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
4042
- },
4043
- "tags_url": {
4044
- "type": "string",
4045
- "format": "uri",
4046
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
4047
- },
4048
- "teams_url": {
4049
- "type": "string",
4050
- "format": "uri",
4051
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
4052
- },
4053
- "trees_url": {
4054
- "type": "string",
4055
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
4056
- },
4057
- "clone_url": {
4058
- "type": "string",
4059
- "example": "https://github.com/octocat/Hello-World.git"
4060
- },
4061
- "mirror_url": {
4062
- "type": "string",
4063
- "format": "uri",
4064
- "example": "git:git.example.com/octocat/Hello-World",
4065
- "nullable": true
4066
- },
4067
- "hooks_url": {
4068
- "type": "string",
4069
- "format": "uri",
4070
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
4071
- },
4072
- "svn_url": {
4073
- "type": "string",
4074
- "format": "uri",
4075
- "example": "https://svn.github.com/octocat/Hello-World"
4076
- },
4077
- "homepage": {
4078
- "type": "string",
4079
- "format": "uri",
4080
- "example": "https://github.com",
4081
- "nullable": true
4082
- },
4083
- "language": { "type": "string", "nullable": true },
4084
- "forks_count": { "type": "integer", "example": 9 },
4085
- "stargazers_count": { "type": "integer", "example": 80 },
4086
- "watchers_count": { "type": "integer", "example": 80 },
4087
- "size": { "type": "integer", "example": 108 },
4088
- "default_branch": {
4089
- "description": "The default branch of the repository.",
4090
- "type": "string",
4091
- "example": "master"
4092
- },
4093
- "open_issues_count": { "type": "integer", "example": 0 },
4094
- "is_template": {
4095
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
4096
- "default": false,
4097
- "type": "boolean",
4098
- "example": true
4099
- },
4100
- "topics": { "type": "array", "items": { "type": "string" } },
4101
- "has_issues": {
4102
- "description": "Whether issues are enabled.",
4103
- "default": true,
4104
- "type": "boolean",
4105
- "example": true
4106
- },
4107
- "has_projects": {
4108
- "description": "Whether projects are enabled.",
4109
- "default": true,
4110
- "type": "boolean",
4111
- "example": true
4112
- },
4113
- "has_wiki": {
4114
- "description": "Whether the wiki is enabled.",
4115
- "default": true,
4116
- "type": "boolean",
4117
- "example": true
4118
- },
4119
- "has_pages": { "type": "boolean" },
4120
- "has_downloads": {
4121
- "description": "Whether downloads are enabled.",
4122
- "default": true,
4123
- "type": "boolean",
4124
- "example": true
4125
- },
4126
- "archived": {
4127
- "description": "Whether the repository is archived.",
4128
- "default": false,
4129
- "type": "boolean"
4130
- },
4131
- "disabled": {
4132
- "type": "boolean",
4133
- "description": "Returns whether or not this repository disabled."
4134
- },
4135
- "visibility": {
4136
- "description": "The repository visibility: public, private, or internal.",
4137
- "default": "public",
4138
- "type": "string"
4139
- },
4140
- "pushed_at": {
4141
- "type": "string",
4142
- "format": "date-time",
4143
- "example": "2011-01-26T19:06:43Z",
4144
- "nullable": true
4145
- },
4146
- "created_at": {
4147
- "type": "string",
4148
- "format": "date-time",
4149
- "example": "2011-01-26T19:01:12Z",
4150
- "nullable": true
4151
- },
4152
- "updated_at": {
4153
- "type": "string",
4154
- "format": "date-time",
4155
- "example": "2011-01-26T19:14:43Z",
4156
- "nullable": true
4157
- },
4158
- "allow_rebase_merge": {
4159
- "description": "Whether to allow rebase merges for pull requests.",
4160
- "default": true,
4161
- "type": "boolean",
4162
- "example": true
4163
- },
4164
- "template_repository": {
4165
- "nullable": true,
4166
- "type": "object",
4167
- "properties": {
4168
- "id": { "type": "integer" },
4169
- "node_id": { "type": "string" },
4170
- "name": { "type": "string" },
4171
- "full_name": { "type": "string" },
4172
- "owner": {
4173
- "type": "object",
4174
- "properties": {
4175
- "login": { "type": "string" },
4176
- "id": { "type": "integer" },
4177
- "node_id": { "type": "string" },
4178
- "avatar_url": { "type": "string" },
4179
- "gravatar_id": { "type": "string" },
4180
- "url": { "type": "string" },
4181
- "html_url": { "type": "string" },
4182
- "followers_url": { "type": "string" },
4183
- "following_url": { "type": "string" },
4184
- "gists_url": { "type": "string" },
4185
- "starred_url": { "type": "string" },
4186
- "subscriptions_url": { "type": "string" },
4187
- "organizations_url": { "type": "string" },
4188
- "repos_url": { "type": "string" },
4189
- "events_url": { "type": "string" },
4190
- "received_events_url": { "type": "string" },
4191
- "type": { "type": "string" },
4192
- "site_admin": { "type": "boolean" }
4193
- }
4194
- },
4195
- "private": { "type": "boolean" },
4196
- "html_url": { "type": "string" },
4197
- "description": { "type": "string" },
4198
- "fork": { "type": "boolean" },
4199
- "url": { "type": "string" },
4200
- "archive_url": { "type": "string" },
4201
- "assignees_url": { "type": "string" },
4202
- "blobs_url": { "type": "string" },
4203
- "branches_url": { "type": "string" },
4204
- "collaborators_url": { "type": "string" },
4205
- "comments_url": { "type": "string" },
4206
- "commits_url": { "type": "string" },
4207
- "compare_url": { "type": "string" },
4208
- "contents_url": { "type": "string" },
4209
- "contributors_url": { "type": "string" },
4210
- "deployments_url": { "type": "string" },
4211
- "downloads_url": { "type": "string" },
4212
- "events_url": { "type": "string" },
4213
- "forks_url": { "type": "string" },
4214
- "git_commits_url": { "type": "string" },
4215
- "git_refs_url": { "type": "string" },
4216
- "git_tags_url": { "type": "string" },
4217
- "git_url": { "type": "string" },
4218
- "issue_comment_url": { "type": "string" },
4219
- "issue_events_url": { "type": "string" },
4220
- "issues_url": { "type": "string" },
4221
- "keys_url": { "type": "string" },
4222
- "labels_url": { "type": "string" },
4223
- "languages_url": { "type": "string" },
4224
- "merges_url": { "type": "string" },
4225
- "milestones_url": { "type": "string" },
4226
- "notifications_url": { "type": "string" },
4227
- "pulls_url": { "type": "string" },
4228
- "releases_url": { "type": "string" },
4229
- "ssh_url": { "type": "string" },
4230
- "stargazers_url": { "type": "string" },
4231
- "statuses_url": { "type": "string" },
4232
- "subscribers_url": { "type": "string" },
4233
- "subscription_url": { "type": "string" },
4234
- "tags_url": { "type": "string" },
4235
- "teams_url": { "type": "string" },
4236
- "trees_url": { "type": "string" },
4237
- "clone_url": { "type": "string" },
4238
- "mirror_url": { "type": "string" },
4239
- "hooks_url": { "type": "string" },
4240
- "svn_url": { "type": "string" },
4241
- "homepage": { "type": "string" },
4242
- "language": { "type": "string" },
4243
- "forks_count": { "type": "integer" },
4244
- "stargazers_count": { "type": "integer" },
4245
- "watchers_count": { "type": "integer" },
4246
- "size": { "type": "integer" },
4247
- "default_branch": { "type": "string" },
4248
- "open_issues_count": { "type": "integer" },
4249
- "is_template": { "type": "boolean" },
4250
- "topics": { "type": "array", "items": { "type": "string" } },
4251
- "has_issues": { "type": "boolean" },
4252
- "has_projects": { "type": "boolean" },
4253
- "has_wiki": { "type": "boolean" },
4254
- "has_pages": { "type": "boolean" },
4255
- "has_downloads": { "type": "boolean" },
4256
- "archived": { "type": "boolean" },
4257
- "disabled": { "type": "boolean" },
4258
- "visibility": { "type": "string" },
4259
- "pushed_at": { "type": "string" },
4260
- "created_at": { "type": "string" },
4261
- "updated_at": { "type": "string" },
4262
- "permissions": {
4263
- "type": "object",
4264
- "properties": {
4265
- "admin": { "type": "boolean" },
4266
- "maintain": { "type": "boolean" },
4267
- "push": { "type": "boolean" },
4268
- "triage": { "type": "boolean" },
4269
- "pull": { "type": "boolean" }
4270
- }
4271
- },
4272
- "allow_rebase_merge": { "type": "boolean" },
4273
- "temp_clone_token": { "type": "string" },
4274
- "allow_squash_merge": { "type": "boolean" },
4275
- "allow_auto_merge": { "type": "boolean" },
4276
- "delete_branch_on_merge": { "type": "boolean" },
4277
- "allow_merge_commit": { "type": "boolean" },
4278
- "subscribers_count": { "type": "integer" },
4279
- "network_count": { "type": "integer" }
4280
- }
4281
- },
4282
- "temp_clone_token": { "type": "string" },
4283
- "allow_squash_merge": {
4284
- "description": "Whether to allow squash merges for pull requests.",
4285
- "default": true,
4286
- "type": "boolean",
4287
- "example": true
4288
- },
4289
- "allow_auto_merge": {
4290
- "description": "Whether to allow Auto-merge to be used on pull requests.",
4291
- "default": false,
4292
- "type": "boolean",
4293
- "example": false
4294
- },
4295
- "delete_branch_on_merge": {
4296
- "description": "Whether to delete head branches when pull requests are merged",
4297
- "default": false,
4298
- "type": "boolean",
4299
- "example": false
4300
- },
4301
- "allow_merge_commit": {
4302
- "description": "Whether to allow merge commits for pull requests.",
4303
- "default": true,
4304
- "type": "boolean",
4305
- "example": true
4306
- },
4307
- "allow_forking": {
4308
- "description": "Whether to allow forking this repo",
4309
- "type": "boolean"
4310
- },
4311
- "subscribers_count": { "type": "integer" },
4312
- "network_count": { "type": "integer" },
4313
- "open_issues": { "type": "integer" },
4314
- "watchers": { "type": "integer" },
4315
- "master_branch": { "type": "string" },
4316
- "starred_at": {
4317
- "type": "string",
4318
- "example": "\"2020-07-09T00:17:42Z\""
4319
- }
4320
- },
4321
- "required": [
4322
- "archive_url",
4323
- "assignees_url",
4324
- "blobs_url",
4325
- "branches_url",
4326
- "collaborators_url",
4327
- "comments_url",
4328
- "commits_url",
4329
- "compare_url",
4330
- "contents_url",
4331
- "contributors_url",
4332
- "deployments_url",
4333
- "description",
4334
- "downloads_url",
4335
- "events_url",
4336
- "fork",
4337
- "forks_url",
4338
- "full_name",
4339
- "git_commits_url",
4340
- "git_refs_url",
4341
- "git_tags_url",
4342
- "hooks_url",
4343
- "html_url",
4344
- "id",
4345
- "node_id",
4346
- "issue_comment_url",
4347
- "issue_events_url",
4348
- "issues_url",
4349
- "keys_url",
4350
- "labels_url",
4351
- "languages_url",
4352
- "merges_url",
4353
- "milestones_url",
4354
- "name",
4355
- "notifications_url",
4356
- "owner",
4357
- "private",
4358
- "pulls_url",
4359
- "releases_url",
4360
- "stargazers_url",
4361
- "statuses_url",
4362
- "subscribers_url",
4363
- "subscription_url",
4364
- "tags_url",
4365
- "teams_url",
4366
- "trees_url",
4367
- "url",
4368
- "clone_url",
4369
- "default_branch",
4370
- "forks",
4371
- "forks_count",
4372
- "git_url",
4373
- "has_downloads",
4374
- "has_issues",
4375
- "has_projects",
4376
- "has_wiki",
4377
- "has_pages",
4378
- "homepage",
4379
- "language",
4380
- "archived",
4381
- "disabled",
4382
- "mirror_url",
4383
- "open_issues",
4384
- "open_issues_count",
4385
- "license",
4386
- "pushed_at",
4387
- "size",
4388
- "ssh_url",
4389
- "stargazers_count",
4390
- "svn_url",
4391
- "watchers",
4392
- "watchers_count",
4393
- "created_at",
4394
- "updated_at"
4395
- ],
4396
- "nullable": true
4397
- },
4398
- "nullable-license-simple": {
4399
- "title": "License Simple",
4400
- "description": "License Simple",
4401
- "type": "object",
4402
- "properties": {
4403
- "key": { "type": "string", "example": "mit" },
4404
- "name": { "type": "string", "example": "MIT License" },
4405
- "url": {
4406
- "type": "string",
4407
- "nullable": true,
4408
- "format": "uri",
4409
- "example": "https://api.github.com/licenses/mit"
4410
- },
4411
- "spdx_id": { "type": "string", "nullable": true, "example": "MIT" },
4412
- "node_id": { "type": "string", "example": "MDc6TGljZW5zZW1pdA==" },
4413
- "html_url": { "type": "string", "format": "uri" }
4414
- },
4415
- "required": ["key", "name", "url", "spdx_id", "node_id"],
4416
- "nullable": true
4417
- },
4418
- "repository": {
4419
- "title": "Repository",
4420
- "description": "A git repository",
4421
- "type": "object",
4422
- "properties": {
4423
- "id": {
4424
- "description": "Unique identifier of the repository",
4425
- "example": 42,
4426
- "type": "integer"
4427
- },
4428
- "node_id": {
4429
- "type": "string",
4430
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
4431
- },
4432
- "name": {
4433
- "description": "The name of the repository.",
4434
- "type": "string",
4435
- "example": "Team Environment"
4436
- },
4437
- "full_name": { "type": "string", "example": "octocat/Hello-World" },
4438
- "license": { "$ref": "#/components/schemas/nullable-license-simple" },
4439
- "organization": {
4440
- "$ref": "#/components/schemas/nullable-simple-user"
4441
- },
4442
- "forks": { "type": "integer" },
4443
- "permissions": {
4444
- "type": "object",
4445
- "properties": {
4446
- "admin": { "type": "boolean" },
4447
- "pull": { "type": "boolean" },
4448
- "triage": { "type": "boolean" },
4449
- "push": { "type": "boolean" },
4450
- "maintain": { "type": "boolean" }
4451
- },
4452
- "required": ["admin", "pull", "push"]
4453
- },
4454
- "owner": { "$ref": "#/components/schemas/simple-user" },
4455
- "private": {
4456
- "description": "Whether the repository is private or public.",
4457
- "default": false,
4458
- "type": "boolean"
4459
- },
4460
- "html_url": {
4461
- "type": "string",
4462
- "format": "uri",
4463
- "example": "https://github.com/octocat/Hello-World"
4464
- },
4465
- "description": {
4466
- "type": "string",
4467
- "example": "This your first repo!",
4468
- "nullable": true
4469
- },
4470
- "fork": { "type": "boolean" },
4471
- "url": {
4472
- "type": "string",
4473
- "format": "uri",
4474
- "example": "https://api.github.com/repos/octocat/Hello-World"
4475
- },
4476
- "archive_url": {
4477
- "type": "string",
4478
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
4479
- },
4480
- "assignees_url": {
4481
- "type": "string",
4482
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
4483
- },
4484
- "blobs_url": {
4485
- "type": "string",
4486
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
4487
- },
4488
- "branches_url": {
4489
- "type": "string",
4490
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
4491
- },
4492
- "collaborators_url": {
4493
- "type": "string",
4494
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
4495
- },
4496
- "comments_url": {
4497
- "type": "string",
4498
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
4499
- },
4500
- "commits_url": {
4501
- "type": "string",
4502
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
4503
- },
4504
- "compare_url": {
4505
- "type": "string",
4506
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
4507
- },
4508
- "contents_url": {
4509
- "type": "string",
4510
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
4511
- },
4512
- "contributors_url": {
4513
- "type": "string",
4514
- "format": "uri",
4515
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
4516
- },
4517
- "deployments_url": {
4518
- "type": "string",
4519
- "format": "uri",
4520
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
4521
- },
4522
- "downloads_url": {
4523
- "type": "string",
4524
- "format": "uri",
4525
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
4526
- },
4527
- "events_url": {
4528
- "type": "string",
4529
- "format": "uri",
4530
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
4531
- },
4532
- "forks_url": {
4533
- "type": "string",
4534
- "format": "uri",
4535
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
4536
- },
4537
- "git_commits_url": {
4538
- "type": "string",
4539
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
4540
- },
4541
- "git_refs_url": {
4542
- "type": "string",
4543
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
4544
- },
4545
- "git_tags_url": {
4546
- "type": "string",
4547
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
4548
- },
4549
- "git_url": {
4550
- "type": "string",
4551
- "example": "git:github.com/octocat/Hello-World.git"
4552
- },
4553
- "issue_comment_url": {
4554
- "type": "string",
4555
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
4556
- },
4557
- "issue_events_url": {
4558
- "type": "string",
4559
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
4560
- },
4561
- "issues_url": {
4562
- "type": "string",
4563
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
4564
- },
4565
- "keys_url": {
4566
- "type": "string",
4567
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
4568
- },
4569
- "labels_url": {
4570
- "type": "string",
4571
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
4572
- },
4573
- "languages_url": {
4574
- "type": "string",
4575
- "format": "uri",
4576
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
4577
- },
4578
- "merges_url": {
4579
- "type": "string",
4580
- "format": "uri",
4581
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
4582
- },
4583
- "milestones_url": {
4584
- "type": "string",
4585
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
4586
- },
4587
- "notifications_url": {
4588
- "type": "string",
4589
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
4590
- },
4591
- "pulls_url": {
4592
- "type": "string",
4593
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
4594
- },
4595
- "releases_url": {
4596
- "type": "string",
4597
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
4598
- },
4599
- "ssh_url": {
4600
- "type": "string",
4601
- "example": "git@github.com:octocat/Hello-World.git"
4602
- },
4603
- "stargazers_url": {
2881
+ "description": "Simple User",
2882
+ "type": "object",
2883
+ "properties": {
2884
+ "name": { "nullable": true, "type": "string" },
2885
+ "email": { "nullable": true, "type": "string" },
2886
+ "login": { "type": "string", "example": "octocat" },
2887
+ "id": { "type": "integer", "example": 1 },
2888
+ "node_id": { "type": "string", "example": "MDQ6VXNlcjE=" },
2889
+ "avatar_url": {
4604
2890
  "type": "string",
4605
2891
  "format": "uri",
4606
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
4607
- },
4608
- "statuses_url": {
4609
- "type": "string",
4610
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
2892
+ "example": "https://github.com/images/error/octocat_happy.gif"
4611
2893
  },
4612
- "subscribers_url": {
2894
+ "gravatar_id": {
4613
2895
  "type": "string",
4614
- "format": "uri",
4615
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
2896
+ "example": "41d064eb2195891e12d0413f63227ea7",
2897
+ "nullable": true
4616
2898
  },
4617
- "subscription_url": {
2899
+ "url": {
4618
2900
  "type": "string",
4619
2901
  "format": "uri",
4620
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
2902
+ "example": "https://api.github.com/users/octocat"
4621
2903
  },
4622
- "tags_url": {
2904
+ "html_url": {
4623
2905
  "type": "string",
4624
2906
  "format": "uri",
4625
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
2907
+ "example": "https://github.com/octocat"
4626
2908
  },
4627
- "teams_url": {
2909
+ "followers_url": {
4628
2910
  "type": "string",
4629
2911
  "format": "uri",
4630
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
2912
+ "example": "https://api.github.com/users/octocat/followers"
4631
2913
  },
4632
- "trees_url": {
2914
+ "following_url": {
4633
2915
  "type": "string",
4634
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
2916
+ "example": "https://api.github.com/users/octocat/following{/other_user}"
4635
2917
  },
4636
- "clone_url": {
2918
+ "gists_url": {
4637
2919
  "type": "string",
4638
- "example": "https://github.com/octocat/Hello-World.git"
2920
+ "example": "https://api.github.com/users/octocat/gists{/gist_id}"
4639
2921
  },
4640
- "mirror_url": {
2922
+ "starred_url": {
4641
2923
  "type": "string",
4642
- "format": "uri",
4643
- "example": "git:git.example.com/octocat/Hello-World",
4644
- "nullable": true
2924
+ "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
4645
2925
  },
4646
- "hooks_url": {
2926
+ "subscriptions_url": {
4647
2927
  "type": "string",
4648
2928
  "format": "uri",
4649
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
2929
+ "example": "https://api.github.com/users/octocat/subscriptions"
4650
2930
  },
4651
- "svn_url": {
2931
+ "organizations_url": {
4652
2932
  "type": "string",
4653
2933
  "format": "uri",
4654
- "example": "https://svn.github.com/octocat/Hello-World"
2934
+ "example": "https://api.github.com/users/octocat/orgs"
4655
2935
  },
4656
- "homepage": {
2936
+ "repos_url": {
4657
2937
  "type": "string",
4658
2938
  "format": "uri",
4659
- "example": "https://github.com",
4660
- "nullable": true
4661
- },
4662
- "language": { "type": "string", "nullable": true },
4663
- "forks_count": { "type": "integer", "example": 9 },
4664
- "stargazers_count": { "type": "integer", "example": 80 },
4665
- "watchers_count": { "type": "integer", "example": 80 },
4666
- "size": { "type": "integer", "example": 108 },
4667
- "default_branch": {
4668
- "description": "The default branch of the repository.",
4669
- "type": "string",
4670
- "example": "master"
4671
- },
4672
- "open_issues_count": { "type": "integer", "example": 0 },
4673
- "is_template": {
4674
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
4675
- "default": false,
4676
- "type": "boolean",
4677
- "example": true
4678
- },
4679
- "topics": { "type": "array", "items": { "type": "string" } },
4680
- "has_issues": {
4681
- "description": "Whether issues are enabled.",
4682
- "default": true,
4683
- "type": "boolean",
4684
- "example": true
4685
- },
4686
- "has_projects": {
4687
- "description": "Whether projects are enabled.",
4688
- "default": true,
4689
- "type": "boolean",
4690
- "example": true
4691
- },
4692
- "has_wiki": {
4693
- "description": "Whether the wiki is enabled.",
4694
- "default": true,
4695
- "type": "boolean",
4696
- "example": true
4697
- },
4698
- "has_pages": { "type": "boolean" },
4699
- "has_downloads": {
4700
- "description": "Whether downloads are enabled.",
4701
- "default": true,
4702
- "type": "boolean",
4703
- "example": true
4704
- },
4705
- "archived": {
4706
- "description": "Whether the repository is archived.",
4707
- "default": false,
4708
- "type": "boolean"
4709
- },
4710
- "disabled": {
4711
- "type": "boolean",
4712
- "description": "Returns whether or not this repository disabled."
4713
- },
4714
- "visibility": {
4715
- "description": "The repository visibility: public, private, or internal.",
4716
- "default": "public",
4717
- "type": "string"
4718
- },
4719
- "pushed_at": {
4720
- "type": "string",
4721
- "format": "date-time",
4722
- "example": "2011-01-26T19:06:43Z",
4723
- "nullable": true
2939
+ "example": "https://api.github.com/users/octocat/repos"
4724
2940
  },
4725
- "created_at": {
2941
+ "events_url": {
4726
2942
  "type": "string",
4727
- "format": "date-time",
4728
- "example": "2011-01-26T19:01:12Z",
4729
- "nullable": true
2943
+ "example": "https://api.github.com/users/octocat/events{/privacy}"
4730
2944
  },
4731
- "updated_at": {
2945
+ "received_events_url": {
4732
2946
  "type": "string",
4733
- "format": "date-time",
4734
- "example": "2011-01-26T19:14:43Z",
4735
- "nullable": true
4736
- },
4737
- "allow_rebase_merge": {
4738
- "description": "Whether to allow rebase merges for pull requests.",
4739
- "default": true,
4740
- "type": "boolean",
4741
- "example": true
4742
- },
4743
- "template_repository": {
4744
- "nullable": true,
4745
- "type": "object",
4746
- "properties": {
4747
- "id": { "type": "integer" },
4748
- "node_id": { "type": "string" },
4749
- "name": { "type": "string" },
4750
- "full_name": { "type": "string" },
4751
- "owner": {
4752
- "type": "object",
4753
- "properties": {
4754
- "login": { "type": "string" },
4755
- "id": { "type": "integer" },
4756
- "node_id": { "type": "string" },
4757
- "avatar_url": { "type": "string" },
4758
- "gravatar_id": { "type": "string" },
4759
- "url": { "type": "string" },
4760
- "html_url": { "type": "string" },
4761
- "followers_url": { "type": "string" },
4762
- "following_url": { "type": "string" },
4763
- "gists_url": { "type": "string" },
4764
- "starred_url": { "type": "string" },
4765
- "subscriptions_url": { "type": "string" },
4766
- "organizations_url": { "type": "string" },
4767
- "repos_url": { "type": "string" },
4768
- "events_url": { "type": "string" },
4769
- "received_events_url": { "type": "string" },
4770
- "type": { "type": "string" },
4771
- "site_admin": { "type": "boolean" }
4772
- }
4773
- },
4774
- "private": { "type": "boolean" },
4775
- "html_url": { "type": "string" },
4776
- "description": { "type": "string" },
4777
- "fork": { "type": "boolean" },
4778
- "url": { "type": "string" },
4779
- "archive_url": { "type": "string" },
4780
- "assignees_url": { "type": "string" },
4781
- "blobs_url": { "type": "string" },
4782
- "branches_url": { "type": "string" },
4783
- "collaborators_url": { "type": "string" },
4784
- "comments_url": { "type": "string" },
4785
- "commits_url": { "type": "string" },
4786
- "compare_url": { "type": "string" },
4787
- "contents_url": { "type": "string" },
4788
- "contributors_url": { "type": "string" },
4789
- "deployments_url": { "type": "string" },
4790
- "downloads_url": { "type": "string" },
4791
- "events_url": { "type": "string" },
4792
- "forks_url": { "type": "string" },
4793
- "git_commits_url": { "type": "string" },
4794
- "git_refs_url": { "type": "string" },
4795
- "git_tags_url": { "type": "string" },
4796
- "git_url": { "type": "string" },
4797
- "issue_comment_url": { "type": "string" },
4798
- "issue_events_url": { "type": "string" },
4799
- "issues_url": { "type": "string" },
4800
- "keys_url": { "type": "string" },
4801
- "labels_url": { "type": "string" },
4802
- "languages_url": { "type": "string" },
4803
- "merges_url": { "type": "string" },
4804
- "milestones_url": { "type": "string" },
4805
- "notifications_url": { "type": "string" },
4806
- "pulls_url": { "type": "string" },
4807
- "releases_url": { "type": "string" },
4808
- "ssh_url": { "type": "string" },
4809
- "stargazers_url": { "type": "string" },
4810
- "statuses_url": { "type": "string" },
4811
- "subscribers_url": { "type": "string" },
4812
- "subscription_url": { "type": "string" },
4813
- "tags_url": { "type": "string" },
4814
- "teams_url": { "type": "string" },
4815
- "trees_url": { "type": "string" },
4816
- "clone_url": { "type": "string" },
4817
- "mirror_url": { "type": "string" },
4818
- "hooks_url": { "type": "string" },
4819
- "svn_url": { "type": "string" },
4820
- "homepage": { "type": "string" },
4821
- "language": { "type": "string" },
4822
- "forks_count": { "type": "integer" },
4823
- "stargazers_count": { "type": "integer" },
4824
- "watchers_count": { "type": "integer" },
4825
- "size": { "type": "integer" },
4826
- "default_branch": { "type": "string" },
4827
- "open_issues_count": { "type": "integer" },
4828
- "is_template": { "type": "boolean" },
4829
- "topics": { "type": "array", "items": { "type": "string" } },
4830
- "has_issues": { "type": "boolean" },
4831
- "has_projects": { "type": "boolean" },
4832
- "has_wiki": { "type": "boolean" },
4833
- "has_pages": { "type": "boolean" },
4834
- "has_downloads": { "type": "boolean" },
4835
- "archived": { "type": "boolean" },
4836
- "disabled": { "type": "boolean" },
4837
- "visibility": { "type": "string" },
4838
- "pushed_at": { "type": "string" },
4839
- "created_at": { "type": "string" },
4840
- "updated_at": { "type": "string" },
4841
- "permissions": {
4842
- "type": "object",
4843
- "properties": {
4844
- "admin": { "type": "boolean" },
4845
- "maintain": { "type": "boolean" },
4846
- "push": { "type": "boolean" },
4847
- "triage": { "type": "boolean" },
4848
- "pull": { "type": "boolean" }
4849
- }
4850
- },
4851
- "allow_rebase_merge": { "type": "boolean" },
4852
- "temp_clone_token": { "type": "string" },
4853
- "allow_squash_merge": { "type": "boolean" },
4854
- "allow_auto_merge": { "type": "boolean" },
4855
- "delete_branch_on_merge": { "type": "boolean" },
4856
- "allow_merge_commit": { "type": "boolean" },
4857
- "subscribers_count": { "type": "integer" },
4858
- "network_count": { "type": "integer" }
4859
- }
4860
- },
4861
- "temp_clone_token": { "type": "string" },
4862
- "allow_squash_merge": {
4863
- "description": "Whether to allow squash merges for pull requests.",
4864
- "default": true,
4865
- "type": "boolean",
4866
- "example": true
4867
- },
4868
- "allow_auto_merge": {
4869
- "description": "Whether to allow Auto-merge to be used on pull requests.",
4870
- "default": false,
4871
- "type": "boolean",
4872
- "example": false
4873
- },
4874
- "delete_branch_on_merge": {
4875
- "description": "Whether to delete head branches when pull requests are merged",
4876
- "default": false,
4877
- "type": "boolean",
4878
- "example": false
4879
- },
4880
- "allow_merge_commit": {
4881
- "description": "Whether to allow merge commits for pull requests.",
4882
- "default": true,
4883
- "type": "boolean",
4884
- "example": true
4885
- },
4886
- "allow_forking": {
4887
- "description": "Whether to allow forking this repo",
4888
- "type": "boolean"
2947
+ "format": "uri",
2948
+ "example": "https://api.github.com/users/octocat/received_events"
4889
2949
  },
4890
- "subscribers_count": { "type": "integer" },
4891
- "network_count": { "type": "integer" },
4892
- "open_issues": { "type": "integer" },
4893
- "watchers": { "type": "integer" },
4894
- "master_branch": { "type": "string" },
2950
+ "type": { "type": "string", "example": "User" },
2951
+ "site_admin": { "type": "boolean" },
4895
2952
  "starred_at": {
4896
2953
  "type": "string",
4897
- "example": "\"2020-07-09T00:17:42Z\""
2954
+ "example": "\"2020-07-09T00:17:55Z\""
4898
2955
  }
4899
2956
  },
4900
2957
  "required": [
4901
- "archive_url",
4902
- "assignees_url",
4903
- "blobs_url",
4904
- "branches_url",
4905
- "collaborators_url",
4906
- "comments_url",
4907
- "commits_url",
4908
- "compare_url",
4909
- "contents_url",
4910
- "contributors_url",
4911
- "deployments_url",
4912
- "description",
4913
- "downloads_url",
2958
+ "avatar_url",
4914
2959
  "events_url",
4915
- "fork",
4916
- "forks_url",
4917
- "full_name",
4918
- "git_commits_url",
4919
- "git_refs_url",
4920
- "git_tags_url",
4921
- "hooks_url",
2960
+ "followers_url",
2961
+ "following_url",
2962
+ "gists_url",
2963
+ "gravatar_id",
4922
2964
  "html_url",
4923
2965
  "id",
4924
2966
  "node_id",
4925
- "issue_comment_url",
4926
- "issue_events_url",
4927
- "issues_url",
4928
- "keys_url",
4929
- "labels_url",
4930
- "languages_url",
4931
- "merges_url",
4932
- "milestones_url",
4933
- "name",
4934
- "notifications_url",
4935
- "owner",
4936
- "private",
4937
- "pulls_url",
4938
- "releases_url",
4939
- "stargazers_url",
4940
- "statuses_url",
4941
- "subscribers_url",
4942
- "subscription_url",
4943
- "tags_url",
4944
- "teams_url",
4945
- "trees_url",
4946
- "url",
4947
- "clone_url",
4948
- "default_branch",
4949
- "forks",
4950
- "forks_count",
4951
- "git_url",
4952
- "has_downloads",
4953
- "has_issues",
4954
- "has_projects",
4955
- "has_wiki",
4956
- "has_pages",
4957
- "homepage",
4958
- "language",
4959
- "archived",
4960
- "disabled",
4961
- "mirror_url",
4962
- "open_issues",
4963
- "open_issues_count",
4964
- "license",
4965
- "pushed_at",
4966
- "size",
4967
- "ssh_url",
4968
- "stargazers_count",
4969
- "svn_url",
4970
- "watchers",
4971
- "watchers_count",
4972
- "created_at",
4973
- "updated_at"
2967
+ "login",
2968
+ "organizations_url",
2969
+ "received_events_url",
2970
+ "repos_url",
2971
+ "site_admin",
2972
+ "starred_url",
2973
+ "subscriptions_url",
2974
+ "type",
2975
+ "url"
4974
2976
  ]
4975
2977
  },
4976
- "code-of-conduct-simple": {
4977
- "title": "Code Of Conduct Simple",
4978
- "description": "Code of Conduct Simple",
4979
- "type": "object",
4980
- "properties": {
4981
- "url": {
4982
- "type": "string",
4983
- "format": "uri",
4984
- "example": "https://api.github.com/repos/github/docs/community/code_of_conduct"
4985
- },
4986
- "key": { "type": "string", "example": "citizen_code_of_conduct" },
4987
- "name": { "type": "string", "example": "Citizen Code of Conduct" },
4988
- "html_url": {
4989
- "type": "string",
4990
- "nullable": true,
4991
- "format": "uri",
4992
- "example": "https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md"
4993
- }
4994
- },
4995
- "required": ["url", "key", "name", "html_url"]
4996
- },
4997
- "validation-error": {
4998
- "title": "Validation Error",
4999
- "description": "Validation Error",
2978
+ "basic-error": {
2979
+ "title": "Basic Error",
2980
+ "description": "Basic Error",
5000
2981
  "type": "object",
5001
- "required": ["message", "documentation_url"],
5002
2982
  "properties": {
5003
2983
  "message": { "type": "string" },
5004
2984
  "documentation_url": { "type": "string" },
5005
- "errors": {
5006
- "type": "array",
5007
- "items": {
5008
- "type": "object",
5009
- "required": ["code"],
5010
- "properties": {
5011
- "resource": { "type": "string" },
5012
- "field": { "type": "string" },
5013
- "message": { "type": "string" },
5014
- "code": { "type": "string" },
5015
- "index": { "type": "integer" },
5016
- "value": {
5017
- "oneOf": [
5018
- { "type": "string", "nullable": true },
5019
- { "type": "integer", "nullable": true },
5020
- {
5021
- "type": "array",
5022
- "nullable": true,
5023
- "items": { "type": "string" }
5024
- }
5025
- ]
5026
- }
5027
- }
5028
- }
5029
- }
2985
+ "url": { "type": "string" },
2986
+ "status": { "type": "string" }
5030
2987
  }
5031
2988
  },
5032
- "release-asset": {
5033
- "title": "Release Asset",
5034
- "description": "Data related to a release.",
5035
- "type": "object",
5036
- "properties": {
5037
- "url": { "type": "string", "format": "uri" },
5038
- "browser_download_url": { "type": "string", "format": "uri" },
5039
- "id": { "type": "integer" },
5040
- "node_id": { "type": "string" },
5041
- "name": {
5042
- "description": "The file name of the asset.",
5043
- "type": "string",
5044
- "example": "Team Environment"
5045
- },
5046
- "label": { "type": "string", "nullable": true },
5047
- "state": {
5048
- "description": "State of the release asset.",
5049
- "type": "string",
5050
- "enum": ["uploaded", "open"]
5051
- },
5052
- "content_type": { "type": "string" },
5053
- "size": { "type": "integer" },
5054
- "download_count": { "type": "integer" },
5055
- "created_at": { "type": "string", "format": "date-time" },
5056
- "updated_at": { "type": "string", "format": "date-time" },
5057
- "uploader": { "$ref": "#/components/schemas/nullable-simple-user" }
5058
- },
5059
- "required": [
5060
- "id",
5061
- "name",
5062
- "content_type",
5063
- "size",
5064
- "state",
5065
- "url",
5066
- "node_id",
5067
- "download_count",
5068
- "label",
5069
- "uploader",
5070
- "browser_download_url",
5071
- "created_at",
5072
- "updated_at"
5073
- ]
2989
+ "announcement-message": {
2990
+ "type": "string",
2991
+ "description": "The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see \"[Mastering markdown](https://guides.github.com/features/mastering-markdown/).\"",
2992
+ "example": "Very **important** announcement about _nothing_."
5074
2993
  },
5075
- "reaction-rollup": {
5076
- "title": "Reaction Rollup",
5077
- "type": "object",
5078
- "properties": {
5079
- "url": { "type": "string", "format": "uri" },
5080
- "total_count": { "type": "integer" },
5081
- "+1": { "type": "integer" },
5082
- "-1": { "type": "integer" },
5083
- "laugh": { "type": "integer" },
5084
- "confused": { "type": "integer" },
5085
- "heart": { "type": "integer" },
5086
- "hooray": { "type": "integer" },
5087
- "eyes": { "type": "integer" },
5088
- "rocket": { "type": "integer" }
5089
- },
5090
- "required": [
5091
- "url",
5092
- "total_count",
5093
- "+1",
5094
- "-1",
5095
- "laugh",
5096
- "confused",
5097
- "heart",
5098
- "hooray",
5099
- "eyes",
5100
- "rocket"
5101
- ]
2994
+ "announcement-expiration": {
2995
+ "type": "string",
2996
+ "format": "date-time",
2997
+ "description": "The time at which the announcement expires. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. To set an announcement that never expires, omit this parameter, set it to `null`, or set it to an empty string.",
2998
+ "example": "\"2021-01-01T00:00:00.000-07:00\"",
2999
+ "nullable": true
5102
3000
  }
5103
3001
  },
5104
3002
  "examples": {
@@ -5449,558 +3347,6 @@
5449
3347
  "total_pull_request_comments": 30
5450
3348
  }
5451
3349
  }
5452
- },
5453
- "full-repository": {
5454
- "value": {
5455
- "id": 1296269,
5456
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
5457
- "name": "Hello-World",
5458
- "full_name": "octocat/Hello-World",
5459
- "owner": {
5460
- "login": "octocat",
5461
- "id": 1,
5462
- "node_id": "MDQ6VXNlcjE=",
5463
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5464
- "gravatar_id": "",
5465
- "url": "https://api.github.com/users/octocat",
5466
- "html_url": "https://github.com/octocat",
5467
- "followers_url": "https://api.github.com/users/octocat/followers",
5468
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5469
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5470
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5471
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5472
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5473
- "repos_url": "https://api.github.com/users/octocat/repos",
5474
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5475
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5476
- "type": "User",
5477
- "site_admin": false
5478
- },
5479
- "private": false,
5480
- "html_url": "https://github.com/octocat/Hello-World",
5481
- "description": "This your first repo!",
5482
- "fork": false,
5483
- "url": "https://api.github.com/repos/octocat/Hello-World",
5484
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
5485
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
5486
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
5487
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
5488
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
5489
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
5490
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
5491
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
5492
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
5493
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
5494
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
5495
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
5496
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
5497
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
5498
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
5499
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
5500
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
5501
- "git_url": "git:github.com/octocat/Hello-World.git",
5502
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
5503
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
5504
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
5505
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
5506
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
5507
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
5508
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
5509
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
5510
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
5511
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
5512
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
5513
- "ssh_url": "git@github.com:octocat/Hello-World.git",
5514
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
5515
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
5516
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
5517
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
5518
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
5519
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
5520
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
5521
- "clone_url": "https://github.com/octocat/Hello-World.git",
5522
- "mirror_url": "git:git.example.com/octocat/Hello-World",
5523
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
5524
- "svn_url": "https://svn.github.com/octocat/Hello-World",
5525
- "homepage": "https://github.com",
5526
- "license": {
5527
- "key": "mit",
5528
- "name": "MIT License",
5529
- "url": "https://api.github.com/licenses/mit",
5530
- "spdx_id": "MIT",
5531
- "node_id": "MDc6TGljZW5zZW1pdA==",
5532
- "html_url": "https://github.com/licenses/mit"
5533
- },
5534
- "language": null,
5535
- "forks_count": 9,
5536
- "forks": 9,
5537
- "stargazers_count": 80,
5538
- "watchers_count": 80,
5539
- "watchers": 80,
5540
- "size": 108,
5541
- "default_branch": "master",
5542
- "open_issues_count": 0,
5543
- "open_issues": 0,
5544
- "is_template": false,
5545
- "topics": ["octocat", "atom", "electron", "api"],
5546
- "has_issues": true,
5547
- "has_projects": true,
5548
- "has_wiki": true,
5549
- "has_pages": false,
5550
- "has_downloads": true,
5551
- "archived": false,
5552
- "disabled": false,
5553
- "visibility": "public",
5554
- "pushed_at": "2011-01-26T19:06:43Z",
5555
- "created_at": "2011-01-26T19:01:12Z",
5556
- "updated_at": "2011-01-26T19:14:43Z",
5557
- "permissions": { "pull": true, "push": false, "admin": false },
5558
- "allow_rebase_merge": true,
5559
- "template_repository": {
5560
- "id": 1296269,
5561
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
5562
- "name": "Hello-World-Template",
5563
- "full_name": "octocat/Hello-World-Template",
5564
- "owner": {
5565
- "login": "octocat",
5566
- "id": 1,
5567
- "node_id": "MDQ6VXNlcjE=",
5568
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5569
- "gravatar_id": "",
5570
- "url": "https://api.github.com/users/octocat",
5571
- "html_url": "https://github.com/octocat",
5572
- "followers_url": "https://api.github.com/users/octocat/followers",
5573
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5574
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5575
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5576
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5577
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5578
- "repos_url": "https://api.github.com/users/octocat/repos",
5579
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5580
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5581
- "type": "User",
5582
- "site_admin": false
5583
- },
5584
- "private": false,
5585
- "html_url": "https://github.com/octocat/Hello-World-Template",
5586
- "description": "This your first repo!",
5587
- "fork": false,
5588
- "url": "https://api.github.com/repos/octocat/Hello-World-Template",
5589
- "archive_url": "https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}",
5590
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}",
5591
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}",
5592
- "branches_url": "https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}",
5593
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}",
5594
- "comments_url": "https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}",
5595
- "commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}",
5596
- "compare_url": "https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}",
5597
- "contents_url": "https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}",
5598
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World-Template/contributors",
5599
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World-Template/deployments",
5600
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World-Template/downloads",
5601
- "events_url": "https://api.github.com/repos/octocat/Hello-World-Template/events",
5602
- "forks_url": "https://api.github.com/repos/octocat/Hello-World-Template/forks",
5603
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}",
5604
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}",
5605
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}",
5606
- "git_url": "git:github.com/octocat/Hello-World-Template.git",
5607
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}",
5608
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}",
5609
- "issues_url": "https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}",
5610
- "keys_url": "https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}",
5611
- "labels_url": "https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}",
5612
- "languages_url": "https://api.github.com/repos/octocat/Hello-World-Template/languages",
5613
- "merges_url": "https://api.github.com/repos/octocat/Hello-World-Template/merges",
5614
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}",
5615
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}",
5616
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}",
5617
- "releases_url": "https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}",
5618
- "ssh_url": "git@github.com:octocat/Hello-World-Template.git",
5619
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World-Template/stargazers",
5620
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}",
5621
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscribers",
5622
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World-Template/subscription",
5623
- "tags_url": "https://api.github.com/repos/octocat/Hello-World-Template/tags",
5624
- "teams_url": "https://api.github.com/repos/octocat/Hello-World-Template/teams",
5625
- "trees_url": "https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}",
5626
- "clone_url": "https://github.com/octocat/Hello-World-Template.git",
5627
- "mirror_url": "git:git.example.com/octocat/Hello-World-Template",
5628
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World-Template/hooks",
5629
- "svn_url": "https://svn.github.com/octocat/Hello-World-Template",
5630
- "homepage": "https://github.com",
5631
- "language": null,
5632
- "forks": 9,
5633
- "forks_count": 9,
5634
- "stargazers_count": 80,
5635
- "watchers_count": 80,
5636
- "watchers": 80,
5637
- "size": 108,
5638
- "default_branch": "master",
5639
- "open_issues": 0,
5640
- "open_issues_count": 0,
5641
- "is_template": true,
5642
- "license": {
5643
- "key": "mit",
5644
- "name": "MIT License",
5645
- "url": "https://api.github.com/licenses/mit",
5646
- "spdx_id": "MIT",
5647
- "node_id": "MDc6TGljZW5zZW1pdA==",
5648
- "html_url": "https://api.github.com/licenses/mit"
5649
- },
5650
- "topics": ["octocat", "atom", "electron", "api"],
5651
- "has_issues": true,
5652
- "has_projects": true,
5653
- "has_wiki": true,
5654
- "has_pages": false,
5655
- "has_downloads": true,
5656
- "archived": false,
5657
- "disabled": false,
5658
- "visibility": "public",
5659
- "pushed_at": "2011-01-26T19:06:43Z",
5660
- "created_at": "2011-01-26T19:01:12Z",
5661
- "updated_at": "2011-01-26T19:14:43Z",
5662
- "permissions": { "admin": false, "push": false, "pull": true },
5663
- "allow_rebase_merge": true,
5664
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
5665
- "allow_squash_merge": true,
5666
- "allow_auto_merge": false,
5667
- "delete_branch_on_merge": true,
5668
- "allow_merge_commit": true,
5669
- "subscribers_count": 42,
5670
- "network_count": 0
5671
- },
5672
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
5673
- "allow_squash_merge": true,
5674
- "allow_auto_merge": false,
5675
- "delete_branch_on_merge": true,
5676
- "allow_merge_commit": true,
5677
- "allow_forking": true,
5678
- "subscribers_count": 42,
5679
- "network_count": 0,
5680
- "organization": {
5681
- "login": "octocat",
5682
- "id": 1,
5683
- "node_id": "MDQ6VXNlcjE=",
5684
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5685
- "gravatar_id": "",
5686
- "url": "https://api.github.com/users/octocat",
5687
- "html_url": "https://github.com/octocat",
5688
- "followers_url": "https://api.github.com/users/octocat/followers",
5689
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5690
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5691
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5692
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5693
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5694
- "repos_url": "https://api.github.com/users/octocat/repos",
5695
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5696
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5697
- "type": "Organization",
5698
- "site_admin": false
5699
- },
5700
- "parent": {
5701
- "id": 1296269,
5702
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
5703
- "name": "Hello-World",
5704
- "full_name": "octocat/Hello-World",
5705
- "owner": {
5706
- "login": "octocat",
5707
- "id": 1,
5708
- "node_id": "MDQ6VXNlcjE=",
5709
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5710
- "gravatar_id": "",
5711
- "url": "https://api.github.com/users/octocat",
5712
- "html_url": "https://github.com/octocat",
5713
- "followers_url": "https://api.github.com/users/octocat/followers",
5714
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5715
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5716
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5717
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5718
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5719
- "repos_url": "https://api.github.com/users/octocat/repos",
5720
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5721
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5722
- "type": "User",
5723
- "site_admin": false
5724
- },
5725
- "private": false,
5726
- "html_url": "https://github.com/octocat/Hello-World",
5727
- "description": "This your first repo!",
5728
- "fork": false,
5729
- "url": "https://api.github.com/repos/octocat/Hello-World",
5730
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
5731
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
5732
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
5733
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
5734
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
5735
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
5736
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
5737
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
5738
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
5739
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
5740
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
5741
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
5742
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
5743
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
5744
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
5745
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
5746
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
5747
- "git_url": "git:github.com/octocat/Hello-World.git",
5748
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
5749
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
5750
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
5751
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
5752
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
5753
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
5754
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
5755
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
5756
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
5757
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
5758
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
5759
- "ssh_url": "git@github.com:octocat/Hello-World.git",
5760
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
5761
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
5762
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
5763
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
5764
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
5765
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
5766
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
5767
- "clone_url": "https://github.com/octocat/Hello-World.git",
5768
- "mirror_url": "git:git.example.com/octocat/Hello-World",
5769
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
5770
- "svn_url": "https://svn.github.com/octocat/Hello-World",
5771
- "homepage": "https://github.com",
5772
- "language": null,
5773
- "forks_count": 9,
5774
- "stargazers_count": 80,
5775
- "watchers_count": 80,
5776
- "size": 108,
5777
- "default_branch": "master",
5778
- "open_issues_count": 0,
5779
- "is_template": true,
5780
- "topics": ["octocat", "atom", "electron", "api"],
5781
- "has_issues": true,
5782
- "has_projects": true,
5783
- "has_wiki": true,
5784
- "has_pages": false,
5785
- "has_downloads": true,
5786
- "archived": false,
5787
- "disabled": false,
5788
- "visibility": "public",
5789
- "pushed_at": "2011-01-26T19:06:43Z",
5790
- "created_at": "2011-01-26T19:01:12Z",
5791
- "updated_at": "2011-01-26T19:14:43Z",
5792
- "permissions": { "admin": false, "push": false, "pull": true },
5793
- "allow_rebase_merge": true,
5794
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
5795
- "allow_squash_merge": true,
5796
- "allow_auto_merge": false,
5797
- "delete_branch_on_merge": true,
5798
- "allow_merge_commit": true,
5799
- "subscribers_count": 42,
5800
- "network_count": 0,
5801
- "license": {
5802
- "key": "mit",
5803
- "name": "MIT License",
5804
- "url": "https://api.github.com/licenses/mit",
5805
- "spdx_id": "MIT",
5806
- "node_id": "MDc6TGljZW5zZW1pdA==",
5807
- "html_url": "https://api.github.com/licenses/mit"
5808
- },
5809
- "forks": 1,
5810
- "open_issues": 1,
5811
- "watchers": 1
5812
- },
5813
- "source": {
5814
- "id": 1296269,
5815
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
5816
- "name": "Hello-World",
5817
- "full_name": "octocat/Hello-World",
5818
- "owner": {
5819
- "login": "octocat",
5820
- "id": 1,
5821
- "node_id": "MDQ6VXNlcjE=",
5822
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5823
- "gravatar_id": "",
5824
- "url": "https://api.github.com/users/octocat",
5825
- "html_url": "https://github.com/octocat",
5826
- "followers_url": "https://api.github.com/users/octocat/followers",
5827
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5828
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5829
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5830
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5831
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5832
- "repos_url": "https://api.github.com/users/octocat/repos",
5833
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5834
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5835
- "type": "User",
5836
- "site_admin": false
5837
- },
5838
- "private": false,
5839
- "html_url": "https://github.com/octocat/Hello-World",
5840
- "description": "This your first repo!",
5841
- "fork": false,
5842
- "url": "https://api.github.com/repos/octocat/Hello-World",
5843
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
5844
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
5845
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
5846
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
5847
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
5848
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
5849
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
5850
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
5851
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
5852
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
5853
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
5854
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
5855
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
5856
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
5857
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
5858
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
5859
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
5860
- "git_url": "git:github.com/octocat/Hello-World.git",
5861
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
5862
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
5863
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
5864
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
5865
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
5866
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
5867
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
5868
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
5869
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
5870
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
5871
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
5872
- "ssh_url": "git@github.com:octocat/Hello-World.git",
5873
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
5874
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
5875
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
5876
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
5877
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
5878
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
5879
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
5880
- "clone_url": "https://github.com/octocat/Hello-World.git",
5881
- "mirror_url": "git:git.example.com/octocat/Hello-World",
5882
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
5883
- "svn_url": "https://svn.github.com/octocat/Hello-World",
5884
- "homepage": "https://github.com",
5885
- "language": null,
5886
- "forks_count": 9,
5887
- "stargazers_count": 80,
5888
- "watchers_count": 80,
5889
- "size": 108,
5890
- "default_branch": "master",
5891
- "open_issues_count": 0,
5892
- "is_template": true,
5893
- "topics": ["octocat", "atom", "electron", "api"],
5894
- "has_issues": true,
5895
- "has_projects": true,
5896
- "has_wiki": true,
5897
- "has_pages": false,
5898
- "has_downloads": true,
5899
- "archived": false,
5900
- "disabled": false,
5901
- "visibility": "public",
5902
- "pushed_at": "2011-01-26T19:06:43Z",
5903
- "created_at": "2011-01-26T19:01:12Z",
5904
- "updated_at": "2011-01-26T19:14:43Z",
5905
- "permissions": { "admin": false, "push": false, "pull": true },
5906
- "allow_rebase_merge": true,
5907
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
5908
- "allow_squash_merge": true,
5909
- "allow_auto_merge": false,
5910
- "delete_branch_on_merge": true,
5911
- "allow_merge_commit": true,
5912
- "subscribers_count": 42,
5913
- "network_count": 0,
5914
- "license": {
5915
- "key": "mit",
5916
- "name": "MIT License",
5917
- "url": "https://api.github.com/licenses/mit",
5918
- "spdx_id": "MIT",
5919
- "node_id": "MDc6TGljZW5zZW1pdA==",
5920
- "html_url": "https://api.github.com/licenses/mit"
5921
- },
5922
- "forks": 1,
5923
- "open_issues": 1,
5924
- "watchers": 1
5925
- }
5926
- }
5927
- },
5928
- "release": {
5929
- "value": {
5930
- "url": "https://api.github.com/repos/octocat/Hello-World/releases/1",
5931
- "html_url": "https://github.com/octocat/Hello-World/releases/v1.0.0",
5932
- "assets_url": "https://api.github.com/repos/octocat/Hello-World/releases/1/assets",
5933
- "upload_url": "https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}",
5934
- "tarball_url": "https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0",
5935
- "zipball_url": "https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0",
5936
- "discussion_url": "https://github.com/octocat/Hello-World/discussions/90",
5937
- "id": 1,
5938
- "node_id": "MDc6UmVsZWFzZTE=",
5939
- "tag_name": "v1.0.0",
5940
- "target_commitish": "master",
5941
- "name": "v1.0.0",
5942
- "body": "Description of the release",
5943
- "draft": false,
5944
- "prerelease": false,
5945
- "created_at": "2013-02-27T19:35:32Z",
5946
- "published_at": "2013-02-27T19:35:32Z",
5947
- "author": {
5948
- "login": "octocat",
5949
- "id": 1,
5950
- "node_id": "MDQ6VXNlcjE=",
5951
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5952
- "gravatar_id": "",
5953
- "url": "https://api.github.com/users/octocat",
5954
- "html_url": "https://github.com/octocat",
5955
- "followers_url": "https://api.github.com/users/octocat/followers",
5956
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5957
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5958
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5959
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5960
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5961
- "repos_url": "https://api.github.com/users/octocat/repos",
5962
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5963
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5964
- "type": "User",
5965
- "site_admin": false
5966
- },
5967
- "assets": [
5968
- {
5969
- "url": "https://api.github.com/repos/octocat/Hello-World/releases/assets/1",
5970
- "browser_download_url": "https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip",
5971
- "id": 1,
5972
- "node_id": "MDEyOlJlbGVhc2VBc3NldDE=",
5973
- "name": "example.zip",
5974
- "label": "short description",
5975
- "state": "uploaded",
5976
- "content_type": "application/zip",
5977
- "size": 1024,
5978
- "download_count": 42,
5979
- "created_at": "2013-02-27T19:35:32Z",
5980
- "updated_at": "2013-02-27T19:35:32Z",
5981
- "uploader": {
5982
- "login": "octocat",
5983
- "id": 1,
5984
- "node_id": "MDQ6VXNlcjE=",
5985
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
5986
- "gravatar_id": "",
5987
- "url": "https://api.github.com/users/octocat",
5988
- "html_url": "https://github.com/octocat",
5989
- "followers_url": "https://api.github.com/users/octocat/followers",
5990
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
5991
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
5992
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
5993
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
5994
- "organizations_url": "https://api.github.com/users/octocat/orgs",
5995
- "repos_url": "https://api.github.com/users/octocat/repos",
5996
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
5997
- "received_events_url": "https://api.github.com/users/octocat/received_events",
5998
- "type": "User",
5999
- "site_admin": false
6000
- }
6001
- }
6002
- ]
6003
- }
6004
3350
  }
6005
3351
  },
6006
3352
  "headers": {
@@ -6017,30 +3363,6 @@
6017
3363
  "schema": { "$ref": "#/components/schemas/basic-error" }
6018
3364
  }
6019
3365
  }
6020
- },
6021
- "temporary_redirect": {
6022
- "description": "Temporary Redirect",
6023
- "content": {
6024
- "application/json": {
6025
- "schema": { "$ref": "#/components/schemas/basic-error" }
6026
- }
6027
- }
6028
- },
6029
- "forbidden": {
6030
- "description": "Forbidden",
6031
- "content": {
6032
- "application/json": {
6033
- "schema": { "$ref": "#/components/schemas/basic-error" }
6034
- }
6035
- }
6036
- },
6037
- "validation_failed": {
6038
- "description": "Validation failed",
6039
- "content": {
6040
- "application/json": {
6041
- "schema": { "$ref": "#/components/schemas/validation-error" }
6042
- }
6043
- }
6044
3366
  }
6045
3367
  }
6046
3368
  }