diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 64845f1bd..498d32b06 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -51452,6 +51452,118 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "$ref": "#/components/parameters/comment-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-comment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-comment" + } + } + } + } + }, + "401": { + "$ref": "#/components/responses/requires_authentication" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "410": { + "$ref": "#/components/responses/gone" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "$ref": "#/components/parameters/comment-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "$ref": "#/components/responses/requires_authentication" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "410": { + "$ref": "#/components/responses/gone" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -103118,6 +103230,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -107145,6 +107265,34 @@ "updated_at" ] }, + "pinned-issue-comment": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/simple-user" + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + }, "issue-comment": { "title": "Issue Comment", "description": "Comments provide a way for people to collaborate on an issue.", @@ -109365,6 +109513,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -109735,6 +109895,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -117922,6 +118085,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -138311,6 +138480,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -141105,6 +141277,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -148528,6 +148708,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -149357,6 +149542,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -188508,6 +188698,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -193021,6 +193216,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -201606,6 +201806,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -202441,6 +202646,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -204709,6 +204919,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -205551,6 +205766,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -207834,6 +208054,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -208663,6 +208888,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -211064,6 +211294,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -211893,6 +212128,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -214282,6 +214522,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -215111,6 +215356,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -217386,6 +217636,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -218221,6 +218476,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -220503,6 +220763,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -221338,6 +221603,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -224149,6 +224419,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -224966,6 +225241,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -227107,6 +227387,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -227924,6 +228209,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -230061,6 +230351,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -230878,6 +231173,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -233011,6 +233311,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -233828,6 +234133,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -239080,6 +239390,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -239909,6 +240224,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -242298,6 +242618,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -243127,6 +243452,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -245568,6 +245898,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -246397,6 +246732,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -248782,6 +249122,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -249611,6 +249956,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -252015,6 +252365,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -252835,6 +253190,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -254980,6 +255340,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -255761,6 +256126,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -258259,6 +258629,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -259034,6 +259409,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -261534,6 +261914,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -262363,6 +262748,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -264653,6 +265043,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -265488,6 +265883,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -267773,6 +268173,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -268608,6 +269013,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -270885,6 +271295,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -271717,6 +272132,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -273786,6 +274206,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -288464,6 +288889,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -298636,6 +299064,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -302695,6 +303126,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 52d22437c..8a6dd492e 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -37521,6 +37521,84 @@ paths: enabledForGitHubApps: true category: issues subcategory: comments + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": + put: + summary: Pin an issue comment + description: |- + You can use the REST API to pin comments on issues. + + This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + + - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. + tags: + - issues + operationId: issues/pin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/comment-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-comment" + examples: + default: + "$ref": "#/components/examples/issue-comment" + '401': + "$ref": "#/components/responses/requires_authentication" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '410': + "$ref": "#/components/responses/gone" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments + delete: + summary: Unpin an issue comment + description: You can use the REST API to unpin comments on issues. + tags: + - issues + operationId: issues/unpin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/comment-id" + responses: + '204': + description: Response + '401': + "$ref": "#/components/responses/requires_authentication" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '410': + "$ref": "#/components/responses/gone" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": get: summary: List reactions for an issue comment @@ -74365,6 +74443,12 @@ components: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -77474,6 +77558,23 @@ components: - user - created_at - updated_at + pinned-issue-comment: + title: Pinned Issue Comment + description: Context around who pinned an issue comment and when it was pinned. + type: object + properties: + pinned_at: + type: string + format: date-time + examples: + - '2011-04-14T16:00:49Z' + pinned_by: + anyOf: + - type: 'null' + - "$ref": "#/components/schemas/simple-user" + required: + - pinned_at + - pinned_by issue-comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -79054,6 +79155,14 @@ components: enum: - enabled - disabled + secret_scanning_delegated_alert_dismissal: + type: object + properties: + status: + type: string + enum: + - enabled + - disabled minimal-repository: title: Minimal Repository description: Minimal Repository @@ -79307,6 +79416,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -85472,6 +85583,10 @@ components: type: boolean examples: - true + has_pull_requests: + type: boolean + examples: + - true archived: type: boolean disabled: @@ -100032,6 +100147,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -102078,6 +102195,12 @@ components: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -107632,6 +107755,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -108271,6 +108398,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -136962,6 +137093,10 @@ components: has_discussions: description: Whether the repository has discussions enabled. type: boolean + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_downloads: description: Whether downloads are enabled. type: boolean @@ -140325,6 +140460,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -146441,6 +146580,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -147085,6 +147228,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -148787,6 +148934,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_pages: type: boolean has_projects: @@ -149437,6 +149588,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -151150,6 +151305,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -151790,6 +151949,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -153585,6 +153748,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -154225,6 +154392,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -156012,6 +156183,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -156652,6 +156827,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -158357,6 +158536,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -159001,6 +159184,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -160714,6 +160901,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -161358,6 +161549,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -163469,6 +163664,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -164100,6 +164299,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -165709,6 +165912,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -166340,6 +166547,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -167943,6 +168154,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -168574,6 +168789,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170176,6 +170395,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170807,6 +171030,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -174725,6 +174952,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -175356,6 +175587,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -177147,6 +177382,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -177787,6 +178026,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -179623,6 +179866,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -180263,6 +180510,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182050,6 +182301,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182690,6 +182945,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -184493,6 +184752,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -185126,6 +185389,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -186739,6 +187006,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -187322,6 +187593,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189189,6 +189464,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189768,6 +190047,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -191633,6 +191916,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -192273,6 +192560,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -193983,6 +194274,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -194627,6 +194922,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196342,6 +196641,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196986,6 +197289,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -198686,6 +198993,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -199328,6 +199639,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -200903,6 +201218,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -211627,6 +211946,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean forks_count: type: integer mirror_url: @@ -220510,6 +220831,8 @@ components: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled organization-role-list: value: total_count: 2 @@ -223983,6 +224306,8 @@ components: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled artifact-paginated: value: total_count: 2 diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 64845f1bd..498d32b06 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -51452,6 +51452,118 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "$ref": "#/components/parameters/comment-id" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-comment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-comment" + } + } + } + } + }, + "401": { + "$ref": "#/components/responses/requires_authentication" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "410": { + "$ref": "#/components/responses/gone" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "$ref": "#/components/parameters/comment-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "$ref": "#/components/responses/requires_authentication" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "410": { + "$ref": "#/components/responses/gone" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -103118,6 +103230,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -107145,6 +107265,34 @@ "updated_at" ] }, + "pinned-issue-comment": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "$ref": "#/components/schemas/simple-user" + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + }, "issue-comment": { "title": "Issue Comment", "description": "Comments provide a way for people to collaborate on an issue.", @@ -109365,6 +109513,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -109735,6 +109895,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -117922,6 +118085,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -138311,6 +138480,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -141105,6 +141277,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -148528,6 +148708,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -149357,6 +149542,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -188508,6 +188698,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -193021,6 +193216,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -201606,6 +201806,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -202441,6 +202646,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -204709,6 +204919,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -205551,6 +205766,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -207834,6 +208054,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -208663,6 +208888,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -211064,6 +211294,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -211893,6 +212128,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -214282,6 +214522,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -215111,6 +215356,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -217386,6 +217636,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -218221,6 +218476,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -220503,6 +220763,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -221338,6 +221603,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -224149,6 +224419,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -224966,6 +225241,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -227107,6 +227387,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -227924,6 +228209,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -230061,6 +230351,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -230878,6 +231173,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -233011,6 +233311,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -233828,6 +234133,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -239080,6 +239390,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -239909,6 +240224,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -242298,6 +242618,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -243127,6 +243452,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -245568,6 +245898,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -246397,6 +246732,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -248782,6 +249122,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -249611,6 +249956,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -252015,6 +252365,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -252835,6 +253190,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -254980,6 +255340,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -255761,6 +256126,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -258259,6 +258629,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -259034,6 +259409,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -261534,6 +261914,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -262363,6 +262748,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -264653,6 +265043,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -265488,6 +265883,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -267773,6 +268173,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -268608,6 +269013,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -270885,6 +271295,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -271717,6 +272132,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -273786,6 +274206,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -288464,6 +288889,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -298636,6 +299064,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -302695,6 +303126,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 52d22437c..8a6dd492e 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -37521,6 +37521,84 @@ paths: enabledForGitHubApps: true category: issues subcategory: comments + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": + put: + summary: Pin an issue comment + description: |- + You can use the REST API to pin comments on issues. + + This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + + - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. + tags: + - issues + operationId: issues/pin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/comment-id" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-comment" + examples: + default: + "$ref": "#/components/examples/issue-comment" + '401': + "$ref": "#/components/responses/requires_authentication" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '410': + "$ref": "#/components/responses/gone" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments + delete: + summary: Unpin an issue comment + description: You can use the REST API to unpin comments on issues. + tags: + - issues + operationId: issues/unpin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/comment-id" + responses: + '204': + description: Response + '401': + "$ref": "#/components/responses/requires_authentication" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '410': + "$ref": "#/components/responses/gone" + '503': + "$ref": "#/components/responses/service_unavailable" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": get: summary: List reactions for an issue comment @@ -74365,6 +74443,12 @@ components: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -77474,6 +77558,23 @@ components: - user - created_at - updated_at + pinned-issue-comment: + title: Pinned Issue Comment + description: Context around who pinned an issue comment and when it was pinned. + type: object + properties: + pinned_at: + type: string + format: date-time + examples: + - '2011-04-14T16:00:49Z' + pinned_by: + anyOf: + - type: 'null' + - "$ref": "#/components/schemas/simple-user" + required: + - pinned_at + - pinned_by issue-comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -79054,6 +79155,14 @@ components: enum: - enabled - disabled + secret_scanning_delegated_alert_dismissal: + type: object + properties: + status: + type: string + enum: + - enabled + - disabled minimal-repository: title: Minimal Repository description: Minimal Repository @@ -79307,6 +79416,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -85472,6 +85583,10 @@ components: type: boolean examples: - true + has_pull_requests: + type: boolean + examples: + - true archived: type: boolean disabled: @@ -100032,6 +100147,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -102078,6 +102195,12 @@ components: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -107632,6 +107755,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -108271,6 +108398,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -136962,6 +137093,10 @@ components: has_discussions: description: Whether the repository has discussions enabled. type: boolean + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_downloads: description: Whether downloads are enabled. type: boolean @@ -140325,6 +140460,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -146441,6 +146580,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -147085,6 +147228,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -148787,6 +148934,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_pages: type: boolean has_projects: @@ -149437,6 +149588,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -151150,6 +151305,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -151790,6 +151949,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -153585,6 +153748,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -154225,6 +154392,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -156012,6 +156183,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -156652,6 +156827,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -158357,6 +158536,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -159001,6 +159184,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -160714,6 +160901,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -161358,6 +161549,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -163469,6 +163664,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -164100,6 +164299,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -165709,6 +165912,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -166340,6 +166547,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -167943,6 +168154,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -168574,6 +168789,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170176,6 +170395,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170807,6 +171030,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -174725,6 +174952,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -175356,6 +175587,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -177147,6 +177382,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -177787,6 +178026,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -179623,6 +179866,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -180263,6 +180510,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182050,6 +182301,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182690,6 +182945,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -184493,6 +184752,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -185126,6 +185389,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -186739,6 +187006,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -187322,6 +187593,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189189,6 +189464,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189768,6 +190047,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -191633,6 +191916,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -192273,6 +192560,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -193983,6 +194274,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -194627,6 +194922,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196342,6 +196641,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196986,6 +197289,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -198686,6 +198993,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -199328,6 +199639,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -200903,6 +201218,10 @@ components: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -211627,6 +211946,8 @@ components: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean forks_count: type: integer mirror_url: @@ -220510,6 +220831,8 @@ components: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled organization-role-list: value: total_count: 2 @@ -223983,6 +224306,8 @@ components: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled artifact-paginated: value: total_count: 2 diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index ce2dfa4b4..b48fb701b 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -9067,6 +9067,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -31405,6 +31413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -34815,6 +34831,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -36439,6 +36463,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -36849,6 +37066,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -53457,6 +53677,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -56106,6 +56334,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -63587,6 +63823,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -66997,6 +67241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -68621,6 +68873,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -69031,6 +69476,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -72468,6 +72916,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -72735,6 +73186,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -73792,6 +74255,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -74059,6 +74525,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -85862,6 +86340,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -87650,6 +88136,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -90588,6 +91082,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -90855,6 +91352,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -93197,6 +93706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -94250,6 +94767,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -96781,6 +97306,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -97048,6 +97576,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -98514,6 +99054,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -98781,6 +99324,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -112135,6 +112690,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -112402,6 +112960,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -115229,6 +115799,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -115496,6 +116069,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -121968,6 +122553,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -122235,6 +122823,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -123374,6 +123974,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -123641,6 +124244,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -126591,6 +127206,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -130001,6 +130624,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -131625,6 +132256,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -132035,6 +132859,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -145907,6 +146734,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -148600,6 +149435,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -148867,6 +149705,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -150958,6 +151808,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -151225,6 +152078,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -154971,6 +155836,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -156506,6 +157379,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -158068,6 +158949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -159386,6 +160275,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -159653,6 +160545,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -159830,6 +160734,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -163227,6 +164134,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -163494,6 +164404,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -164539,6 +165461,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -164806,6 +165731,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -167877,6 +168814,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -168144,6 +169084,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -168321,6 +169273,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -170115,6 +171070,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -170382,6 +171340,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -170559,6 +171529,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -176132,6 +177105,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -179241,6 +180222,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -180386,6 +181375,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -186712,6 +187709,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -189821,6 +190826,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -190966,6 +191979,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -202918,6 +203939,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -203185,6 +204209,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -203362,6 +204398,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -204177,6 +205216,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -204945,6 +205990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -206245,6 +207298,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -207194,6 +208255,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -207597,6 +208666,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224212,6 +225293,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -224479,6 +225563,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -231748,6 +232844,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -232015,6 +233114,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -232192,6 +233303,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -235050,6 +236164,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -235818,6 +236938,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -237118,6 +238246,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -238067,6 +239203,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -238470,6 +239614,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -239077,6 +240233,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -240031,6 +241190,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -240799,6 +241964,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -242099,6 +243272,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243048,6 +244229,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243451,6 +244640,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -250439,6 +251640,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -251501,6 +252710,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -254433,6 +255650,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -254700,6 +255920,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -255290,6 +256522,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -255557,6 +256792,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -257261,6 +258508,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -257528,6 +258778,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -258118,6 +259380,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -258385,6 +259650,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -260919,6 +262196,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -261186,6 +262466,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -261776,6 +263068,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -262043,6 +263338,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -269042,6 +270349,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -269309,6 +270619,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -269899,6 +271221,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -270166,6 +271491,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -306671,6 +308008,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -306938,6 +308278,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -308593,6 +309945,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -308860,6 +310215,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -310025,6 +311392,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -310292,6 +311662,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -311795,6 +313177,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -312062,6 +313447,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -327082,6 +328479,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -327349,6 +328749,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -329183,6 +330595,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -329450,6 +330865,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -330920,6 +332347,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -331187,6 +332617,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -334682,6 +336124,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -334949,6 +336394,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -343228,6 +344685,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -344373,6 +345838,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -349535,6 +351008,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -349802,6 +351278,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -350896,6 +352384,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -351163,6 +352654,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -376093,6 +377596,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -379503,6 +381014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -381127,6 +382646,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -381537,6 +383249,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -384879,6 +386594,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -385146,6 +386864,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -386079,6 +387809,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -386847,6 +388583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -388147,6 +389891,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -389096,6 +390848,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -389499,6 +391259,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -401425,6 +403197,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -401692,6 +403467,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -402920,6 +404707,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -403187,6 +404977,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -406006,6 +407808,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409389,6 +411199,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -411532,6 +413350,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -412466,6 +414477,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -413338,6 +415542,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -413528,6 +415925,1378 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "type": "integer", + "format": "int64", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repositories/42/issues/comments/1" + ] + }, + "body": { + "description": "Contents of the issue comment", + "type": "string", + "examples": [ + "What version of Safari were you using when you observed this bug?" + ] + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ], + "examples": [ + "OWNER" + ] + }, + "performed_via_github_app": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "type": "integer", + "examples": [ + 37 + ] + }, + "slug": { + "description": "The slug name of the GitHub app", + "type": "string", + "examples": [ + "probot-owners" + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDExOkludGVncmF0aW9uMQ==" + ] + }, + "client_id": { + "type": "string", + "examples": [ + "\"Iv1.25b5d1e65ffc4022\"" + ] + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "html_url", + "issue_url", + "user", + "url", + "created_at", + "updated_at" + ] + }, + "examples": { + "default": { + "value": { + "id": 1, + "node_id": "MDEyOklzc3VlQ29tbWVudDE=", + "url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1", + "html_url": "https://github.com/octocat/Hello-World/issues/1347#issuecomment-1", + "body": "Me too", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2011-04-14T16:00:49Z", + "updated_at": "2011-04-14T16:00:49Z", + "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", + "author_association": "COLLABORATOR" + } + } + } + } + } + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -416966,6 +420735,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -421951,6 +425728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -426732,6 +430517,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -430098,6 +433891,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -433464,6 +437265,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -436627,6 +440436,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -438589,6 +442406,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -439244,261 +443254,454 @@ "type", "url" ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": [ - "string", - "null" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/enterprises/octo-business" - ] - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": [ - "string", - "null" - ], - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "type": "integer", - "examples": [ - 42 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - ] - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "examples": [ - "Octo Business" - ] - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "examples": [ - "octo-business" - ] - }, - "created_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:01:12Z" - ] - }, - "updated_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:14:43Z" - ] - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] } ] - }, - "name": { - "description": "The name of the GitHub app", - "type": "string", - "examples": [ - "Probot Owners" - ] - }, - "description": { - "type": [ - "string", - "null" - ], - "examples": [ - "The description of the app." - ] - }, - "external_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://example.com" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/apps/super-ci" - ] - }, - "created_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "updated_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "type": "array", - "items": { - "type": "string" - }, - "examples": [ - "label", - "deployment" - ] - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "type": "integer", - "examples": [ - 5 - ] } }, "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" + "pinned_at", + "pinned_by" ] } ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "pin": { - "anyOf": [ - { - "type": "null" - } - ] } }, "required": [ @@ -441793,6 +445996,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -445043,6 +449254,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -448377,6 +452596,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -451733,6 +455960,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -468248,6 +472483,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -472651,6 +476894,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475911,6 +480162,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -479139,6 +483398,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -482472,6 +486739,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -494096,6 +498371,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -496310,6 +500778,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -506812,6 +511288,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -507079,6 +511558,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -513719,6 +518210,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -514864,6 +519363,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -518487,6 +522994,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -519625,6 +524140,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -526713,6 +531236,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -527851,6 +532382,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -531742,6 +536281,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -532880,6 +537427,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -535623,6 +540178,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -535890,6 +540448,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -537360,6 +541930,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -537627,6 +542200,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -544968,6 +549553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -546113,6 +550706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549822,6 +554423,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -550967,6 +555576,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -595072,6 +599689,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -595840,6 +600463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -597140,6 +601771,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -598089,6 +602728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -598492,6 +603139,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -604391,6 +609050,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -604658,6 +609320,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -605834,6 +610508,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -606602,6 +611282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -607902,6 +612590,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -608851,6 +613547,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -609254,6 +613958,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -610437,6 +615153,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -610704,6 +615423,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -611584,6 +616315,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -611851,6 +616585,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -613209,6 +617955,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -613476,6 +618225,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -615771,6 +620532,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -617713,6 +622482,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -623412,6 +628184,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -623679,6 +628454,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -623856,6 +628643,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -628865,6 +633655,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -629132,6 +633925,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -631157,6 +635962,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -631424,6 +636232,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -632894,6 +637714,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -633161,6 +637984,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -634940,6 +639775,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -635207,6 +640045,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -637033,6 +641883,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -637300,6 +642153,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -638942,6 +643807,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -639209,6 +644077,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -641758,6 +646638,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -642526,6 +647412,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -643826,6 +648720,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -644775,6 +649677,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -645178,6 +650088,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -647292,6 +652214,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -647559,6 +652484,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -649289,6 +654226,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -649556,6 +654496,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -651021,6 +655973,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -651288,6 +656243,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -656944,6 +661911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -660054,6 +665029,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -665496,6 +670479,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -667093,6 +672084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -668668,6 +673667,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -670145,6 +675152,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -670412,6 +675422,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -670589,6 +675611,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -671719,6 +676744,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -671986,6 +677014,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -672970,6 +678010,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -673237,6 +678280,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -675555,6 +680610,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -676890,6 +681953,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -677658,6 +682727,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -678958,6 +684035,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -679907,6 +684992,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -680310,6 +685403,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -681739,6 +686844,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -682006,6 +687114,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -685062,6 +690182,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -686155,6 +691283,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -687567,6 +692703,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -687834,6 +692973,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -688011,6 +693162,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -691791,6 +696945,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -694900,6 +700062,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -696045,6 +701215,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -700960,6 +706138,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -701227,6 +706408,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -704177,6 +709370,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -707587,6 +712788,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -709211,6 +714420,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -709621,6 +715023,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -715103,6 +720508,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -718513,6 +723926,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -720137,6 +725558,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -720547,6 +726161,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -726039,6 +731656,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -729449,6 +735074,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -731073,6 +736706,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -731483,6 +737309,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -738252,6 +744081,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -738519,6 +744351,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -739564,6 +745408,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -739831,6 +745678,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -748259,6 +754118,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -751368,6 +757235,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -752513,6 +758388,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -763648,6 +769531,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -767058,6 +772949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -768682,6 +774581,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -769092,6 +775184,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -774570,6 +780665,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777980,6 +784083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -779604,6 +785715,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -780014,6 +786318,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -783380,6 +789687,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -783647,6 +789957,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -783824,6 +790146,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -785916,6 +792241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -786874,6 +793207,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -787859,6 +794200,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -788126,6 +794470,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -788303,6 +794659,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -789613,6 +795972,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -791591,6 +797958,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -793569,6 +799944,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -795727,6 +802110,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -798053,6 +804444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -800633,6 +807032,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -800900,6 +807302,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -802850,6 +809264,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -805595,6 +812017,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -805862,6 +812287,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -807812,6 +814249,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -810557,6 +817002,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -810824,6 +817272,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -812774,6 +819234,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -815532,6 +822000,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -815799,6 +822270,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -817749,6 +824232,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -820850,6 +827341,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -823640,6 +830139,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -826424,6 +832931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -828894,6 +835409,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -831491,6 +838014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -833913,6 +840444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -836421,6 +842960,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -838847,6 +845394,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -841215,6 +847770,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -843679,6 +850242,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -845895,6 +852466,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -847894,6 +854473,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -852041,6 +858628,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854205,6 +860800,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -857001,6 +863604,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859796,6 +866407,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -862591,6 +869210,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -865386,6 +872013,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -868181,6 +874816,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -870976,6 +877619,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873771,6 +880422,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875802,6 +882461,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877833,6 +884500,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -880468,6 +887143,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885105,6 +891788,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -886243,6 +892934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888188,6 +894887,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -890347,6 +897054,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893468,6 +900183,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -896527,6 +903250,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -901046,6 +907777,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -904669,6 +911408,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907206,6 +913953,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -909680,6 +916435,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -912370,6 +919133,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -915061,6 +921832,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -917771,6 +924550,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920246,6 +927033,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -922719,6 +929514,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -925219,6 +932022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -927735,6 +934546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -930209,6 +937028,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -932682,6 +939509,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935155,6 +941990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -937417,6 +944260,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -939620,6 +946471,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -942196,6 +949055,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944712,6 +951579,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -947186,6 +954061,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -949659,6 +956542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -952571,6 +959462,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -954863,6 +961762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -957872,6 +964779,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960979,6 +967894,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963991,6 +970914,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967030,6 +973961,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -970183,6 +977122,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -973302,6 +980249,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -975438,6 +982393,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978450,6 +985413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -979855,6 +986826,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] }, @@ -982767,6 +989931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984265,6 +991437,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -987076,6 +994441,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -988592,6 +995965,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -991403,6 +998969,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992902,6 +1000476,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -995720,6 +1003487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997218,6 +1004993,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1000036,6 +1008004,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002936,6 +1010912,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005857,6 +1013841,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1007465,6 +1015457,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1008717,6 +1016717,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1011616,6 +1019624,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014537,6 +1022553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1016145,6 +1024169,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017397,6 +1025429,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1020296,6 +1028336,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021904,6 +1029952,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1024166,6 +1032222,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1026077,6 +1034141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028976,6 +1037048,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030584,6 +1038664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032846,6 +1040934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034757,6 +1042853,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1038295,6 +1046399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041955,6 +1050067,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1045386,6 +1053506,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1049011,6 +1057139,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1052519,6 +1060655,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1055997,6 +1064141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1059436,6 +1067588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063059,6 +1071219,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1065551,6 +1073719,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -1068566,6 +1076739,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071996,6 +1080177,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1075431,6 +1083620,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1077962,6 +1086159,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1080950,6 +1089152,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084455,6 +1092665,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1087994,6 +1096212,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1091474,6 +1099700,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094911,6 +1103145,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1098341,6 +1106583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1101845,6 +1110095,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103868,6 +1112126,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1105889,6 +1114155,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107953,6 +1116227,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1110176,6 +1118458,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112401,6 +1120691,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1114623,6 +1122921,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116840,6 +1125146,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1119061,6 +1127375,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1121172,6 +1129494,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123287,6 +1131617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1125368,6 +1133706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1127448,6 +1135794,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129663,6 +1138017,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131818,6 +1140180,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1133841,6 +1142211,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1135948,6 +1144326,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1138123,6 +1146509,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1140294,6 +1148688,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1142466,6 +1150868,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144680,6 +1153090,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146852,6 +1155270,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1148931,6 +1157357,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1151010,6 +1159444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1153136,6 +1161578,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1155261,6 +1163711,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1157406,6 +1165864,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1159632,6 +1168098,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1161771,6 +1170245,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1164650,6 +1173132,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1167274,6 +1175764,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1169399,6 +1177897,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1174758,6 +1183264,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1177093,6 +1185607,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179240,6 +1187762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1181395,6 +1189925,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183565,6 +1192103,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1185845,6 +1194391,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1187995,6 +1196549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1190026,6 +1198588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1192061,6 +1200631,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1194109,6 +1202687,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1196140,6 +1204726,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1198290,6 +1206884,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1200445,6 +1209047,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1202626,6 +1211236,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1204775,6 +1213393,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1219991,6 +1228617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1221883,6 +1230517,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1222718,6 +1231357,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1225155,6 +1233799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226932,6 +1235584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -1227774,6 +1236431,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1230213,6 +1238875,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1232003,6 +1240673,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1232832,6 +1241507,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1235271,6 +1243951,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238460,6 +1247148,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1239598,6 +1248294,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1241602,6 +1250306,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1244791,6 +1253503,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245929,6 +1254649,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247933,6 +1256661,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1250014,6 +1258750,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1250843,6 +1259584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1253268,6 +1262014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255056,6 +1263810,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1255885,6 +1264644,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1258329,6 +1267093,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261580,6 +1270352,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1262718,6 +1271498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1264722,6 +1273510,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1266511,6 +1275307,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1267340,6 +1276141,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1269767,6 +1278573,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1271602,6 +1280416,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1272437,6 +1281256,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1274875,6 +1283699,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1276666,6 +1285498,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1277501,6 +1286338,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1279938,6 +1288780,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1282019,6 +1290869,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1282848,6 +1291703,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1285273,6 +1294133,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1288461,6 +1297329,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1289599,6 +1298475,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1291603,6 +1300487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1294792,6 +1303684,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295930,6 +1304830,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1297934,6 +1306842,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1301123,6 +1310039,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1302261,6 +1311185,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1304265,6 +1313197,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1306426,6 +1315366,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1307243,6 +1316188,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1309545,6 +1318495,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311701,6 +1320659,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1312518,6 +1321481,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1314810,6 +1323778,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316987,6 +1325963,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1317804,6 +1326785,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1320097,6 +1329083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321883,6 +1330877,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1322700,6 +1331699,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1325004,6 +1334008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1330045,6 +1339057,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1332053,6 +1341073,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1332882,6 +1341907,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1335325,6 +1344355,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1337127,6 +1346165,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1337956,6 +1346999,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1340399,6 +1349447,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1342343,6 +1351399,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1343172,6 +1352233,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1345608,6 +1354674,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1347413,6 +1356487,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1348242,6 +1357321,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1350669,6 +1359753,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1352592,6 +1361684,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1353412,6 +1362509,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1355717,6 +1364819,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357712,6 +1366822,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1358493,6 +1367608,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1360758,6 +1369878,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1362937,6 +1372065,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1363712,6 +1372845,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1365966,6 +1375104,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368159,6 +1377305,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1368988,6 +1378139,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1371425,6 +1380581,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373322,6 +1382486,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1374157,6 +1383326,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1376595,6 +1385769,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1378429,6 +1387611,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1379264,6 +1388451,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1381701,6 +1390893,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1383488,6 +1392688,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1384320,6 +1393525,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1386745,6 +1395955,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388337,6 +1397555,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1391002,6 +1400225,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1393529,6 +1402760,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1395952,6 +1405191,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1398376,6 +1407623,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1400853,6 +1410108,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403283,6 +1412546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1405709,6 +1414980,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1408132,6 +1417411,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1410558,6 +1419845,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1412536,6 +1421831,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1416505,6 +1425808,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420474,6 +1429785,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1422453,6 +1431772,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1424432,6 +1433759,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1426419,6 +1435754,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428456,6 +1437799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1430429,6 +1439780,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1432414,6 +1441773,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1434393,6 +1443760,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1436399,6 +1445774,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1438379,6 +1447762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1441679,6 +1451070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1444979,6 +1454378,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1451377,6 +1460784,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1453357,6 +1462772,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1455509,6 +1464932,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1457671,6 +1467102,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1459822,6 +1469261,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1461973,6 +1471420,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1464964,6 +1474419,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1467787,6 +1477250,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1470868,6 +1480339,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1473867,6 +1483346,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1476690,6 +1486177,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1479513,6 +1489008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1482504,6 +1492007,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1485327,6 +1494838,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1487151,6 +1496670,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1489345,6 +1498872,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1491548,6 +1501083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1493751,6 +1503294,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1494952,6 +1504503,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } } @@ -1495768,6 +1505331,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -1496536,6 +1506105,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1497836,6 +1507413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1498785,6 +1508370,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1499188,6 +1508781,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -1500639,6 +1510244,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1502940,6 +1512553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1505258,6 +1514879,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1507564,6 +1517193,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1509928,6 +1519565,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1512289,6 +1521934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1514591,6 +1524244,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1516577,6 +1526238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1519059,6 +1528728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1521991,6 +1531668,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1523599,6 +1533284,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1525861,6 +1535554,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1527772,6 +1537473,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1530673,6 +1540382,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1532281,6 +1541998,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1534543,6 +1544268,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1536454,6 +1546187,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1539355,6 +1549096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1540963,6 +1550712,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1543225,6 +1552982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1545136,6 +1554901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1548037,6 +1557810,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1549645,6 +1559426,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1551907,6 +1561696,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1553818,6 +1563615,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1555792,6 +1565597,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1564583,6 +1574396,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1566564,6 +1576385,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1568545,6 +1578374,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1571580,6 +1581417,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1574653,6 +1584498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1577549,6 +1587402,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1580446,6 +1590307,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1583729,6 +1593598,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1586994,6 +1596871,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index b7bae48b9..38b02ebb0 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &614 + - &615 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3392,6 +3392,12 @@ paths: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -10961,7 +10967,7 @@ paths: properties: action: type: string - discussion: &707 + discussion: &708 title: Discussion description: A Discussion in a repository. type: object @@ -11747,7 +11753,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &626 + sub_issues_summary: &627 title: Sub-issues Summary type: object properties: @@ -11768,7 +11774,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &627 + issue_dependencies_summary: &628 title: Issue Dependencies Summary type: object properties: @@ -11787,7 +11793,7 @@ paths: - total_blocking issue_field_values: type: array - items: &628 + items: &629 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11959,6 +11965,24 @@ paths: pin: anyOf: - type: 'null' + - &528 + title: Pinned Issue Comment + description: Context around who pinned an issue + comment and when it was pinned. + type: object + properties: + pinned_at: + type: string + format: date-time + examples: + - '2011-04-14T16:00:49Z' + pinned_by: + anyOf: + - type: 'null' + - *4 + required: + - pinned_at + - pinned_by required: - id - node_id @@ -12122,6 +12146,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean forks_count: type: integer mirror_url: @@ -12626,7 +12652,7 @@ paths: type: string release: allOf: - - &559 + - &560 title: Release description: A release. type: object @@ -12708,7 +12734,7 @@ paths: author: *4 assets: type: array - items: &560 + items: &561 title: Release Asset description: Data related to a release. type: object @@ -13311,7 +13337,7 @@ paths: url: type: string format: uri - user: &634 + user: &635 title: Public User description: Public User type: object @@ -16761,7 +16787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &535 + - &536 name: all description: If `true`, show notifications marked as read. in: query @@ -16769,7 +16795,7 @@ paths: schema: type: boolean default: false - - &536 + - &537 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16779,7 +16805,7 @@ paths: type: boolean default: false - *77 - - &537 + - &538 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -17064,6 +17090,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -17221,6 +17249,14 @@ paths: enum: - enabled - disabled + secret_scanning_delegated_alert_dismissal: + type: object + properties: + status: + type: string + enum: + - enabled + - disabled custom_properties: type: object description: The custom properties that were defined for @@ -17317,7 +17353,7 @@ paths: - url - subscription_url examples: - default: &538 + default: &539 value: - id: '1' repository: @@ -18850,7 +18886,7 @@ paths: required: false schema: type: string - - &684 + - &685 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18996,7 +19032,7 @@ paths: parameters: - *65 - *107 - - &685 + - &686 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -19108,7 +19144,7 @@ paths: - *107 - *109 - *108 - - &686 + - &687 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19116,7 +19152,7 @@ paths: schema: type: string - *110 - - &687 + - &688 name: sku description: The SKU to query for usage. in: query @@ -22816,7 +22852,7 @@ paths: type: array items: *144 examples: - default: &637 + default: &638 value: total_count: 1 repositories: @@ -25799,12 +25835,12 @@ paths: required: - subject_digests examples: - default: &666 + default: &667 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &667 + withPredicateType: &668 value: subject_digests: - sha256:abc123 @@ -25863,7 +25899,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &668 + default: &669 value: attestations_subject_digests: - sha256:abc: @@ -35614,7 +35650,7 @@ paths: parameters: - *65 - *227 - - &649 + - &650 name: repo_name description: repo_name parameter in: path @@ -35764,6 +35800,8 @@ paths: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled headers: Link: *57 '404': *6 @@ -36673,7 +36711,7 @@ paths: - nuget - container - *65 - - &650 + - &651 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36714,7 +36752,7 @@ paths: default: *233 '403': *27 '401': *23 - '400': &652 + '400': &653 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38540,7 +38578,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &735 + - &736 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -39059,7 +39097,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: &545 + auto_merge: &546 title: Auto merge description: The status of auto merging a pull request. type: @@ -39441,7 +39479,7 @@ paths: - updated_at - project_url examples: - default: &671 + default: &672 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39618,7 +39656,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &672 + items: &673 type: object properties: name: @@ -39655,7 +39693,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &673 + iteration_configuration: &674 type: object description: The configuration for iteration fields. properties: @@ -39704,7 +39742,7 @@ paths: value: name: Due date data_type: date - single_select_field: &674 + single_select_field: &675 summary: Create a single select field value: name: Priority @@ -39731,7 +39769,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &675 + iteration_field: &676 summary: Create an iteration field value: name: Sprint @@ -39757,7 +39795,7 @@ paths: application/json: schema: *253 examples: - text_field: &676 + text_field: &677 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39766,7 +39804,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &677 + number_field: &678 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39775,7 +39813,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &678 + date_field: &679 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39784,7 +39822,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &679 + single_select_field: &680 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39818,7 +39856,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &680 + iteration_field: &681 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39864,7 +39902,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *250 - - &681 + - &682 name: field_id description: The unique identifier of the field. in: path @@ -39879,7 +39917,7 @@ paths: application/json: schema: *253 examples: - default: &682 + default: &683 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41089,7 +41127,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &663 + schema: &664 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -41272,7 +41310,7 @@ paths: parameters: - *250 - *65 - - &683 + - &684 name: view_number description: The number that identifies the project view. in: path @@ -42525,6 +42563,10 @@ paths: type: boolean examples: - true + has_pull_requests: + type: boolean + examples: + - true archived: type: boolean disabled: @@ -43328,7 +43370,7 @@ paths: - *65 - *17 - *19 - - &567 + - &568 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43614,7 +43656,7 @@ paths: - object rules: type: array - items: &568 + items: &569 title: Repository Rule type: object description: A repository rule. @@ -43676,7 +43718,7 @@ paths: type: string enum: - required_linear_history - - &566 + - &567 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44577,7 +44619,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *65 - - &569 + - &570 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -44592,7 +44634,7 @@ paths: in: query schema: type: string - - &570 + - &571 name: time_period description: |- The time period to filter by. @@ -44608,14 +44650,14 @@ paths: - week - month default: day - - &571 + - &572 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &572 + - &573 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44635,7 +44677,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &574 title: Rule Suites description: Response type: array @@ -44691,7 +44733,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &574 + default: &575 value: - id: 21 actor_id: 12 @@ -44735,7 +44777,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *65 - - &575 + - &576 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44751,7 +44793,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &577 title: Rule Suite description: Response type: object @@ -44858,7 +44900,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &577 + default: &578 value: id: 21 actor_id: 12 @@ -45104,7 +45146,7 @@ paths: type: string format: date-time examples: - default: &579 + default: &580 value: - version_id: 3 actor: @@ -45157,7 +45199,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &581 allOf: - *296 - type: object @@ -45229,7 +45271,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *65 - - &581 + - &582 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45240,7 +45282,7 @@ paths: enum: - open - resolved - - &582 + - &583 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45250,7 +45292,7 @@ paths: required: false schema: type: string - - &583 + - &584 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45259,7 +45301,7 @@ paths: required: false schema: type: string - - &584 + - &585 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45278,7 +45320,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &585 + - &586 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -45293,7 +45335,7 @@ paths: - *51 - *19 - *17 - - &586 + - &587 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -45303,7 +45345,7 @@ paths: required: false schema: type: string - - &587 + - &588 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -45313,7 +45355,7 @@ paths: required: false schema: type: string - - &588 + - &589 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45322,7 +45364,7 @@ paths: required: false schema: type: string - - &589 + - &590 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45331,7 +45373,7 @@ paths: schema: type: boolean default: false - - &590 + - &591 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45340,7 +45382,7 @@ paths: schema: type: boolean default: false - - &591 + - &592 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45372,14 +45414,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &592 + state: &593 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &593 + resolution: &594 type: - string - 'null' @@ -45486,14 +45528,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &594 + - &595 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &596 + - &597 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45550,7 +45592,7 @@ paths: - blob_url - commit_sha - commit_url - - &597 + - &598 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -45611,7 +45653,7 @@ paths: - page_url - commit_sha - commit_url - - &598 + - &599 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45626,7 +45668,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &599 + - &600 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45641,7 +45683,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &600 + - &601 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45656,7 +45698,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &601 + - &602 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45671,7 +45713,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &602 + - &603 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45686,7 +45728,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &603 + - &604 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45701,7 +45743,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &604 + - &605 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -45716,7 +45758,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &605 + - &606 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -45731,7 +45773,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &606 + - &607 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -45746,7 +45788,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &607 + - &608 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -45761,7 +45803,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &608 + - &609 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -46261,7 +46303,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 description: A repository security advisory. type: object properties: @@ -46580,7 +46622,7 @@ paths: - private_fork additionalProperties: false examples: - default: &613 + default: &614 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -48598,7 +48640,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &630 + response-if-user-is-a-team-maintainer: &631 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48663,7 +48705,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &631 + response-if-users-membership-with-team-is-now-pending: &632 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48777,7 +48819,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &632 + schema: &633 title: Team Repository description: A team's access to a repository. type: object @@ -49506,7 +49548,7 @@ paths: type: array items: *179 examples: - response-if-child-teams-exist: &633 + response-if-child-teams-exist: &634 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50302,6 +50344,8 @@ paths: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled '403': *27 '404': *6 '301': *313 @@ -60584,7 +60628,7 @@ paths: check. type: array items: *75 - deployment: &696 + deployment: &697 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65841,7 +65885,7 @@ paths: type: array items: *430 examples: - default: &640 + default: &641 value: total_count: 2 machines: @@ -67506,7 +67550,7 @@ paths: type: array items: *440 examples: - default: &552 + default: &553 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67797,7 +67841,7 @@ paths: type: array items: *444 examples: - default: &544 + default: &545 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68355,7 +68399,7 @@ paths: application/json: schema: *440 examples: - default: &532 + default: &533 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68977,7 +69021,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 title: Status description: The status of a commit. type: object @@ -69939,7 +69983,7 @@ paths: - size - type - url - - &557 + - &558 title: Content File description: Content File type: object @@ -70576,7 +70620,7 @@ paths: items: type: object properties: - placeholder_id: &609 + placeholder_id: &610 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -76454,7 +76498,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &727 + last_response: &728 title: Hook Response type: object properties: @@ -77522,7 +77566,7 @@ paths: parameters: - *309 - *310 - - &661 + - &662 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77956,7 +78000,7 @@ paths: type: array items: *503 examples: - default: &654 + default: &655 value: - id: 1 repository: @@ -79011,6 +79055,72 @@ paths: enabledForGitHubApps: true category: issues subcategory: comments + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": + put: + summary: Pin an issue comment + description: |- + You can use the REST API to pin comments on issues. + + This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + + - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. + tags: + - issues + operationId: issues/pin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment + parameters: + - *309 + - *310 + - *86 + responses: + '200': + description: Response + content: + application/json: + schema: *505 + examples: + default: *506 + '401': *23 + '403': *27 + '404': *6 + '410': *504 + '422': *15 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments + delete: + summary: Unpin an issue comment + description: You can use the REST API to unpin comments on issues. + tags: + - issues + operationId: issues/unpin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment + parameters: + - *309 + - *310 + - *86 + responses: + '204': + description: Response + '401': *23 + '403': *27 + '404': *6 + '410': *504 + '503': *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": get: summary: List reactions for an issue comment @@ -82055,6 +82165,7 @@ paths: pin: anyOf: - type: 'null' + - *528 required: - event - actor @@ -82330,7 +82441,7 @@ paths: type: string comments: type: array - items: &546 + items: &547 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -82874,7 +82985,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82979,9 +83090,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: id: 1 key: ssh-rsa AAA... @@ -83017,7 +83128,7 @@ paths: parameters: - *309 - *310 - - &530 + - &531 name: key_id description: The unique identifier of the key. in: path @@ -83029,9 +83140,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83051,7 +83162,7 @@ paths: parameters: - *309 - *310 - - *530 + - *531 responses: '204': description: Response @@ -83144,7 +83255,7 @@ paths: application/json: schema: *70 examples: - default: &531 + default: &532 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83190,7 +83301,7 @@ paths: application/json: schema: *70 examples: - default: *531 + default: *532 '404': *6 x-github: githubCloudOnly: false @@ -83592,7 +83703,7 @@ paths: application/json: schema: *440 examples: - default: *532 + default: *533 '204': description: Response when already merged '404': @@ -83758,7 +83869,7 @@ paths: application/json: schema: *251 examples: - default: &533 + default: &534 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83819,7 +83930,7 @@ paths: parameters: - *309 - *310 - - &534 + - &535 name: milestone_number description: The number that identifies the milestone. in: path @@ -83833,7 +83944,7 @@ paths: application/json: schema: *251 examples: - default: *533 + default: *534 '404': *6 x-github: githubCloudOnly: false @@ -83852,7 +83963,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 requestBody: required: false content: @@ -83892,7 +84003,7 @@ paths: application/json: schema: *251 examples: - default: *533 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83910,7 +84021,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 responses: '204': description: Response @@ -83933,7 +84044,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 - *17 - *19 responses: @@ -83966,10 +84077,10 @@ paths: parameters: - *309 - *310 - - *535 - *536 - - *77 - *537 + - *77 + - *538 - *17 - *19 responses: @@ -83981,7 +84092,7 @@ paths: type: array items: *97 examples: - default: *538 + default: *539 headers: Link: *57 x-github: @@ -84071,7 +84182,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &540 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -84215,7 +84326,7 @@ paths: - custom_404 - public examples: - default: &540 + default: &541 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -84312,9 +84423,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 '422': *15 '409': *50 x-github: @@ -84476,7 +84587,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Page Build description: Page Build type: object @@ -84623,9 +84734,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: &542 + default: &543 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84685,9 +84796,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84818,7 +84929,7 @@ paths: parameters: - *309 - *310 - - &543 + - &544 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84878,7 +84989,7 @@ paths: parameters: - *309 - *310 - - *543 + - *544 responses: '204': *175 '404': *6 @@ -85450,7 +85561,7 @@ paths: type: array items: *444 examples: - default: *544 + default: *545 headers: Link: *57 '304': *35 @@ -85550,7 +85661,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85790,7 +85901,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: *545 + auto_merge: *546 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85892,7 +86003,7 @@ paths: - merged_by - review_comments examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86449,9 +86560,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: &551 + default: &552 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86536,9 +86647,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: &547 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86637,9 +86748,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *547 + default: *548 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86842,7 +86953,7 @@ paths: parameters: - *309 - *310 - - &550 + - &551 name: pull_number description: The number that identifies the pull request. in: path @@ -86855,9 +86966,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *548 + schema: *549 examples: - default: *549 + default: *550 '304': *35 '404': *6 '406': @@ -86894,7 +87005,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -86936,9 +87047,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: - default: *549 + default: *550 '422': *15 '403': *27 x-github: @@ -86962,7 +87073,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -87065,7 +87176,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *94 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -87086,9 +87197,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: *551 + default: *552 headers: Link: *57 x-github: @@ -87123,7 +87234,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -87229,7 +87340,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: example-for-a-multi-line-comment: value: @@ -87319,7 +87430,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *86 requestBody: required: true @@ -87342,7 +87453,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -87430,7 +87541,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -87442,7 +87553,7 @@ paths: type: array items: *440 examples: - default: *552 + default: *553 headers: Link: *57 x-github: @@ -87474,7 +87585,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -87524,7 +87635,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 responses: '204': description: Response if pull request has been merged @@ -87549,7 +87660,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -87663,7 +87774,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 responses: '200': description: Response @@ -87740,7 +87851,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -88315,7 +88426,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -88856,7 +88967,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -88866,7 +88977,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89024,7 +89135,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -89114,9 +89225,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &555 + default: &556 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89181,8 +89292,8 @@ paths: parameters: - *309 - *310 - - *550 - - &554 + - *551 + - &555 name: review_id description: The unique identifier of the review. in: path @@ -89194,9 +89305,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &556 + default: &557 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89257,8 +89368,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89281,7 +89392,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -89345,16 +89456,16 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *555 + default: *556 '422': *7 '404': *6 x-github: @@ -89383,8 +89494,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 - *17 - *19 responses: @@ -89644,8 +89755,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89674,7 +89785,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -89739,8 +89850,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89775,9 +89886,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *556 + default: *557 '404': *6 '422': *7 '403': *27 @@ -89801,7 +89912,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -89879,9 +89990,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: type: file encoding: base64 @@ -89944,9 +90055,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '422': *15 x-github: @@ -89979,7 +90090,7 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: default: value: @@ -90150,9 +90261,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90259,7 +90370,7 @@ paths: parameters: - *309 - *310 - - &561 + - &562 name: asset_id description: The unique identifier of the asset. in: path @@ -90271,9 +90382,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &562 + default: &563 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -90326,7 +90437,7 @@ paths: parameters: - *309 - *310 - - *561 + - *562 requestBody: required: false content: @@ -90355,9 +90466,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90375,7 +90486,7 @@ paths: parameters: - *309 - *310 - - *561 + - *562 responses: '204': description: Response @@ -90493,9 +90604,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90526,9 +90637,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '404': *6 x-github: githubCloudOnly: false @@ -90552,7 +90663,7 @@ paths: parameters: - *309 - *310 - - &564 + - &565 name: release_id description: The unique identifier of the release. in: path @@ -90566,9 +90677,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '401': description: Unauthorized x-github: @@ -90588,7 +90699,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 requestBody: required: false content: @@ -90652,9 +90763,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '404': description: Not Found if the discussion category name is invalid content: @@ -90677,7 +90788,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 responses: '204': description: Response @@ -90699,7 +90810,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - *17 - *19 responses: @@ -90709,7 +90820,7 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: default: value: @@ -90792,7 +90903,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - name: name in: query required: true @@ -90818,7 +90929,7 @@ paths: description: Response for successful upload content: application/json: - schema: *560 + schema: *561 examples: response-for-successful-upload: value: @@ -90875,7 +90986,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -90924,7 +91035,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 requestBody: required: true content: @@ -90987,7 +91098,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - *508 responses: '204': @@ -91031,7 +91142,7 @@ paths: oneOf: - allOf: - *272 - - &565 + - &566 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91052,67 +91163,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *273 - - *565 + - *566 - allOf: - *274 - - *565 + - *566 - allOf: - *275 - - *565 + - *566 - allOf: + - *567 - *566 - - *565 - allOf: - *276 - - *565 + - *566 - allOf: - *277 - - *565 + - *566 - allOf: - *278 - - *565 + - *566 - allOf: - *279 - - *565 + - *566 - allOf: - *280 - - *565 + - *566 - allOf: - *281 - - *565 + - *566 - allOf: - *282 - - *565 + - *566 - allOf: - *283 - - *565 + - *566 - allOf: - *284 - - *565 + - *566 - allOf: - *285 - - *565 + - *566 - allOf: - *286 - - *565 + - *566 - allOf: - *287 - - *565 + - *566 - allOf: - *288 - - *565 + - *566 - allOf: - *289 - - *565 + - *566 - allOf: - *290 - - *565 + - *566 - allOf: - *291 - - *565 + - *566 - allOf: - *292 - - *565 + - *566 examples: default: value: @@ -91163,7 +91274,7 @@ paths: schema: type: boolean default: true - - *567 + - *568 responses: '200': description: Response @@ -91248,7 +91359,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *568 + items: *569 required: - name - enforcement @@ -91281,7 +91392,7 @@ paths: application/json: schema: *293 examples: - default: &578 + default: &579 value: id: 42 name: super cool ruleset @@ -91330,10 +91441,10 @@ paths: parameters: - *309 - *310 - - *569 - *570 - *571 - *572 + - *573 - *17 - *19 responses: @@ -91341,9 +91452,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '500': *104 x-github: @@ -91366,15 +91477,15 @@ paths: parameters: - *309 - *310 - - *575 + - *576 responses: '200': description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 '500': *104 x-github: @@ -91425,7 +91536,7 @@ paths: application/json: schema: *293 examples: - default: *578 + default: *579 '404': *6 '500': *104 put: @@ -91478,7 +91589,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *568 + items: *569 examples: default: value: @@ -91508,7 +91619,7 @@ paths: application/json: schema: *293 examples: - default: *578 + default: *579 '404': *6 '500': *104 delete: @@ -91569,7 +91680,7 @@ paths: type: array items: *296 examples: - default: *579 + default: *580 '404': *6 '500': *104 x-github: @@ -91607,7 +91718,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: default: value: @@ -91664,20 +91775,20 @@ paths: parameters: - *309 - *310 - - *581 - *582 - *583 - *584 - *585 + - *586 - *51 - *19 - *17 - - *586 - *587 - *588 - *589 - *590 - *591 + - *592 responses: '200': description: Response @@ -91685,7 +91796,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 type: object properties: number: *162 @@ -91701,8 +91812,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *592 - resolution: *593 + state: *593 + resolution: *594 resolved_at: type: - string @@ -91796,7 +91907,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *594 + - *595 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91944,13 +92055,13 @@ paths: - *309 - *310 - *406 - - *591 + - *592 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: default: value: @@ -92014,8 +92125,8 @@ paths: schema: type: object properties: - state: *592 - resolution: *593 + state: *593 + resolution: *594 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92051,7 +92162,7 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: default: value: @@ -92159,7 +92270,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &747 + items: &748 type: object properties: type: @@ -92186,7 +92297,6 @@ paths: - commit details: oneOf: - - *596 - *597 - *598 - *599 @@ -92199,6 +92309,7 @@ paths: - *606 - *607 - *608 + - *609 examples: default: value: @@ -92293,14 +92404,14 @@ paths: schema: type: object properties: - reason: &610 + reason: &611 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *609 + placeholder_id: *610 required: - reason - placeholder_id @@ -92317,7 +92428,7 @@ paths: schema: type: object properties: - reason: *610 + reason: *611 expire_at: type: - string @@ -92380,7 +92491,7 @@ paths: properties: incremental_scans: type: array - items: &611 + items: &612 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92408,15 +92519,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *611 + items: *612 backfill_scans: type: array - items: *611 + items: *612 custom_pattern_backfill_scans: type: array items: allOf: - - *611 + - *612 - type: object properties: pattern_name: @@ -92531,9 +92642,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 '400': *14 '404': *6 x-github: @@ -92727,9 +92838,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &615 + default: &616 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93076,7 +93187,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -93225,15 +93336,15 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *615 + default: *616 '403': *27 '404': *6 x-github: @@ -93259,7 +93370,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 requestBody: required: true content: @@ -93430,10 +93541,10 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *615 - add_credit: *615 + default: *616 + add_credit: *616 '403': *27 '404': *6 '422': @@ -93473,7 +93584,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '202': *37 '400': *14 @@ -93502,7 +93613,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '202': description: Response @@ -93643,7 +93754,7 @@ paths: application/json: schema: type: array - items: &616 + items: &617 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94016,7 +94127,7 @@ paths: application/json: schema: type: array - items: *616 + items: *617 examples: default: value: @@ -94106,7 +94217,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -94200,7 +94311,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &618 + schema: &619 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94300,7 +94411,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: default: value: @@ -94440,7 +94551,7 @@ paths: application/json: schema: type: array - items: &619 + items: &620 title: Tag protection description: Tag protection type: object @@ -94521,7 +94632,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default: value: @@ -94669,7 +94780,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &621 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94681,7 +94792,7 @@ paths: required: - names examples: - default: &621 + default: &622 value: names: - octocat @@ -94736,9 +94847,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '404': *6 '422': *7 x-github: @@ -94761,7 +94872,7 @@ paths: parameters: - *309 - *310 - - &622 + - &623 name: per description: The time frame to display results for. in: query @@ -94792,7 +94903,7 @@ paths: - 128 clones: type: array - items: &623 + items: &624 title: Traffic type: object properties: @@ -95040,7 +95151,7 @@ paths: parameters: - *309 - *310 - - *622 + - *623 responses: '200': description: Response @@ -95061,7 +95172,7 @@ paths: - 3782 views: type: array - items: *623 + items: *624 required: - uniques - count @@ -95831,7 +95942,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &624 + text_matches: &625 title: Search Result Text Matches type: array items: @@ -95994,7 +96105,7 @@ paths: enum: - author-date - committer-date - - &625 + - &626 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -96114,7 +96225,7 @@ paths: type: number node_id: type: string - text_matches: *624 + text_matches: *625 required: - sha - node_id @@ -96306,7 +96417,7 @@ paths: - interactions - created - updated - - *625 + - *626 - *17 - *19 - name: advanced_search @@ -96403,11 +96514,11 @@ paths: type: - string - 'null' - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: type: string state_reason: @@ -96435,7 +96546,7 @@ paths: - string - 'null' format: date-time - text_matches: *624 + text_matches: *625 pull_request: type: object properties: @@ -96658,7 +96769,7 @@ paths: enum: - created - updated - - *625 + - *626 - *17 - *19 responses: @@ -96703,7 +96814,7 @@ paths: - 'null' score: type: number - text_matches: *624 + text_matches: *625 required: - id - node_id @@ -96788,7 +96899,7 @@ paths: - forks - help-wanted-issues - updated - - *625 + - *626 - *17 - *19 responses: @@ -96995,6 +97106,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -97025,7 +97138,7 @@ paths: - admin - pull - push - text_matches: *624 + text_matches: *625 temp_clone_token: type: string allow_merge_commit: @@ -97333,7 +97446,7 @@ paths: - string - 'null' format: uri - text_matches: *624 + text_matches: *625 related: type: - array @@ -97526,7 +97639,7 @@ paths: - followers - repositories - joined - - *625 + - *626 - *17 - *19 responses: @@ -97636,7 +97749,7 @@ paths: type: - boolean - 'null' - text_matches: *624 + text_matches: *625 blog: type: - string @@ -97718,7 +97831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &629 + - &630 name: team_id description: The unique identifier of the team. in: path @@ -97759,7 +97872,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *629 + - *630 requestBody: required: true content: @@ -97860,7 +97973,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *629 + - *630 responses: '204': description: Response @@ -97889,7 +98002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -97927,7 +98040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *629 + - *630 - name: role description: Filters members returned by their role in the team. in: query @@ -97978,7 +98091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98015,7 +98128,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98055,7 +98168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98092,7 +98205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 responses: '200': @@ -98101,7 +98214,7 @@ paths: application/json: schema: *308 examples: - response-if-user-is-a-team-maintainer: *630 + response-if-user-is-a-team-maintainer: *631 '404': *6 x-github: githubCloudOnly: false @@ -98134,7 +98247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 requestBody: required: false @@ -98162,7 +98275,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *631 + response-if-users-membership-with-team-is-now-pending: *632 '403': description: Forbidden if team synchronization is set up '422': @@ -98196,7 +98309,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98224,7 +98337,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -98266,7 +98379,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *629 + - *630 - *309 - *310 responses: @@ -98274,7 +98387,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *632 + schema: *633 examples: alternative-response-with-extra-repository-information: value: @@ -98425,7 +98538,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *629 + - *630 - *309 - *310 requestBody: @@ -98477,7 +98590,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *629 + - *630 - *309 - *310 responses: @@ -98504,7 +98617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -98516,7 +98629,7 @@ paths: type: array items: *179 examples: - response-if-child-teams-exist: *633 + response-if-child-teams-exist: *634 headers: Link: *57 '404': *6 @@ -98549,7 +98662,7 @@ paths: application/json: schema: oneOf: - - &635 + - &636 title: Private User description: Private User type: object @@ -98799,7 +98912,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *634 + - *635 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98959,7 +99072,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -99357,7 +99470,7 @@ paths: type: integer secrets: type: array - items: &636 + items: &637 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99477,7 +99590,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -99623,7 +99736,7 @@ paths: type: array items: *144 examples: - default: *637 + default: *638 '401': *23 '403': *27 '404': *6 @@ -99890,7 +100003,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &639 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99943,7 +100056,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &639 + default: &640 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99988,9 +100101,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *639 + default: *640 '404': *6 x-github: githubCloudOnly: false @@ -100029,7 +100142,7 @@ paths: type: array items: *430 examples: - default: *640 + default: *641 '304': *35 '500': *104 '401': *23 @@ -100995,7 +101108,7 @@ paths: type: array items: *232 examples: - default: &651 + default: &652 value: - id: 197 name: hello_docker @@ -101096,7 +101209,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: Email description: Email type: object @@ -101166,9 +101279,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: &653 + default: &654 value: - email: octocat@github.com verified: true @@ -101245,7 +101358,7 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: default: value: @@ -101503,7 +101616,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: GPG Key description: A unique encryption key type: object @@ -101648,7 +101761,7 @@ paths: - subkeys - revoked examples: - default: &669 + default: &670 value: - id: 3 name: Octocat's GPG Key @@ -101733,9 +101846,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: &643 + default: &644 value: id: 3 name: Octocat's GPG Key @@ -101792,7 +101905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &644 + - &645 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101804,9 +101917,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: *643 + default: *644 '404': *6 '304': *35 '403': *27 @@ -101829,7 +101942,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *644 + - *645 responses: '204': description: Response @@ -102286,7 +102399,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -102389,9 +102502,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102424,15 +102537,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *530 + - *531 responses: '200': description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -102455,7 +102568,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *530 + - *531 responses: '204': description: Response @@ -102488,7 +102601,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102567,7 +102680,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102629,9 +102742,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *57 '304': *35 @@ -103649,7 +103762,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *227 - - *649 + - *650 responses: '204': description: Response @@ -103764,7 +103877,7 @@ paths: - docker - nuget - container - - *650 + - *651 - *19 - *17 responses: @@ -103776,8 +103889,8 @@ paths: type: array items: *232 examples: - default: *651 - '400': *652 + default: *652 + '400': *653 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103806,7 +103919,7 @@ paths: application/json: schema: *232 examples: - default: &670 + default: &671 value: id: 40201 name: octo-name @@ -104168,9 +104281,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *653 + default: *654 headers: Link: *57 '304': *35 @@ -104283,7 +104396,7 @@ paths: type: array items: *69 examples: - default: &660 + default: &661 summary: Default response value: - id: 1296269 @@ -104643,7 +104756,7 @@ paths: type: array items: *503 examples: - default: *654 + default: *655 headers: Link: *57 '304': *35 @@ -104722,7 +104835,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Social account description: Social media account type: object @@ -104739,7 +104852,7 @@ paths: - provider - url examples: - default: &656 + default: &657 value: - provider: twitter url: https://twitter.com/github @@ -104802,9 +104915,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 '422': *15 '304': *35 '404': *6 @@ -104892,7 +105005,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104912,7 +105025,7 @@ paths: - title - created_at examples: - default: &688 + default: &689 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104977,9 +105090,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: &658 + default: &659 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105009,7 +105122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &659 + - &660 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105021,9 +105134,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: *658 + default: *659 '404': *6 '304': *35 '403': *27 @@ -105046,7 +105159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *659 + - *660 responses: '204': description: Response @@ -105075,7 +105188,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &689 + - &690 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -105100,11 +105213,11 @@ paths: type: array items: *69 examples: - default-response: *660 + default-response: *661 application/vnd.github.v3.star+json: schema: type: array - items: &690 + items: &691 title: Starred Repository description: Starred Repository type: object @@ -105473,10 +105586,10 @@ paths: application/json: schema: oneOf: + - *636 - *635 - - *634 examples: - default-response: &664 + default-response: &665 summary: Default response value: login: octocat @@ -105511,7 +105624,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &665 + response-with-git-hub-plan-information: &666 summary: Response with GitHub plan information value: login: octocat @@ -105568,7 +105681,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &662 + - &663 name: user_id description: The unique identifier of the user. in: path @@ -105634,7 +105747,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *661 + - *662 - *17 responses: '200': @@ -105669,7 +105782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *662 + - *663 - *250 requestBody: required: true @@ -105744,7 +105857,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *663 + schema: *664 examples: table_view: summary: Response for creating a table view @@ -105796,11 +105909,11 @@ paths: application/json: schema: oneOf: + - *636 - *635 - - *634 examples: - default-response: *664 - response-with-git-hub-plan-information: *665 + default-response: *665 + response-with-git-hub-plan-information: *666 '404': *6 x-github: githubCloudOnly: false @@ -105850,8 +105963,8 @@ paths: required: - subject_digests examples: - default: *666 - withPredicateType: *667 + default: *667 + withPredicateType: *668 responses: '200': description: Response @@ -105905,7 +106018,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106151,7 +106264,7 @@ paths: type: array items: *232 examples: - default: *651 + default: *652 '403': *27 '401': *23 x-github: @@ -106535,9 +106648,9 @@ paths: application/json: schema: type: array - items: *642 + items: *643 examples: - default: *669 + default: *670 headers: Link: *57 x-github: @@ -106766,7 +106879,7 @@ paths: - docker - nuget - container - - *650 + - *651 - *61 - *19 - *17 @@ -106779,10 +106892,10 @@ paths: type: array items: *232 examples: - default: *651 + default: *652 '403': *27 '401': *23 - '400': *652 + '400': *653 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106812,7 +106925,7 @@ paths: application/json: schema: *232 examples: - default: *670 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107161,7 +107274,7 @@ paths: type: array items: *253 examples: - default: *671 + default: *672 headers: Link: *57 '304': *35 @@ -107221,7 +107334,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *672 + items: *673 required: - name - data_type @@ -107237,7 +107350,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *673 + iteration_configuration: *674 required: - name - data_type @@ -107259,8 +107372,8 @@ paths: value: name: Due date data_type: date - single_select_field: *674 - iteration_field: *675 + single_select_field: *675 + iteration_field: *676 responses: '201': description: Response @@ -107268,11 +107381,11 @@ paths: application/json: schema: *253 examples: - text_field: *676 - number_field: *677 - date_field: *678 - single_select_field: *679 - iteration_field: *680 + text_field: *677 + number_field: *678 + date_field: *679 + single_select_field: *680 + iteration_field: *681 '304': *35 '403': *27 '401': *23 @@ -107294,7 +107407,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *250 - - *681 + - *682 - *61 responses: '200': @@ -107303,7 +107416,7 @@ paths: application/json: schema: *253 examples: - default: *682 + default: *683 headers: Link: *57 '304': *35 @@ -107660,7 +107773,7 @@ paths: parameters: - *250 - *61 - - *683 + - *684 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -107935,7 +108048,7 @@ paths: - *107 - *109 - *108 - - *684 + - *685 - *110 responses: '200': @@ -108066,7 +108179,7 @@ paths: parameters: - *61 - *107 - - *685 + - *686 - *108 responses: '200': @@ -108165,9 +108278,9 @@ paths: - *107 - *109 - *108 - - *686 - - *110 - *687 + - *110 + - *688 responses: '200': description: Response when getting a billing usage summary @@ -108301,9 +108414,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 headers: Link: *57 x-github: @@ -108333,9 +108446,9 @@ paths: application/json: schema: type: array - items: *657 + items: *658 examples: - default: *688 + default: *689 headers: Link: *57 x-github: @@ -108360,7 +108473,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *61 - - *689 + - *690 - *51 - *17 - *19 @@ -108372,11 +108485,11 @@ paths: schema: anyOf: - type: array - items: *690 + items: *691 - type: array items: *69 examples: - default-response: *660 + default-response: *661 headers: Link: *57 x-github: @@ -108536,7 +108649,7 @@ webhooks: type: string enum: - disabled - enterprise: &691 + enterprise: &692 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108605,7 +108718,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &692 + installation: &693 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108626,7 +108739,7 @@ webhooks: required: - id - node_id - organization: &693 + organization: &694 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108699,7 +108812,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &694 + repository: &695 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109044,6 +109157,12 @@ webhooks: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -109612,10 +109731,10 @@ webhooks: type: string enum: - enabled - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -109691,11 +109810,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: &695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: &696 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -109918,11 +110037,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: *695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: *696 sender: *4 required: - action @@ -110110,11 +110229,11 @@ webhooks: - everyone required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: *695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: *696 sender: *4 required: - action @@ -110198,7 +110317,7 @@ webhooks: type: string enum: - completed - check_run: &697 + check_run: &698 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110308,7 +110427,7 @@ webhooks: - examples: - neutral - deployment: *696 + deployment: *697 details_url: type: string examples: @@ -110406,10 +110525,10 @@ webhooks: - output - app - pull_requests - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -110800,11 +110919,11 @@ webhooks: type: string enum: - created - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -111198,11 +111317,11 @@ webhooks: type: string enum: - requested_action - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 requested_action: description: The action requested by the user. type: object @@ -111605,11 +111724,11 @@ webhooks: type: string enum: - rerequested - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -112594,10 +112713,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -113301,10 +113420,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -114002,10 +114121,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -114326,20 +114445,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &698 + commit_oid: &699 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *691 - installation: *692 - organization: *693 - ref: &699 + enterprise: *692 + installation: *693 + organization: *694 + ref: &700 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -114747,12 +114866,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115035,12 +115154,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115386,12 +115505,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115681,9 +115800,9 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115691,7 +115810,7 @@ webhooks: type: - string - 'null' - repository: *694 + repository: *695 sender: *4 required: - action @@ -115937,12 +116056,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -116263,10 +116382,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -116526,10 +116645,10 @@ webhooks: - updated_at - author_association - body - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -116610,18 +116729,18 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *693 - pusher_type: &700 + organization: *694 + pusher_type: &701 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &701 + ref: &702 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116631,7 +116750,7 @@ webhooks: enum: - tag - branch - repository: *694 + repository: *695 sender: *4 required: - ref @@ -116714,9 +116833,9 @@ webhooks: enum: - created definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116801,9 +116920,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116881,9 +117000,9 @@ webhooks: enum: - promote_to_enterprise definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116961,9 +117080,9 @@ webhooks: enum: - updated definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -117040,10 +117159,10 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - repository: *694 - organization: *693 + enterprise: *692 + installation: *693 + repository: *695 + organization: *694 sender: *4 new_property_values: type: array @@ -117128,18 +117247,18 @@ webhooks: title: delete event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - pusher_type: *700 - ref: *701 + enterprise: *692 + installation: *693 + organization: *694 + pusher_type: *701 + ref: *702 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *694 + repository: *695 sender: *4 required: - ref @@ -117224,10 +117343,10 @@ webhooks: enum: - auto_dismissed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117312,10 +117431,10 @@ webhooks: enum: - auto_reopened alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117400,10 +117519,10 @@ webhooks: enum: - created alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117486,10 +117605,10 @@ webhooks: enum: - dismissed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117572,10 +117691,10 @@ webhooks: enum: - fixed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117659,10 +117778,10 @@ webhooks: enum: - reintroduced alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117745,10 +117864,10 @@ webhooks: enum: - reopened alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117825,9 +117944,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - key: &702 + enterprise: *692 + installation: *693 + key: &703 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117865,8 +117984,8 @@ webhooks: - verified - created_at - read_only - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -117943,11 +118062,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - key: *702 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + key: *703 + organization: *694 + repository: *695 sender: *4 required: - action @@ -118514,12 +118633,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: &706 + workflow: &707 title: Workflow type: - object @@ -119260,10 +119379,10 @@ webhooks: deployment: *465 pull_requests: type: array - items: *548 - repository: *694 - organization: *693 - installation: *692 + items: *549 + repository: *695 + organization: *694 + installation: *693 sender: *4 responses: '200': @@ -119334,7 +119453,7 @@ webhooks: type: string enum: - approved - approver: &703 + approver: &704 type: object properties: avatar_url: @@ -119377,11 +119496,11 @@ webhooks: type: string comment: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - reviewers: &704 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + reviewers: &705 type: array items: type: object @@ -119462,7 +119581,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &705 + workflow_job_run: &706 type: object properties: conclusion: @@ -120208,18 +120327,18 @@ webhooks: type: string enum: - rejected - approver: *703 + approver: *704 comment: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - reviewers: *704 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + reviewers: *705 sender: *4 since: type: string - workflow_job_run: *705 + workflow_job_run: *706 workflow_job_runs: type: array items: @@ -120936,13 +121055,13 @@ webhooks: type: string enum: - requested - enterprise: *691 + enterprise: *692 environment: type: string - installation: *692 - organization: *693 - repository: *694 - requestor: &711 + installation: *693 + organization: *694 + repository: *695 + requestor: &712 title: User type: - object @@ -122875,12 +122994,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Deployment Workflow Run type: @@ -123571,7 +123690,7 @@ webhooks: type: string enum: - answered - answer: &709 + answer: &710 type: object properties: author_association: @@ -123731,11 +123850,11 @@ webhooks: - created_at - updated_at - body - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -123862,11 +123981,11 @@ webhooks: - from required: - category - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -123949,11 +124068,11 @@ webhooks: type: string enum: - closed - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124035,7 +124154,7 @@ webhooks: type: string enum: - created - comment: &708 + comment: &709 type: object properties: author_association: @@ -124195,11 +124314,11 @@ webhooks: - updated_at - body - reactions - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124282,12 +124401,12 @@ webhooks: type: string enum: - deleted - comment: *708 - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + comment: *709 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124382,12 +124501,12 @@ webhooks: - from required: - body - comment: *708 - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + comment: *709 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124471,11 +124590,11 @@ webhooks: type: string enum: - created - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124557,11 +124676,11 @@ webhooks: type: string enum: - deleted - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124661,11 +124780,11 @@ webhooks: type: string required: - from - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124747,10 +124866,10 @@ webhooks: type: string enum: - labeled - discussion: *707 - enterprise: *691 - installation: *692 - label: &710 + discussion: *708 + enterprise: *692 + installation: *693 + label: &711 title: Label type: object properties: @@ -124783,8 +124902,8 @@ webhooks: - color - default - description - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124867,11 +124986,11 @@ webhooks: type: string enum: - locked - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124953,11 +125072,11 @@ webhooks: type: string enum: - pinned - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125039,11 +125158,11 @@ webhooks: type: string enum: - reopened - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125128,16 +125247,16 @@ webhooks: changes: type: object properties: - new_discussion: *707 - new_repository: *694 + new_discussion: *708 + new_repository: *695 required: - new_discussion - new_repository - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125220,10 +125339,10 @@ webhooks: type: string enum: - unanswered - discussion: *707 - old_answer: *709 - organization: *693 - repository: *694 + discussion: *708 + old_answer: *710 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125305,12 +125424,12 @@ webhooks: type: string enum: - unlabeled - discussion: *707 - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125393,11 +125512,11 @@ webhooks: type: string enum: - unlocked - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125479,11 +125598,11 @@ webhooks: type: string enum: - unpinned - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125556,7 +125675,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *691 + enterprise: *692 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126234,9 +126353,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - forkee @@ -126382,9 +126501,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pages: description: The pages that were updated. type: array @@ -126422,7 +126541,7 @@ webhooks: - action - sha - html_url - repository: *694 + repository: *695 sender: *4 required: - pages @@ -126498,10 +126617,10 @@ webhooks: type: string enum: - created - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: &712 + organization: *694 + repositories: &713 description: An array of repository objects that the installation can access. type: array @@ -126527,8 +126646,8 @@ webhooks: - name - full_name - private - repository: *694 - requester: *711 + repository: *695 + requester: *712 sender: *4 required: - action @@ -126603,11 +126722,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -126684,11 +126803,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -126765,10 +126884,10 @@ webhooks: type: string enum: - added - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories_added: &713 + organization: *694 + repositories_added: &714 description: An array of repository objects, which were added to the installation. type: array @@ -126814,15 +126933,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *694 - repository_selection: &714 + repository: *695 + repository_selection: &715 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *711 + requester: *712 sender: *4 required: - action @@ -126901,10 +127020,10 @@ webhooks: type: string enum: - removed - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories_added: *713 + organization: *694 + repositories_added: *714 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126931,9 +127050,9 @@ webhooks: - name - full_name - private - repository: *694 - repository_selection: *714 - requester: *711 + repository: *695 + repository_selection: *715 + requester: *712 sender: *4 required: - action @@ -127012,11 +127131,11 @@ webhooks: type: string enum: - suspend - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -127198,10 +127317,10 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 target_type: type: string @@ -127280,11 +127399,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -127450,6 +127569,7 @@ webhooks: pin: anyOf: - type: 'null' + - *528 user: title: User type: @@ -127535,8 +127655,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128348,8 +128468,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128710,8 +128830,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -128791,7 +128911,7 @@ webhooks: type: string enum: - deleted - comment: &715 + comment: &716 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128948,6 +129068,7 @@ webhooks: pin: anyOf: - type: 'null' + - *528 required: - url - html_url @@ -128961,8 +129082,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129770,8 +129891,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130134,8 +130255,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -130215,7 +130336,7 @@ webhooks: type: string enum: - edited - changes: &739 + changes: &740 description: The changes to the comment. type: object properties: @@ -130227,9 +130348,9 @@ webhooks: type: string required: - from - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131040,8 +131161,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131402,8 +131523,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -131484,9 +131605,9 @@ webhooks: type: string enum: - pinned - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132299,8 +132420,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132663,8 +132784,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -132744,9 +132865,9 @@ webhooks: type: string enum: - unpinned - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133559,8 +133680,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133923,8 +134044,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134013,9 +134134,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134104,9 +134225,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134194,9 +134315,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134285,9 +134406,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134367,10 +134488,10 @@ webhooks: type: string enum: - assigned - assignee: *711 - enterprise: *691 - installation: *692 - issue: &718 + assignee: *712 + enterprise: *692 + installation: *693 + issue: &719 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135177,11 +135298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135301,8 +135422,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -135382,8 +135503,8 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136195,11 +136316,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136462,8 +136583,8 @@ webhooks: required: - state - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -136542,8 +136663,8 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137346,11 +137467,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137469,8 +137590,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -137549,8 +137670,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138376,11 +138497,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138478,7 +138599,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &716 + milestone: &717 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138621,8 +138742,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -138721,8 +138842,8 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139529,11 +139650,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139653,9 +139774,9 @@ webhooks: - active_lock_reason - body - reactions - label: *710 - organization: *693 - repository: *694 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -139735,8 +139856,8 @@ webhooks: type: string enum: - labeled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140542,11 +140663,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140666,9 +140787,9 @@ webhooks: - active_lock_reason - body - reactions - label: *710 - organization: *693 - repository: *694 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -140748,8 +140869,8 @@ webhooks: type: string enum: - locked - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141580,11 +141701,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141681,8 +141802,8 @@ webhooks: format: uri user_view_type: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -141761,8 +141882,8 @@ webhooks: type: string enum: - milestoned - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142587,11 +142708,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142688,9 +142809,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *716 - organization: *693 - repository: *694 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -143577,11 +143698,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143805,6 +143926,10 @@ webhooks: has_discussions: description: Whether the repository has discussions enabled. type: boolean + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_downloads: description: Whether downloads are enabled. type: boolean @@ -144158,8 +144283,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144966,11 +145091,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145089,8 +145214,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -145170,9 +145295,9 @@ webhooks: type: string enum: - pinned - enterprise: *691 - installation: *692 - issue: &717 + enterprise: *692 + installation: *693 + issue: &718 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145973,11 +146098,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146096,8 +146221,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -146176,8 +146301,8 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147006,11 +147131,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147108,8 +147233,8 @@ webhooks: user_view_type: type: string type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -147993,11 +148118,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148259,6 +148384,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -148596,11 +148725,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *691 - installation: *692 - issue: *717 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *718 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148680,12 +148809,12 @@ webhooks: type: string enum: - typed - enterprise: *691 - installation: *692 - issue: *718 + enterprise: *692 + installation: *693 + issue: *719 type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148766,7 +148895,7 @@ webhooks: type: string enum: - unassigned - assignee: &742 + assignee: &743 title: User type: - object @@ -148838,11 +148967,11 @@ webhooks: required: - login - id - enterprise: *691 - installation: *692 - issue: *718 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *719 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148921,12 +149050,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *691 - installation: *692 - issue: *718 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *719 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -149006,8 +149135,8 @@ webhooks: type: string enum: - unlocked - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149836,11 +149965,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149937,8 +150066,8 @@ webhooks: format: uri user_view_type: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150018,11 +150147,11 @@ webhooks: type: string enum: - unpinned - enterprise: *691 - installation: *692 - issue: *717 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *718 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150101,12 +150230,12 @@ webhooks: type: string enum: - untyped - enterprise: *691 - installation: *692 - issue: *718 + enterprise: *692 + installation: *693 + issue: *719 type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150186,11 +150315,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150268,11 +150397,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150382,11 +150511,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150468,9 +150597,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: &719 + enterprise: *692 + installation: *693 + marketplace_purchase: &720 title: Marketplace Purchase type: object required: @@ -150558,8 +150687,8 @@ webhooks: type: integer unit_count: type: integer - organization: *693 - previous_marketplace_purchase: &720 + organization: *694 + previous_marketplace_purchase: &721 title: Marketplace Purchase type: object properties: @@ -150643,7 +150772,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -150723,10 +150852,10 @@ webhooks: - changed effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150814,7 +150943,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -150896,10 +151025,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150985,7 +151114,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -151066,8 +151195,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 marketplace_purchase: title: Marketplace Purchase type: object @@ -151153,9 +151282,9 @@ webhooks: type: integer unit_count: type: integer - organization: *693 - previous_marketplace_purchase: *720 - repository: *694 + organization: *694 + previous_marketplace_purchase: *721 + repository: *695 sender: *4 required: - action @@ -151235,12 +151364,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 - previous_marketplace_purchase: *720 - repository: *694 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 + previous_marketplace_purchase: *721 + repository: *695 sender: *4 required: - action @@ -151342,11 +151471,11 @@ webhooks: type: string required: - to - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151448,11 +151577,11 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151531,11 +151660,11 @@ webhooks: type: string enum: - removed - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151613,11 +151742,11 @@ webhooks: type: string enum: - added - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151695,7 +151824,7 @@ webhooks: required: - login - id - team: &721 + team: &722 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151925,11 +152054,11 @@ webhooks: type: string enum: - removed - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152008,7 +152137,7 @@ webhooks: required: - login - id - team: *721 + team: *722 required: - action - scope @@ -152090,8 +152219,8 @@ webhooks: type: string enum: - checks_requested - installation: *692 - merge_group: &722 + installation: *693 + merge_group: &723 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -152117,8 +152246,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152204,10 +152333,10 @@ webhooks: - merged - invalidated - dequeued - installation: *692 - merge_group: *722 - organization: *693 - repository: *694 + installation: *693 + merge_group: *723 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152280,7 +152409,7 @@ webhooks: type: string enum: - deleted - enterprise: *691 + enterprise: *692 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -152389,12 +152518,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *692 - organization: *693 + installation: *693 + organization: *694 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -152474,11 +152603,11 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152557,9 +152686,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - milestone: &723 + enterprise: *692 + installation: *693 + milestone: &724 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152701,8 +152830,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152781,11 +152910,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152895,11 +153024,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152979,11 +153108,11 @@ webhooks: type: string enum: - opened - enterprise: *691 - installation: *692 - milestone: *723 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *724 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153062,11 +153191,11 @@ webhooks: type: string enum: - blocked - blocked_user: *711 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + blocked_user: *712 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153145,11 +153274,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *711 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + blocked_user: *712 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153228,9 +153357,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - membership: &724 + enterprise: *692 + installation: *693 + membership: &725 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -153340,8 +153469,8 @@ webhooks: - role - organization_url - user - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153419,11 +153548,11 @@ webhooks: type: string enum: - member_added - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153502,8 +153631,8 @@ webhooks: type: string enum: - member_invited - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153625,10 +153754,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 - user: *711 + user: *712 required: - action - invitation @@ -153706,11 +153835,11 @@ webhooks: type: string enum: - member_removed - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153797,11 +153926,11 @@ webhooks: properties: from: type: string - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153878,9 +154007,9 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 package: description: Information about the package. type: object @@ -154403,7 +154532,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &725 + items: &726 title: Ruby Gems metadata type: object properties: @@ -154500,7 +154629,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -154576,9 +154705,9 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 package: description: Information about the package. type: object @@ -154940,7 +155069,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *725 + items: *726 source_url: type: string format: uri @@ -155011,7 +155140,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -155191,12 +155320,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *691 + enterprise: *692 id: type: integer - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - id @@ -155273,7 +155402,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &726 + personal_access_token_request: &727 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -155423,10 +155552,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *691 - organization: *693 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155503,11 +155632,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *726 - enterprise: *691 - organization: *693 + personal_access_token_request: *727 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155583,11 +155712,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *726 - enterprise: *691 - organization: *693 + personal_access_token_request: *727 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155662,11 +155791,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *726 - organization: *693 - enterprise: *691 + personal_access_token_request: *727 + organization: *694 + enterprise: *692 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155771,7 +155900,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *727 + last_response: *728 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155803,8 +155932,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 zen: description: Random string of GitHub zen. @@ -156049,10 +156178,10 @@ webhooks: - from required: - note - enterprise: *691 - installation: *692 - organization: *693 - project_card: &728 + enterprise: *692 + installation: *693 + organization: *694 + project_card: &729 title: Project Card type: object properties: @@ -156175,7 +156304,7 @@ webhooks: - creator - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -156256,11 +156385,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project_card: *728 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_card: *729 + repository: *695 sender: *4 required: - action @@ -156340,9 +156469,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 project_card: title: Project Card type: object @@ -156472,7 +156601,7 @@ webhooks: repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -156566,11 +156695,11 @@ webhooks: - from required: - note - enterprise: *691 - installation: *692 - organization: *693 - project_card: *728 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_card: *729 + repository: *695 sender: *4 required: - action @@ -156664,9 +156793,9 @@ webhooks: - from required: - column_id - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 project_card: allOf: - title: Project Card @@ -156863,7 +156992,7 @@ webhooks: type: string required: - after_id - repository: *694 + repository: *695 sender: *4 required: - action @@ -156943,10 +157072,10 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - organization: *693 - project: &730 + enterprise: *692 + installation: *693 + organization: *694 + project: &731 title: Project type: object properties: @@ -157073,7 +157202,7 @@ webhooks: - creator - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -157153,10 +157282,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project_column: &729 + enterprise: *692 + installation: *693 + organization: *694 + project_column: &730 title: Project Column type: object properties: @@ -157196,7 +157325,7 @@ webhooks: - name - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -157275,14 +157404,14 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -157371,11 +157500,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 + repository: *695 sender: *4 required: - action @@ -157455,11 +157584,11 @@ webhooks: type: string enum: - moved - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 + repository: *695 sender: *4 required: - action @@ -157539,11 +157668,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157623,14 +157752,14 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - project: *730 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -157731,11 +157860,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157814,11 +157943,11 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157899,8 +158028,8 @@ webhooks: type: string enum: - closed - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -157982,8 +158111,8 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158065,8 +158194,8 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158188,8 +158317,8 @@ webhooks: type: string to: type: string - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158273,7 +158402,7 @@ webhooks: type: string enum: - archived - changes: &734 + changes: &735 type: object properties: archived_at: @@ -158289,9 +158418,9 @@ webhooks: - string - 'null' format: date-time - installation: *692 - organization: *693 - projects_v2_item: &731 + installation: *693 + organization: *694 + projects_v2_item: &732 title: Projects v2 Item description: An item belonging to a project type: object @@ -158431,9 +158560,9 @@ webhooks: - 'null' to: type: string - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158515,9 +158644,9 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158598,9 +158727,9 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158705,7 +158834,7 @@ webhooks: oneOf: - type: string - type: integer - - &732 + - &733 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158729,7 +158858,7 @@ webhooks: required: - id - name - - &733 + - &734 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158769,8 +158898,8 @@ webhooks: oneOf: - type: string - type: integer - - *732 - *733 + - *734 type: - 'null' - string @@ -158793,9 +158922,9 @@ webhooks: - 'null' required: - body - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158892,9 +159021,9 @@ webhooks: type: - string - 'null' - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158977,10 +159106,10 @@ webhooks: type: string enum: - restored - changes: *734 - installation: *692 - organization: *693 - projects_v2_item: *731 + changes: *735 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -159062,8 +159191,8 @@ webhooks: type: string enum: - reopened - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -159145,9 +159274,9 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159228,9 +159357,9 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159376,9 +159505,9 @@ webhooks: - string - 'null' format: date - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159449,10 +159578,10 @@ webhooks: title: public event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - repository @@ -159529,13 +159658,13 @@ webhooks: type: string enum: - assigned - assignee: *711 - enterprise: *691 - installation: *692 - number: &736 + assignee: *712 + enterprise: *692 + installation: *693 + number: &737 description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -160043,6 +160172,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -160693,6 +160826,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -161884,7 +162021,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -161966,11 +162103,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -162464,6 +162601,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_pages: type: boolean has_projects: @@ -163120,6 +163261,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -164312,7 +164457,7 @@ webhooks: - draft reason: type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -164394,11 +164539,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -164902,6 +165047,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -165548,6 +165697,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -166740,7 +166893,7 @@ webhooks: - draft reason: type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -166822,13 +166975,13 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: &737 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: &738 allOf: - - *548 + - *549 - type: object properties: allow_auto_merge: @@ -166890,7 +167043,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *694 + repository: *695 sender: *4 required: - action @@ -166971,12 +167124,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -167056,11 +167209,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *691 + enterprise: *692 milestone: *251 - number: *736 - organization: *693 - pull_request: &738 + number: *737 + organization: *694 + pull_request: &739 title: Pull Request type: object properties: @@ -167565,6 +167718,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -168209,6 +168366,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -169387,7 +169548,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -169466,11 +169627,11 @@ webhooks: type: string enum: - dequeued - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -169974,6 +170135,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170620,6 +170785,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -171816,7 +171985,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *694 + repository: *695 sender: *4 required: - action @@ -171940,12 +172109,12 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -172025,11 +172194,11 @@ webhooks: type: string enum: - enqueued - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -172533,6 +172702,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -173179,6 +173352,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -174360,7 +174537,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -174440,11 +174617,11 @@ webhooks: type: string enum: - labeled - enterprise: *691 - installation: *692 - label: *710 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + label: *711 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -174950,6 +175127,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -175600,6 +175781,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -176792,7 +176977,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -176873,10 +177058,10 @@ webhooks: type: string enum: - locked - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -177381,6 +177566,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -178031,6 +178220,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -179222,7 +179415,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -179302,12 +179495,12 @@ webhooks: type: string enum: - milestoned - enterprise: *691 + enterprise: *692 milestone: *251 - number: *736 - organization: *693 - pull_request: *738 - repository: *694 + number: *737 + organization: *694 + pull_request: *739 + repository: *695 sender: *4 required: - action @@ -179386,12 +179579,12 @@ webhooks: type: string enum: - opened - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179472,12 +179665,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179557,12 +179750,12 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179937,9 +180130,9 @@ webhooks: - start_side - side - reactions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -180442,6 +180635,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -181078,6 +181275,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182169,7 +182370,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -182249,7 +182450,7 @@ webhooks: type: string enum: - deleted - comment: &740 + comment: &741 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -182542,9 +182743,9 @@ webhooks: - start_side - side - reactions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -183045,6 +183246,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -183681,6 +183886,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -184762,7 +184971,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -184842,11 +185051,11 @@ webhooks: type: string enum: - edited - changes: *739 - comment: *740 - enterprise: *691 - installation: *692 - organization: *693 + changes: *740 + comment: *741 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -185349,6 +185558,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -185985,6 +186198,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -187067,7 +187284,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -187148,9 +187365,9 @@ webhooks: type: string enum: - dismissed - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -187654,6 +187871,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -188290,6 +188511,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189383,7 +189608,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 review: description: The review that was affected. type: object @@ -189634,9 +189859,9 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -191750,8 +191975,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 - review: &741 + repository: *695 + review: &742 description: The review that was affected. type: object properties: @@ -191989,12 +192214,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -192501,6 +192726,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -193142,6 +193371,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -194341,7 +194574,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_reviewer: title: User type: @@ -194427,12 +194660,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -194939,6 +195172,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -195587,6 +195824,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196786,7 +197027,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196981,12 +197222,12 @@ webhooks: type: string enum: - review_requested - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -197495,6 +197736,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -198143,6 +198388,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -199335,7 +199584,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_reviewer: title: User type: @@ -199422,12 +199671,12 @@ webhooks: type: string enum: - review_requested - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -199936,6 +200185,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -200584,6 +200837,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -201767,7 +202024,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201951,9 +202208,9 @@ webhooks: type: string enum: - submitted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -202457,6 +202714,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -203095,6 +203356,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -204189,8 +204454,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 - review: *741 + repository: *695 + review: *742 sender: *4 required: - action @@ -204270,9 +204535,9 @@ webhooks: type: string enum: - resolved - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -204774,6 +205039,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -205361,6 +205630,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -206403,7 +206676,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 sender: *4 thread: type: object @@ -206800,9 +207073,9 @@ webhooks: type: string enum: - unresolved - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -207302,6 +207575,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -207885,6 +208162,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -208916,7 +209197,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 sender: *4 thread: type: object @@ -209315,10 +209596,10 @@ webhooks: type: string before: type: string - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -209824,6 +210105,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -210470,6 +210755,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -211653,7 +211942,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -211735,11 +212024,11 @@ webhooks: type: string enum: - unassigned - assignee: *742 - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + assignee: *743 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -212247,6 +212536,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -212897,6 +213190,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -214089,7 +214386,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -214168,11 +214465,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *691 - installation: *692 - label: *710 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + label: *711 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -214678,6 +214975,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -215328,6 +215629,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -216511,7 +216816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -216592,10 +216897,10 @@ webhooks: type: string enum: - unlocked - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -217097,6 +217402,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -217745,6 +218054,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -218924,7 +219237,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -219127,7 +219440,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *691 + enterprise: *692 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -219222,8 +219535,8 @@ webhooks: - url - author - committer - installation: *692 - organization: *693 + installation: *693 + organization: *694 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -219391,6 +219704,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -219811,9 +220128,9 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 registry_package: type: object properties: @@ -220290,7 +220607,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *725 + items: *726 summary: type: string tag_name: @@ -220346,7 +220663,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -220424,9 +220741,9 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 registry_package: type: object properties: @@ -220738,7 +221055,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *725 + items: *726 summary: type: string tag_name: @@ -220788,7 +221105,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -220865,10 +221182,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - release: &743 + enterprise: *692 + installation: *693 + organization: *694 + release: &744 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221199,7 +221516,7 @@ webhooks: - updated_at - zipball_url - body - repository: *694 + repository: *695 sender: *4 required: - action @@ -221276,11 +221593,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -221397,11 +221714,11 @@ webhooks: type: boolean required: - to - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -221479,9 +221796,9 @@ webhooks: type: string enum: - prereleased - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -221817,7 +222134,7 @@ webhooks: - string - 'null' format: uri - repository: *694 + repository: *695 sender: *4 required: - action @@ -221893,10 +222210,10 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - release: &744 + enterprise: *692 + installation: *693 + organization: *694 + release: &745 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222229,7 +222546,7 @@ webhooks: - string - 'null' format: uri - repository: *694 + repository: *695 sender: *4 required: - action @@ -222305,11 +222622,11 @@ webhooks: type: string enum: - released - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -222385,11 +222702,11 @@ webhooks: type: string enum: - unpublished - enterprise: *691 - installation: *692 - organization: *693 - release: *744 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *745 + repository: *695 sender: *4 required: - action @@ -222465,11 +222782,11 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - repository_advisory: *612 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + repository_advisory: *613 sender: *4 required: - action @@ -222545,11 +222862,11 @@ webhooks: type: string enum: - reported - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - repository_advisory: *612 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + repository_advisory: *613 sender: *4 required: - action @@ -222625,10 +222942,10 @@ webhooks: type: string enum: - archived - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222705,10 +223022,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222786,10 +223103,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222874,10 +223191,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222992,10 +223309,10 @@ webhooks: - 'null' items: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223067,10 +223384,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 status: type: string @@ -223151,10 +223468,10 @@ webhooks: type: string enum: - privatized - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223231,10 +223548,10 @@ webhooks: type: string enum: - publicized - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223328,10 +223645,10 @@ webhooks: - name required: - repository - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223411,10 +223728,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 sender: *4 required: @@ -223493,10 +223810,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 sender: *4 required: @@ -223575,10 +223892,10 @@ webhooks: type: string enum: - edited - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 changes: type: object @@ -223640,16 +223957,16 @@ webhooks: properties: added: type: array - items: *568 + items: *569 deleted: type: array - items: *568 + items: *569 updated: type: array items: type: object properties: - rule: *568 + rule: *569 changes: type: object properties: @@ -223886,10 +224203,10 @@ webhooks: - from required: - owner - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223967,10 +224284,10 @@ webhooks: type: string enum: - unarchived - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224048,7 +224365,7 @@ webhooks: type: string enum: - create - alert: &745 + alert: &746 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224173,10 +224490,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224386,10 +224703,10 @@ webhooks: type: string enum: - dismissed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224467,11 +224784,11 @@ webhooks: type: string enum: - reopen - alert: *745 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *746 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224673,10 +224990,10 @@ webhooks: enum: - fixed - open - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224754,7 +225071,7 @@ webhooks: type: string enum: - assigned - alert: &746 + alert: &747 type: object properties: number: *162 @@ -224869,10 +225186,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224950,11 +225267,11 @@ webhooks: type: string enum: - created - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225035,11 +225352,11 @@ webhooks: type: string enum: - created - alert: *746 - installation: *692 - location: *747 - organization: *693 - repository: *694 + alert: *747 + installation: *693 + location: *748 + organization: *694 + repository: *695 sender: *4 required: - location @@ -225277,11 +225594,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225359,11 +225676,11 @@ webhooks: type: string enum: - reopened - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225441,11 +225758,11 @@ webhooks: type: string enum: - resolved - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225523,12 +225840,12 @@ webhooks: type: string enum: - unassigned - alert: *746 + alert: *747 assignee: *4 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225606,11 +225923,11 @@ webhooks: type: string enum: - validated - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225740,10 +226057,10 @@ webhooks: - organization - enterprise - - repository: *694 - enterprise: *691 - installation: *692 - organization: *693 + repository: *695 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -225821,11 +226138,11 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - security_advisory: &748 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + security_advisory: &749 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226011,11 +226328,11 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - security_advisory: *748 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + security_advisory: *749 sender: *4 required: - action @@ -226088,10 +226405,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226278,9 +226595,9 @@ webhooks: type: object properties: security_and_analysis: *266 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: *312 sender: *4 required: @@ -226359,12 +226676,12 @@ webhooks: type: string enum: - cancelled - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: &749 + sponsorship: &750 type: object properties: created_at: @@ -226669,12 +226986,12 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - sponsorship @@ -226762,12 +227079,12 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -226844,17 +227161,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &750 + effective_date: &751 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - sponsorship @@ -226928,7 +227245,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &751 + changes: &752 type: object properties: tier: @@ -226972,13 +227289,13 @@ webhooks: - from required: - tier - effective_date: *750 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + effective_date: *751 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -227055,13 +227372,13 @@ webhooks: type: string enum: - tier_changed - changes: *751 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + changes: *752 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -227135,10 +227452,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227222,10 +227539,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227659,15 +227976,15 @@ webhooks: type: - string - 'null' - enterprise: *691 + enterprise: *692 id: description: The unique identifier of the status. type: integer - installation: *692 + installation: *693 name: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 sha: description: The Commit SHA. @@ -227783,9 +228100,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -227875,9 +228192,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -227967,9 +228284,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -228059,9 +228376,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -228138,12 +228455,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - team: &752 + team: &753 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228373,9 +228690,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -228845,7 +229162,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -228921,9 +229238,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -229393,7 +229710,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -229470,9 +229787,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -229942,7 +230259,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -230086,9 +230403,9 @@ webhooks: - from required: - permissions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -230558,7 +230875,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - changes @@ -230636,9 +230953,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -231108,7 +231425,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -231184,10 +231501,10 @@ webhooks: type: string enum: - started - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -231260,17 +231577,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *691 + enterprise: *692 inputs: type: - object - 'null' additionalProperties: true - installation: *692 - organization: *693 + installation: *693 + organization: *694 ref: type: string - repository: *694 + repository: *695 sender: *4 workflow: type: string @@ -231352,10 +231669,10 @@ webhooks: type: string enum: - completed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: allOf: @@ -231690,10 +232007,10 @@ webhooks: type: string enum: - in_progress - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: allOf: @@ -232054,10 +232371,10 @@ webhooks: type: string enum: - queued - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: type: object @@ -232282,10 +232599,10 @@ webhooks: type: string enum: - waiting - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: type: object @@ -232512,12 +232829,12 @@ webhooks: type: string enum: - completed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object @@ -233536,12 +233853,12 @@ webhooks: type: string enum: - in_progress - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object @@ -234545,12 +234862,12 @@ webhooks: type: string enum: - requested - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index ce2dfa4b4..b48fb701b 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -9067,6 +9067,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -31405,6 +31413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -34815,6 +34831,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -36439,6 +36463,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -36849,6 +37066,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -53457,6 +53677,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -56106,6 +56334,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -63587,6 +63823,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -66997,6 +67241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -68621,6 +68873,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -69031,6 +69476,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -72468,6 +72916,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -72735,6 +73186,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -73792,6 +74255,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -74059,6 +74525,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -85862,6 +86340,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -87650,6 +88136,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -90588,6 +91082,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -90855,6 +91352,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -93197,6 +93706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -94250,6 +94767,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -96781,6 +97306,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -97048,6 +97576,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -98514,6 +99054,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -98781,6 +99324,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -112135,6 +112690,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -112402,6 +112960,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -115229,6 +115799,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -115496,6 +116069,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -121968,6 +122553,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -122235,6 +122823,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -123374,6 +123974,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -123641,6 +124244,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -126591,6 +127206,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -130001,6 +130624,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -131625,6 +132256,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -132035,6 +132859,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -145907,6 +146734,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -148600,6 +149435,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -148867,6 +149705,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -150958,6 +151808,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -151225,6 +152078,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -154971,6 +155836,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -156506,6 +157379,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -158068,6 +158949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -159386,6 +160275,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -159653,6 +160545,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -159830,6 +160734,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -163227,6 +164134,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -163494,6 +164404,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -164539,6 +165461,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -164806,6 +165731,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -167877,6 +168814,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -168144,6 +169084,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -168321,6 +169273,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -170115,6 +171070,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -170382,6 +171340,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -170559,6 +171529,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -176132,6 +177105,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -179241,6 +180222,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -180386,6 +181375,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -186712,6 +187709,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -189821,6 +190826,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -190966,6 +191979,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -202918,6 +203939,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -203185,6 +204209,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -203362,6 +204398,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -204177,6 +205216,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -204945,6 +205990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -206245,6 +207298,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -207194,6 +208255,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -207597,6 +208666,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224212,6 +225293,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -224479,6 +225563,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -231748,6 +232844,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -232015,6 +233114,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -232192,6 +233303,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -235050,6 +236164,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -235818,6 +236938,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -237118,6 +238246,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -238067,6 +239203,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -238470,6 +239614,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -239077,6 +240233,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -240031,6 +241190,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -240799,6 +241964,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -242099,6 +243272,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243048,6 +244229,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243451,6 +244640,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -250439,6 +251640,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -251501,6 +252710,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -254433,6 +255650,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -254700,6 +255920,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -255290,6 +256522,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -255557,6 +256792,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -257261,6 +258508,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -257528,6 +258778,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -258118,6 +259380,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -258385,6 +259650,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -260919,6 +262196,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -261186,6 +262466,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -261776,6 +263068,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -262043,6 +263338,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -269042,6 +270349,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -269309,6 +270619,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -269899,6 +271221,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -270166,6 +271491,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -306671,6 +308008,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -306938,6 +308278,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -308593,6 +309945,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -308860,6 +310215,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -310025,6 +311392,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -310292,6 +311662,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -311795,6 +313177,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -312062,6 +313447,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -327082,6 +328479,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -327349,6 +328749,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -329183,6 +330595,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -329450,6 +330865,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -330920,6 +332347,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -331187,6 +332617,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -334682,6 +336124,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -334949,6 +336394,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -343228,6 +344685,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -344373,6 +345838,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -349535,6 +351008,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -349802,6 +351278,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -350896,6 +352384,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -351163,6 +352654,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -376093,6 +377596,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -379503,6 +381014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -381127,6 +382646,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -381537,6 +383249,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -384879,6 +386594,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -385146,6 +386864,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -386079,6 +387809,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -386847,6 +388583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -388147,6 +389891,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -389096,6 +390848,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -389499,6 +391259,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -401425,6 +403197,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -401692,6 +403467,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -402920,6 +404707,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -403187,6 +404977,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -406006,6 +407808,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409389,6 +411199,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -411532,6 +413350,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -412466,6 +414477,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -413338,6 +415542,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -413528,6 +415925,1378 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "type": "integer", + "format": "int64", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repositories/42/issues/comments/1" + ] + }, + "body": { + "description": "Contents of the issue comment", + "type": "string", + "examples": [ + "What version of Safari were you using when you observed this bug?" + ] + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ], + "examples": [ + "OWNER" + ] + }, + "performed_via_github_app": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "type": "integer", + "examples": [ + 37 + ] + }, + "slug": { + "description": "The slug name of the GitHub app", + "type": "string", + "examples": [ + "probot-owners" + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDExOkludGVncmF0aW9uMQ==" + ] + }, + "client_id": { + "type": "string", + "examples": [ + "\"Iv1.25b5d1e65ffc4022\"" + ] + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "html_url", + "issue_url", + "user", + "url", + "created_at", + "updated_at" + ] + }, + "examples": { + "default": { + "value": { + "id": 1, + "node_id": "MDEyOklzc3VlQ29tbWVudDE=", + "url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1", + "html_url": "https://github.com/octocat/Hello-World/issues/1347#issuecomment-1", + "body": "Me too", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2011-04-14T16:00:49Z", + "updated_at": "2011-04-14T16:00:49Z", + "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", + "author_association": "COLLABORATOR" + } + } + } + } + } + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -416966,6 +420735,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -421951,6 +425728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -426732,6 +430517,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -430098,6 +433891,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -433464,6 +437265,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -436627,6 +440436,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -438589,6 +442406,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -439244,261 +443254,454 @@ "type", "url" ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": [ - "string", - "null" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/enterprises/octo-business" - ] - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": [ - "string", - "null" - ], - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "type": "integer", - "examples": [ - 42 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - ] - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "examples": [ - "Octo Business" - ] - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "examples": [ - "octo-business" - ] - }, - "created_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:01:12Z" - ] - }, - "updated_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:14:43Z" - ] - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] } ] - }, - "name": { - "description": "The name of the GitHub app", - "type": "string", - "examples": [ - "Probot Owners" - ] - }, - "description": { - "type": [ - "string", - "null" - ], - "examples": [ - "The description of the app." - ] - }, - "external_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://example.com" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/apps/super-ci" - ] - }, - "created_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "updated_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "type": "array", - "items": { - "type": "string" - }, - "examples": [ - "label", - "deployment" - ] - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "type": "integer", - "examples": [ - 5 - ] } }, "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" + "pinned_at", + "pinned_by" ] } ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "pin": { - "anyOf": [ - { - "type": "null" - } - ] } }, "required": [ @@ -441793,6 +445996,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -445043,6 +449254,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -448377,6 +452596,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -451733,6 +455960,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -468248,6 +472483,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -472651,6 +476894,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475911,6 +480162,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -479139,6 +483398,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -482472,6 +486739,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -494096,6 +498371,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -496310,6 +500778,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -506812,6 +511288,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -507079,6 +511558,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -513719,6 +518210,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -514864,6 +519363,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -518487,6 +522994,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -519625,6 +524140,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -526713,6 +531236,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -527851,6 +532382,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -531742,6 +536281,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -532880,6 +537427,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -535623,6 +540178,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -535890,6 +540448,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -537360,6 +541930,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -537627,6 +542200,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -544968,6 +549553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -546113,6 +550706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549822,6 +554423,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -550967,6 +555576,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -595072,6 +599689,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -595840,6 +600463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -597140,6 +601771,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -598089,6 +602728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -598492,6 +603139,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -604391,6 +609050,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -604658,6 +609320,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -605834,6 +610508,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -606602,6 +611282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -607902,6 +612590,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -608851,6 +613547,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -609254,6 +613958,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -610437,6 +615153,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -610704,6 +615423,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -611584,6 +616315,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -611851,6 +616585,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -613209,6 +617955,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -613476,6 +618225,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -615771,6 +620532,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -617713,6 +622482,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -623412,6 +628184,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -623679,6 +628454,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -623856,6 +628643,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -628865,6 +633655,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -629132,6 +633925,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -631157,6 +635962,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -631424,6 +636232,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -632894,6 +637714,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -633161,6 +637984,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -634940,6 +639775,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -635207,6 +640045,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -637033,6 +641883,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -637300,6 +642153,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -638942,6 +643807,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -639209,6 +644077,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -641758,6 +646638,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -642526,6 +647412,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -643826,6 +648720,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -644775,6 +649677,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -645178,6 +650088,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -647292,6 +652214,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -647559,6 +652484,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -649289,6 +654226,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -649556,6 +654496,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -651021,6 +655973,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -651288,6 +656243,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -656944,6 +661911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -660054,6 +665029,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -665496,6 +670479,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -667093,6 +672084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -668668,6 +673667,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -670145,6 +675152,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -670412,6 +675422,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -670589,6 +675611,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -671719,6 +676744,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -671986,6 +677014,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -672970,6 +678010,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -673237,6 +678280,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -675555,6 +680610,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -676890,6 +681953,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -677658,6 +682727,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -678958,6 +684035,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -679907,6 +684992,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -680310,6 +685403,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -681739,6 +686844,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -682006,6 +687114,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -685062,6 +690182,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -686155,6 +691283,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -687567,6 +692703,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -687834,6 +692973,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -688011,6 +693162,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -691791,6 +696945,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -694900,6 +700062,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -696045,6 +701215,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -700960,6 +706138,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -701227,6 +706408,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -704177,6 +709370,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -707587,6 +712788,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -709211,6 +714420,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -709621,6 +715023,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -715103,6 +720508,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -718513,6 +723926,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -720137,6 +725558,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -720547,6 +726161,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -726039,6 +731656,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -729449,6 +735074,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -731073,6 +736706,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -731483,6 +737309,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -738252,6 +744081,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -738519,6 +744351,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -739564,6 +745408,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -739831,6 +745678,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -748259,6 +754118,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -751368,6 +757235,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -752513,6 +758388,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -763648,6 +769531,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -767058,6 +772949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -768682,6 +774581,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -769092,6 +775184,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -774570,6 +780665,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777980,6 +784083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -779604,6 +785715,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -780014,6 +786318,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -783380,6 +789687,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -783647,6 +789957,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -783824,6 +790146,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -785916,6 +792241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -786874,6 +793207,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -787859,6 +794200,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -788126,6 +794470,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -788303,6 +794659,9 @@ }, "secret_scanning_non_provider_patterns": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -789613,6 +795972,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -791591,6 +797958,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -793569,6 +799944,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -795727,6 +802110,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -798053,6 +804444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -800633,6 +807032,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -800900,6 +807302,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -802850,6 +809264,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -805595,6 +812017,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -805862,6 +812287,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -807812,6 +814249,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -810557,6 +817002,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -810824,6 +817272,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -812774,6 +819234,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -815532,6 +822000,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -815799,6 +822270,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -817749,6 +824232,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -820850,6 +827341,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -823640,6 +830139,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -826424,6 +832931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -828894,6 +835409,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -831491,6 +838014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -833913,6 +840444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -836421,6 +842960,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -838847,6 +845394,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -841215,6 +847770,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -843679,6 +850242,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -845895,6 +852466,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -847894,6 +854473,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -852041,6 +858628,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854205,6 +860800,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -857001,6 +863604,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859796,6 +866407,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -862591,6 +869210,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -865386,6 +872013,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -868181,6 +874816,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -870976,6 +877619,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873771,6 +880422,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875802,6 +882461,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877833,6 +884500,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -880468,6 +887143,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885105,6 +891788,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -886243,6 +892934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888188,6 +894887,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -890347,6 +897054,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893468,6 +900183,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -896527,6 +903250,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -901046,6 +907777,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -904669,6 +911408,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907206,6 +913953,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -909680,6 +916435,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -912370,6 +919133,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -915061,6 +921832,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -917771,6 +924550,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920246,6 +927033,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -922719,6 +929514,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -925219,6 +932022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -927735,6 +934546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -930209,6 +937028,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -932682,6 +939509,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935155,6 +941990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -937417,6 +944260,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -939620,6 +946471,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -942196,6 +949055,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944712,6 +951579,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -947186,6 +954061,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -949659,6 +956542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -952571,6 +959462,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -954863,6 +961762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -957872,6 +964779,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960979,6 +967894,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963991,6 +970914,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967030,6 +973961,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -970183,6 +977122,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -973302,6 +980249,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -975438,6 +982393,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978450,6 +985413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -979855,6 +986826,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] }, @@ -982767,6 +989931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984265,6 +991437,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -987076,6 +994441,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -988592,6 +995965,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -991403,6 +998969,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992902,6 +1000476,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -995720,6 +1003487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997218,6 +1004993,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1000036,6 +1008004,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002936,6 +1010912,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005857,6 +1013841,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1007465,6 +1015457,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1008717,6 +1016717,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1011616,6 +1019624,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014537,6 +1022553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1016145,6 +1024169,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017397,6 +1025429,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1020296,6 +1028336,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021904,6 +1029952,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1024166,6 +1032222,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1026077,6 +1034141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028976,6 +1037048,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030584,6 +1038664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032846,6 +1040934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034757,6 +1042853,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1038295,6 +1046399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041955,6 +1050067,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1045386,6 +1053506,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1049011,6 +1057139,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1052519,6 +1060655,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1055997,6 +1064141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1059436,6 +1067588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063059,6 +1071219,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1065551,6 +1073719,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -1068566,6 +1076739,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071996,6 +1080177,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1075431,6 +1083620,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1077962,6 +1086159,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1080950,6 +1089152,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084455,6 +1092665,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1087994,6 +1096212,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1091474,6 +1099700,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094911,6 +1103145,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1098341,6 +1106583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1101845,6 +1110095,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103868,6 +1112126,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1105889,6 +1114155,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107953,6 +1116227,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1110176,6 +1118458,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112401,6 +1120691,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1114623,6 +1122921,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116840,6 +1125146,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1119061,6 +1127375,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1121172,6 +1129494,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123287,6 +1131617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1125368,6 +1133706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1127448,6 +1135794,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129663,6 +1138017,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131818,6 +1140180,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1133841,6 +1142211,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1135948,6 +1144326,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1138123,6 +1146509,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1140294,6 +1148688,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1142466,6 +1150868,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144680,6 +1153090,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146852,6 +1155270,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1148931,6 +1157357,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1151010,6 +1159444,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1153136,6 +1161578,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1155261,6 +1163711,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1157406,6 +1165864,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1159632,6 +1168098,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1161771,6 +1170245,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1164650,6 +1173132,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1167274,6 +1175764,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1169399,6 +1177897,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1174758,6 +1183264,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1177093,6 +1185607,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179240,6 +1187762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1181395,6 +1189925,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183565,6 +1192103,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1185845,6 +1194391,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1187995,6 +1196549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1190026,6 +1198588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1192061,6 +1200631,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1194109,6 +1202687,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1196140,6 +1204726,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1198290,6 +1206884,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1200445,6 +1209047,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1202626,6 +1211236,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1204775,6 +1213393,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1219991,6 +1228617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1221883,6 +1230517,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1222718,6 +1231357,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1225155,6 +1233799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226932,6 +1235584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -1227774,6 +1236431,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1230213,6 +1238875,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1232003,6 +1240673,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1232832,6 +1241507,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1235271,6 +1243951,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238460,6 +1247148,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1239598,6 +1248294,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1241602,6 +1250306,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1244791,6 +1253503,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245929,6 +1254649,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247933,6 +1256661,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1250014,6 +1258750,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1250843,6 +1259584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1253268,6 +1262014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255056,6 +1263810,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1255885,6 +1264644,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1258329,6 +1267093,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261580,6 +1270352,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1262718,6 +1271498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1264722,6 +1273510,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1266511,6 +1275307,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1267340,6 +1276141,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1269767,6 +1278573,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1271602,6 +1280416,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1272437,6 +1281256,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1274875,6 +1283699,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1276666,6 +1285498,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1277501,6 +1286338,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1279938,6 +1288780,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1282019,6 +1290869,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1282848,6 +1291703,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1285273,6 +1294133,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1288461,6 +1297329,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1289599,6 +1298475,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1291603,6 +1300487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1294792,6 +1303684,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295930,6 +1304830,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1297934,6 +1306842,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1301123,6 +1310039,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1302261,6 +1311185,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1304265,6 +1313197,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1306426,6 +1315366,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1307243,6 +1316188,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1309545,6 +1318495,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311701,6 +1320659,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1312518,6 +1321481,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1314810,6 +1323778,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316987,6 +1325963,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1317804,6 +1326785,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1320097,6 +1329083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321883,6 +1330877,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1322700,6 +1331699,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1325004,6 +1334008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1330045,6 +1339057,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1332053,6 +1341073,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1332882,6 +1341907,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1335325,6 +1344355,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1337127,6 +1346165,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1337956,6 +1346999,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1340399,6 +1349447,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1342343,6 +1351399,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1343172,6 +1352233,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1345608,6 +1354674,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1347413,6 +1356487,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1348242,6 +1357321,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1350669,6 +1359753,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1352592,6 +1361684,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1353412,6 +1362509,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1355717,6 +1364819,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357712,6 +1366822,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1358493,6 +1367608,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1360758,6 +1369878,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1362937,6 +1372065,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1363712,6 +1372845,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1365966,6 +1375104,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368159,6 +1377305,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1368988,6 +1378139,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1371425,6 +1380581,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373322,6 +1382486,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1374157,6 +1383326,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1376595,6 +1385769,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1378429,6 +1387611,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1379264,6 +1388451,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1381701,6 +1390893,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1383488,6 +1392688,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1384320,6 +1393525,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1386745,6 +1395955,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388337,6 +1397555,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1391002,6 +1400225,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1393529,6 +1402760,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1395952,6 +1405191,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1398376,6 +1407623,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1400853,6 +1410108,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403283,6 +1412546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1405709,6 +1414980,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1408132,6 +1417411,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1410558,6 +1419845,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1412536,6 +1421831,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1416505,6 +1425808,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420474,6 +1429785,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1422453,6 +1431772,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1424432,6 +1433759,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1426419,6 +1435754,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428456,6 +1437799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1430429,6 +1439780,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1432414,6 +1441773,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1434393,6 +1443760,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1436399,6 +1445774,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1438379,6 +1447762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1441679,6 +1451070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1444979,6 +1454378,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1451377,6 +1460784,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1453357,6 +1462772,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1455509,6 +1464932,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1457671,6 +1467102,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1459822,6 +1469261,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1461973,6 +1471420,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1464964,6 +1474419,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1467787,6 +1477250,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1470868,6 +1480339,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1473867,6 +1483346,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1476690,6 +1486177,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1479513,6 +1489008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1482504,6 +1492007,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1485327,6 +1494838,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1487151,6 +1496670,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1489345,6 +1498872,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1491548,6 +1501083,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1493751,6 +1503294,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1494952,6 +1504503,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } } @@ -1495768,6 +1505331,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -1496536,6 +1506105,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1497836,6 +1507413,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1498785,6 +1508370,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1499188,6 +1508781,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -1500639,6 +1510244,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1502940,6 +1512553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1505258,6 +1514879,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1507564,6 +1517193,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1509928,6 +1519565,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1512289,6 +1521934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1514591,6 +1524244,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1516577,6 +1526238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1519059,6 +1528728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1521991,6 +1531668,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1523599,6 +1533284,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1525861,6 +1535554,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1527772,6 +1537473,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1530673,6 +1540382,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1532281,6 +1541998,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1534543,6 +1544268,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1536454,6 +1546187,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1539355,6 +1549096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1540963,6 +1550712,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1543225,6 +1552982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1545136,6 +1554901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1548037,6 +1557810,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1549645,6 +1559426,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1551907,6 +1561696,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1553818,6 +1563615,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1555792,6 +1565597,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1564583,6 +1574396,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1566564,6 +1576385,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1568545,6 +1578374,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1571580,6 +1581417,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1574653,6 +1584498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1577549,6 +1587402,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1580446,6 +1590307,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1583729,6 +1593598,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1586994,6 +1596871,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index b7bae48b9..38b02ebb0 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &614 + - &615 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3392,6 +3392,12 @@ paths: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -10961,7 +10967,7 @@ paths: properties: action: type: string - discussion: &707 + discussion: &708 title: Discussion description: A Discussion in a repository. type: object @@ -11747,7 +11753,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &626 + sub_issues_summary: &627 title: Sub-issues Summary type: object properties: @@ -11768,7 +11774,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &627 + issue_dependencies_summary: &628 title: Issue Dependencies Summary type: object properties: @@ -11787,7 +11793,7 @@ paths: - total_blocking issue_field_values: type: array - items: &628 + items: &629 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11959,6 +11965,24 @@ paths: pin: anyOf: - type: 'null' + - &528 + title: Pinned Issue Comment + description: Context around who pinned an issue + comment and when it was pinned. + type: object + properties: + pinned_at: + type: string + format: date-time + examples: + - '2011-04-14T16:00:49Z' + pinned_by: + anyOf: + - type: 'null' + - *4 + required: + - pinned_at + - pinned_by required: - id - node_id @@ -12122,6 +12146,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean forks_count: type: integer mirror_url: @@ -12626,7 +12652,7 @@ paths: type: string release: allOf: - - &559 + - &560 title: Release description: A release. type: object @@ -12708,7 +12734,7 @@ paths: author: *4 assets: type: array - items: &560 + items: &561 title: Release Asset description: Data related to a release. type: object @@ -13311,7 +13337,7 @@ paths: url: type: string format: uri - user: &634 + user: &635 title: Public User description: Public User type: object @@ -16761,7 +16787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &535 + - &536 name: all description: If `true`, show notifications marked as read. in: query @@ -16769,7 +16795,7 @@ paths: schema: type: boolean default: false - - &536 + - &537 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16779,7 +16805,7 @@ paths: type: boolean default: false - *77 - - &537 + - &538 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -17064,6 +17090,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -17221,6 +17249,14 @@ paths: enum: - enabled - disabled + secret_scanning_delegated_alert_dismissal: + type: object + properties: + status: + type: string + enum: + - enabled + - disabled custom_properties: type: object description: The custom properties that were defined for @@ -17317,7 +17353,7 @@ paths: - url - subscription_url examples: - default: &538 + default: &539 value: - id: '1' repository: @@ -18850,7 +18886,7 @@ paths: required: false schema: type: string - - &684 + - &685 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18996,7 +19032,7 @@ paths: parameters: - *65 - *107 - - &685 + - &686 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -19108,7 +19144,7 @@ paths: - *107 - *109 - *108 - - &686 + - &687 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19116,7 +19152,7 @@ paths: schema: type: string - *110 - - &687 + - &688 name: sku description: The SKU to query for usage. in: query @@ -22816,7 +22852,7 @@ paths: type: array items: *144 examples: - default: &637 + default: &638 value: total_count: 1 repositories: @@ -25799,12 +25835,12 @@ paths: required: - subject_digests examples: - default: &666 + default: &667 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &667 + withPredicateType: &668 value: subject_digests: - sha256:abc123 @@ -25863,7 +25899,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &668 + default: &669 value: attestations_subject_digests: - sha256:abc: @@ -35614,7 +35650,7 @@ paths: parameters: - *65 - *227 - - &649 + - &650 name: repo_name description: repo_name parameter in: path @@ -35764,6 +35800,8 @@ paths: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled headers: Link: *57 '404': *6 @@ -36673,7 +36711,7 @@ paths: - nuget - container - *65 - - &650 + - &651 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36714,7 +36752,7 @@ paths: default: *233 '403': *27 '401': *23 - '400': &652 + '400': &653 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38540,7 +38578,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &735 + - &736 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -39059,7 +39097,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: &545 + auto_merge: &546 title: Auto merge description: The status of auto merging a pull request. type: @@ -39441,7 +39479,7 @@ paths: - updated_at - project_url examples: - default: &671 + default: &672 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39618,7 +39656,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &672 + items: &673 type: object properties: name: @@ -39655,7 +39693,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &673 + iteration_configuration: &674 type: object description: The configuration for iteration fields. properties: @@ -39704,7 +39742,7 @@ paths: value: name: Due date data_type: date - single_select_field: &674 + single_select_field: &675 summary: Create a single select field value: name: Priority @@ -39731,7 +39769,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &675 + iteration_field: &676 summary: Create an iteration field value: name: Sprint @@ -39757,7 +39795,7 @@ paths: application/json: schema: *253 examples: - text_field: &676 + text_field: &677 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39766,7 +39804,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &677 + number_field: &678 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39775,7 +39813,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &678 + date_field: &679 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39784,7 +39822,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &679 + single_select_field: &680 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39818,7 +39856,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &680 + iteration_field: &681 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39864,7 +39902,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *250 - - &681 + - &682 name: field_id description: The unique identifier of the field. in: path @@ -39879,7 +39917,7 @@ paths: application/json: schema: *253 examples: - default: &682 + default: &683 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41089,7 +41127,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &663 + schema: &664 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -41272,7 +41310,7 @@ paths: parameters: - *250 - *65 - - &683 + - &684 name: view_number description: The number that identifies the project view. in: path @@ -42525,6 +42563,10 @@ paths: type: boolean examples: - true + has_pull_requests: + type: boolean + examples: + - true archived: type: boolean disabled: @@ -43328,7 +43370,7 @@ paths: - *65 - *17 - *19 - - &567 + - &568 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43614,7 +43656,7 @@ paths: - object rules: type: array - items: &568 + items: &569 title: Repository Rule type: object description: A repository rule. @@ -43676,7 +43718,7 @@ paths: type: string enum: - required_linear_history - - &566 + - &567 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44577,7 +44619,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *65 - - &569 + - &570 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -44592,7 +44634,7 @@ paths: in: query schema: type: string - - &570 + - &571 name: time_period description: |- The time period to filter by. @@ -44608,14 +44650,14 @@ paths: - week - month default: day - - &571 + - &572 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &572 + - &573 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44635,7 +44677,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &574 title: Rule Suites description: Response type: array @@ -44691,7 +44733,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &574 + default: &575 value: - id: 21 actor_id: 12 @@ -44735,7 +44777,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *65 - - &575 + - &576 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44751,7 +44793,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &577 title: Rule Suite description: Response type: object @@ -44858,7 +44900,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &577 + default: &578 value: id: 21 actor_id: 12 @@ -45104,7 +45146,7 @@ paths: type: string format: date-time examples: - default: &579 + default: &580 value: - version_id: 3 actor: @@ -45157,7 +45199,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &581 allOf: - *296 - type: object @@ -45229,7 +45271,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *65 - - &581 + - &582 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45240,7 +45282,7 @@ paths: enum: - open - resolved - - &582 + - &583 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45250,7 +45292,7 @@ paths: required: false schema: type: string - - &583 + - &584 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45259,7 +45301,7 @@ paths: required: false schema: type: string - - &584 + - &585 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45278,7 +45320,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &585 + - &586 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -45293,7 +45335,7 @@ paths: - *51 - *19 - *17 - - &586 + - &587 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -45303,7 +45345,7 @@ paths: required: false schema: type: string - - &587 + - &588 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -45313,7 +45355,7 @@ paths: required: false schema: type: string - - &588 + - &589 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45322,7 +45364,7 @@ paths: required: false schema: type: string - - &589 + - &590 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45331,7 +45373,7 @@ paths: schema: type: boolean default: false - - &590 + - &591 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45340,7 +45382,7 @@ paths: schema: type: boolean default: false - - &591 + - &592 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45372,14 +45414,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &592 + state: &593 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &593 + resolution: &594 type: - string - 'null' @@ -45486,14 +45528,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &594 + - &595 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &596 + - &597 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45550,7 +45592,7 @@ paths: - blob_url - commit_sha - commit_url - - &597 + - &598 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -45611,7 +45653,7 @@ paths: - page_url - commit_sha - commit_url - - &598 + - &599 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45626,7 +45668,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &599 + - &600 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45641,7 +45683,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &600 + - &601 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45656,7 +45698,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &601 + - &602 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45671,7 +45713,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &602 + - &603 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45686,7 +45728,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &603 + - &604 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45701,7 +45743,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &604 + - &605 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -45716,7 +45758,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &605 + - &606 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -45731,7 +45773,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &606 + - &607 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -45746,7 +45788,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &607 + - &608 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -45761,7 +45803,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &608 + - &609 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -46261,7 +46303,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 description: A repository security advisory. type: object properties: @@ -46580,7 +46622,7 @@ paths: - private_fork additionalProperties: false examples: - default: &613 + default: &614 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -48598,7 +48640,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &630 + response-if-user-is-a-team-maintainer: &631 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48663,7 +48705,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &631 + response-if-users-membership-with-team-is-now-pending: &632 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48777,7 +48819,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &632 + schema: &633 title: Team Repository description: A team's access to a repository. type: object @@ -49506,7 +49548,7 @@ paths: type: array items: *179 examples: - response-if-child-teams-exist: &633 + response-if-child-teams-exist: &634 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50302,6 +50344,8 @@ paths: status: disabled secret_scanning_non_provider_patterns: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled '403': *27 '404': *6 '301': *313 @@ -60584,7 +60628,7 @@ paths: check. type: array items: *75 - deployment: &696 + deployment: &697 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65841,7 +65885,7 @@ paths: type: array items: *430 examples: - default: &640 + default: &641 value: total_count: 2 machines: @@ -67506,7 +67550,7 @@ paths: type: array items: *440 examples: - default: &552 + default: &553 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67797,7 +67841,7 @@ paths: type: array items: *444 examples: - default: &544 + default: &545 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68355,7 +68399,7 @@ paths: application/json: schema: *440 examples: - default: &532 + default: &533 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68977,7 +69021,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 title: Status description: The status of a commit. type: object @@ -69939,7 +69983,7 @@ paths: - size - type - url - - &557 + - &558 title: Content File description: Content File type: object @@ -70576,7 +70620,7 @@ paths: items: type: object properties: - placeholder_id: &609 + placeholder_id: &610 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -76454,7 +76498,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &727 + last_response: &728 title: Hook Response type: object properties: @@ -77522,7 +77566,7 @@ paths: parameters: - *309 - *310 - - &661 + - &662 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77956,7 +78000,7 @@ paths: type: array items: *503 examples: - default: &654 + default: &655 value: - id: 1 repository: @@ -79011,6 +79055,72 @@ paths: enabledForGitHubApps: true category: issues subcategory: comments + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": + put: + summary: Pin an issue comment + description: |- + You can use the REST API to pin comments on issues. + + This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + + - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. + tags: + - issues + operationId: issues/pin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment + parameters: + - *309 + - *310 + - *86 + responses: + '200': + description: Response + content: + application/json: + schema: *505 + examples: + default: *506 + '401': *23 + '403': *27 + '404': *6 + '410': *504 + '422': *15 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments + delete: + summary: Unpin an issue comment + description: You can use the REST API to unpin comments on issues. + tags: + - issues + operationId: issues/unpin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment + parameters: + - *309 + - *310 + - *86 + responses: + '204': + description: Response + '401': *23 + '403': *27 + '404': *6 + '410': *504 + '503': *105 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": get: summary: List reactions for an issue comment @@ -82055,6 +82165,7 @@ paths: pin: anyOf: - type: 'null' + - *528 required: - event - actor @@ -82330,7 +82441,7 @@ paths: type: string comments: type: array - items: &546 + items: &547 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -82874,7 +82985,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82979,9 +83090,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: id: 1 key: ssh-rsa AAA... @@ -83017,7 +83128,7 @@ paths: parameters: - *309 - *310 - - &530 + - &531 name: key_id description: The unique identifier of the key. in: path @@ -83029,9 +83140,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83051,7 +83162,7 @@ paths: parameters: - *309 - *310 - - *530 + - *531 responses: '204': description: Response @@ -83144,7 +83255,7 @@ paths: application/json: schema: *70 examples: - default: &531 + default: &532 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83190,7 +83301,7 @@ paths: application/json: schema: *70 examples: - default: *531 + default: *532 '404': *6 x-github: githubCloudOnly: false @@ -83592,7 +83703,7 @@ paths: application/json: schema: *440 examples: - default: *532 + default: *533 '204': description: Response when already merged '404': @@ -83758,7 +83869,7 @@ paths: application/json: schema: *251 examples: - default: &533 + default: &534 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83819,7 +83930,7 @@ paths: parameters: - *309 - *310 - - &534 + - &535 name: milestone_number description: The number that identifies the milestone. in: path @@ -83833,7 +83944,7 @@ paths: application/json: schema: *251 examples: - default: *533 + default: *534 '404': *6 x-github: githubCloudOnly: false @@ -83852,7 +83963,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 requestBody: required: false content: @@ -83892,7 +84003,7 @@ paths: application/json: schema: *251 examples: - default: *533 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83910,7 +84021,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 responses: '204': description: Response @@ -83933,7 +84044,7 @@ paths: parameters: - *309 - *310 - - *534 + - *535 - *17 - *19 responses: @@ -83966,10 +84077,10 @@ paths: parameters: - *309 - *310 - - *535 - *536 - - *77 - *537 + - *77 + - *538 - *17 - *19 responses: @@ -83981,7 +84092,7 @@ paths: type: array items: *97 examples: - default: *538 + default: *539 headers: Link: *57 x-github: @@ -84071,7 +84182,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &540 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -84215,7 +84326,7 @@ paths: - custom_404 - public examples: - default: &540 + default: &541 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -84312,9 +84423,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 '422': *15 '409': *50 x-github: @@ -84476,7 +84587,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Page Build description: Page Build type: object @@ -84623,9 +84734,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: &542 + default: &543 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84685,9 +84796,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84818,7 +84929,7 @@ paths: parameters: - *309 - *310 - - &543 + - &544 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84878,7 +84989,7 @@ paths: parameters: - *309 - *310 - - *543 + - *544 responses: '204': *175 '404': *6 @@ -85450,7 +85561,7 @@ paths: type: array items: *444 examples: - default: *544 + default: *545 headers: Link: *57 '304': *35 @@ -85550,7 +85661,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85790,7 +85901,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: *545 + auto_merge: *546 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85892,7 +86003,7 @@ paths: - merged_by - review_comments examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86449,9 +86560,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: &551 + default: &552 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86536,9 +86647,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: &547 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86637,9 +86748,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *547 + default: *548 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86842,7 +86953,7 @@ paths: parameters: - *309 - *310 - - &550 + - &551 name: pull_number description: The number that identifies the pull request. in: path @@ -86855,9 +86966,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *548 + schema: *549 examples: - default: *549 + default: *550 '304': *35 '404': *6 '406': @@ -86894,7 +87005,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -86936,9 +87047,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: - default: *549 + default: *550 '422': *15 '403': *27 x-github: @@ -86962,7 +87073,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -87065,7 +87176,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *94 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -87086,9 +87197,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: *551 + default: *552 headers: Link: *57 x-github: @@ -87123,7 +87234,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -87229,7 +87340,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: example-for-a-multi-line-comment: value: @@ -87319,7 +87430,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *86 requestBody: required: true @@ -87342,7 +87453,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -87430,7 +87541,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -87442,7 +87553,7 @@ paths: type: array items: *440 examples: - default: *552 + default: *553 headers: Link: *57 x-github: @@ -87474,7 +87585,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -87524,7 +87635,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 responses: '204': description: Response if pull request has been merged @@ -87549,7 +87660,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -87663,7 +87774,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 responses: '200': description: Response @@ -87740,7 +87851,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -88315,7 +88426,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: true content: @@ -88856,7 +88967,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 - *17 - *19 responses: @@ -88866,7 +88977,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89024,7 +89135,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -89114,9 +89225,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &555 + default: &556 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89181,8 +89292,8 @@ paths: parameters: - *309 - *310 - - *550 - - &554 + - *551 + - &555 name: review_id description: The unique identifier of the review. in: path @@ -89194,9 +89305,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &556 + default: &557 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89257,8 +89368,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89281,7 +89392,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -89345,16 +89456,16 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *555 + default: *556 '422': *7 '404': *6 x-github: @@ -89383,8 +89494,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 - *17 - *19 responses: @@ -89644,8 +89755,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89674,7 +89785,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -89739,8 +89850,8 @@ paths: parameters: - *309 - *310 - - *550 - - *554 + - *551 + - *555 requestBody: required: true content: @@ -89775,9 +89886,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *556 + default: *557 '404': *6 '422': *7 '403': *27 @@ -89801,7 +89912,7 @@ paths: parameters: - *309 - *310 - - *550 + - *551 requestBody: required: false content: @@ -89879,9 +89990,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: type: file encoding: base64 @@ -89944,9 +90055,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '422': *15 x-github: @@ -89979,7 +90090,7 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: default: value: @@ -90150,9 +90261,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90259,7 +90370,7 @@ paths: parameters: - *309 - *310 - - &561 + - &562 name: asset_id description: The unique identifier of the asset. in: path @@ -90271,9 +90382,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &562 + default: &563 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -90326,7 +90437,7 @@ paths: parameters: - *309 - *310 - - *561 + - *562 requestBody: required: false content: @@ -90355,9 +90466,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90375,7 +90486,7 @@ paths: parameters: - *309 - *310 - - *561 + - *562 responses: '204': description: Response @@ -90493,9 +90604,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90526,9 +90637,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '404': *6 x-github: githubCloudOnly: false @@ -90552,7 +90663,7 @@ paths: parameters: - *309 - *310 - - &564 + - &565 name: release_id description: The unique identifier of the release. in: path @@ -90566,9 +90677,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '401': description: Unauthorized x-github: @@ -90588,7 +90699,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 requestBody: required: false content: @@ -90652,9 +90763,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *563 + default: *564 '404': description: Not Found if the discussion category name is invalid content: @@ -90677,7 +90788,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 responses: '204': description: Response @@ -90699,7 +90810,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - *17 - *19 responses: @@ -90709,7 +90820,7 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: default: value: @@ -90792,7 +90903,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - name: name in: query required: true @@ -90818,7 +90929,7 @@ paths: description: Response for successful upload content: application/json: - schema: *560 + schema: *561 examples: response-for-successful-upload: value: @@ -90875,7 +90986,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -90924,7 +91035,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 requestBody: required: true content: @@ -90987,7 +91098,7 @@ paths: parameters: - *309 - *310 - - *564 + - *565 - *508 responses: '204': @@ -91031,7 +91142,7 @@ paths: oneOf: - allOf: - *272 - - &565 + - &566 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91052,67 +91163,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *273 - - *565 + - *566 - allOf: - *274 - - *565 + - *566 - allOf: - *275 - - *565 + - *566 - allOf: + - *567 - *566 - - *565 - allOf: - *276 - - *565 + - *566 - allOf: - *277 - - *565 + - *566 - allOf: - *278 - - *565 + - *566 - allOf: - *279 - - *565 + - *566 - allOf: - *280 - - *565 + - *566 - allOf: - *281 - - *565 + - *566 - allOf: - *282 - - *565 + - *566 - allOf: - *283 - - *565 + - *566 - allOf: - *284 - - *565 + - *566 - allOf: - *285 - - *565 + - *566 - allOf: - *286 - - *565 + - *566 - allOf: - *287 - - *565 + - *566 - allOf: - *288 - - *565 + - *566 - allOf: - *289 - - *565 + - *566 - allOf: - *290 - - *565 + - *566 - allOf: - *291 - - *565 + - *566 - allOf: - *292 - - *565 + - *566 examples: default: value: @@ -91163,7 +91274,7 @@ paths: schema: type: boolean default: true - - *567 + - *568 responses: '200': description: Response @@ -91248,7 +91359,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *568 + items: *569 required: - name - enforcement @@ -91281,7 +91392,7 @@ paths: application/json: schema: *293 examples: - default: &578 + default: &579 value: id: 42 name: super cool ruleset @@ -91330,10 +91441,10 @@ paths: parameters: - *309 - *310 - - *569 - *570 - *571 - *572 + - *573 - *17 - *19 responses: @@ -91341,9 +91452,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '500': *104 x-github: @@ -91366,15 +91477,15 @@ paths: parameters: - *309 - *310 - - *575 + - *576 responses: '200': description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 '500': *104 x-github: @@ -91425,7 +91536,7 @@ paths: application/json: schema: *293 examples: - default: *578 + default: *579 '404': *6 '500': *104 put: @@ -91478,7 +91589,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *568 + items: *569 examples: default: value: @@ -91508,7 +91619,7 @@ paths: application/json: schema: *293 examples: - default: *578 + default: *579 '404': *6 '500': *104 delete: @@ -91569,7 +91680,7 @@ paths: type: array items: *296 examples: - default: *579 + default: *580 '404': *6 '500': *104 x-github: @@ -91607,7 +91718,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: default: value: @@ -91664,20 +91775,20 @@ paths: parameters: - *309 - *310 - - *581 - *582 - *583 - *584 - *585 + - *586 - *51 - *19 - *17 - - *586 - *587 - *588 - *589 - *590 - *591 + - *592 responses: '200': description: Response @@ -91685,7 +91796,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 type: object properties: number: *162 @@ -91701,8 +91812,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *592 - resolution: *593 + state: *593 + resolution: *594 resolved_at: type: - string @@ -91796,7 +91907,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *594 + - *595 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91944,13 +92055,13 @@ paths: - *309 - *310 - *406 - - *591 + - *592 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: default: value: @@ -92014,8 +92125,8 @@ paths: schema: type: object properties: - state: *592 - resolution: *593 + state: *593 + resolution: *594 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92051,7 +92162,7 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: default: value: @@ -92159,7 +92270,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &747 + items: &748 type: object properties: type: @@ -92186,7 +92297,6 @@ paths: - commit details: oneOf: - - *596 - *597 - *598 - *599 @@ -92199,6 +92309,7 @@ paths: - *606 - *607 - *608 + - *609 examples: default: value: @@ -92293,14 +92404,14 @@ paths: schema: type: object properties: - reason: &610 + reason: &611 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *609 + placeholder_id: *610 required: - reason - placeholder_id @@ -92317,7 +92428,7 @@ paths: schema: type: object properties: - reason: *610 + reason: *611 expire_at: type: - string @@ -92380,7 +92491,7 @@ paths: properties: incremental_scans: type: array - items: &611 + items: &612 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92408,15 +92519,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *611 + items: *612 backfill_scans: type: array - items: *611 + items: *612 custom_pattern_backfill_scans: type: array items: allOf: - - *611 + - *612 - type: object properties: pattern_name: @@ -92531,9 +92642,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 '400': *14 '404': *6 x-github: @@ -92727,9 +92838,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &615 + default: &616 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93076,7 +93187,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -93225,15 +93336,15 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *615 + default: *616 '403': *27 '404': *6 x-github: @@ -93259,7 +93370,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 requestBody: required: true content: @@ -93430,10 +93541,10 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *615 - add_credit: *615 + default: *616 + add_credit: *616 '403': *27 '404': *6 '422': @@ -93473,7 +93584,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '202': *37 '400': *14 @@ -93502,7 +93613,7 @@ paths: parameters: - *309 - *310 - - *614 + - *615 responses: '202': description: Response @@ -93643,7 +93754,7 @@ paths: application/json: schema: type: array - items: &616 + items: &617 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94016,7 +94127,7 @@ paths: application/json: schema: type: array - items: *616 + items: *617 examples: default: value: @@ -94106,7 +94217,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -94200,7 +94311,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &618 + schema: &619 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94300,7 +94411,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: default: value: @@ -94440,7 +94551,7 @@ paths: application/json: schema: type: array - items: &619 + items: &620 title: Tag protection description: Tag protection type: object @@ -94521,7 +94632,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default: value: @@ -94669,7 +94780,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &621 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94681,7 +94792,7 @@ paths: required: - names examples: - default: &621 + default: &622 value: names: - octocat @@ -94736,9 +94847,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '404': *6 '422': *7 x-github: @@ -94761,7 +94872,7 @@ paths: parameters: - *309 - *310 - - &622 + - &623 name: per description: The time frame to display results for. in: query @@ -94792,7 +94903,7 @@ paths: - 128 clones: type: array - items: &623 + items: &624 title: Traffic type: object properties: @@ -95040,7 +95151,7 @@ paths: parameters: - *309 - *310 - - *622 + - *623 responses: '200': description: Response @@ -95061,7 +95172,7 @@ paths: - 3782 views: type: array - items: *623 + items: *624 required: - uniques - count @@ -95831,7 +95942,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &624 + text_matches: &625 title: Search Result Text Matches type: array items: @@ -95994,7 +96105,7 @@ paths: enum: - author-date - committer-date - - &625 + - &626 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -96114,7 +96225,7 @@ paths: type: number node_id: type: string - text_matches: *624 + text_matches: *625 required: - sha - node_id @@ -96306,7 +96417,7 @@ paths: - interactions - created - updated - - *625 + - *626 - *17 - *19 - name: advanced_search @@ -96403,11 +96514,11 @@ paths: type: - string - 'null' - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: type: string state_reason: @@ -96435,7 +96546,7 @@ paths: - string - 'null' format: date-time - text_matches: *624 + text_matches: *625 pull_request: type: object properties: @@ -96658,7 +96769,7 @@ paths: enum: - created - updated - - *625 + - *626 - *17 - *19 responses: @@ -96703,7 +96814,7 @@ paths: - 'null' score: type: number - text_matches: *624 + text_matches: *625 required: - id - node_id @@ -96788,7 +96899,7 @@ paths: - forks - help-wanted-issues - updated - - *625 + - *626 - *17 - *19 responses: @@ -96995,6 +97106,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -97025,7 +97138,7 @@ paths: - admin - pull - push - text_matches: *624 + text_matches: *625 temp_clone_token: type: string allow_merge_commit: @@ -97333,7 +97446,7 @@ paths: - string - 'null' format: uri - text_matches: *624 + text_matches: *625 related: type: - array @@ -97526,7 +97639,7 @@ paths: - followers - repositories - joined - - *625 + - *626 - *17 - *19 responses: @@ -97636,7 +97749,7 @@ paths: type: - boolean - 'null' - text_matches: *624 + text_matches: *625 blog: type: - string @@ -97718,7 +97831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &629 + - &630 name: team_id description: The unique identifier of the team. in: path @@ -97759,7 +97872,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *629 + - *630 requestBody: required: true content: @@ -97860,7 +97973,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *629 + - *630 responses: '204': description: Response @@ -97889,7 +98002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -97927,7 +98040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *629 + - *630 - name: role description: Filters members returned by their role in the team. in: query @@ -97978,7 +98091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98015,7 +98128,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98055,7 +98168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98092,7 +98205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 responses: '200': @@ -98101,7 +98214,7 @@ paths: application/json: schema: *308 examples: - response-if-user-is-a-team-maintainer: *630 + response-if-user-is-a-team-maintainer: *631 '404': *6 x-github: githubCloudOnly: false @@ -98134,7 +98247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 requestBody: required: false @@ -98162,7 +98275,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *631 + response-if-users-membership-with-team-is-now-pending: *632 '403': description: Forbidden if team synchronization is set up '422': @@ -98196,7 +98309,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *629 + - *630 - *61 responses: '204': @@ -98224,7 +98337,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -98266,7 +98379,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *629 + - *630 - *309 - *310 responses: @@ -98274,7 +98387,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *632 + schema: *633 examples: alternative-response-with-extra-repository-information: value: @@ -98425,7 +98538,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *629 + - *630 - *309 - *310 requestBody: @@ -98477,7 +98590,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *629 + - *630 - *309 - *310 responses: @@ -98504,7 +98617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *629 + - *630 - *17 - *19 responses: @@ -98516,7 +98629,7 @@ paths: type: array items: *179 examples: - response-if-child-teams-exist: *633 + response-if-child-teams-exist: *634 headers: Link: *57 '404': *6 @@ -98549,7 +98662,7 @@ paths: application/json: schema: oneOf: - - &635 + - &636 title: Private User description: Private User type: object @@ -98799,7 +98912,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *634 + - *635 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98959,7 +99072,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -99357,7 +99470,7 @@ paths: type: integer secrets: type: array - items: &636 + items: &637 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99477,7 +99590,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -99623,7 +99736,7 @@ paths: type: array items: *144 examples: - default: *637 + default: *638 '401': *23 '403': *27 '404': *6 @@ -99890,7 +100003,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &639 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99943,7 +100056,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &639 + default: &640 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99988,9 +100101,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *639 + default: *640 '404': *6 x-github: githubCloudOnly: false @@ -100029,7 +100142,7 @@ paths: type: array items: *430 examples: - default: *640 + default: *641 '304': *35 '500': *104 '401': *23 @@ -100995,7 +101108,7 @@ paths: type: array items: *232 examples: - default: &651 + default: &652 value: - id: 197 name: hello_docker @@ -101096,7 +101209,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: Email description: Email type: object @@ -101166,9 +101279,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: &653 + default: &654 value: - email: octocat@github.com verified: true @@ -101245,7 +101358,7 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: default: value: @@ -101503,7 +101616,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: GPG Key description: A unique encryption key type: object @@ -101648,7 +101761,7 @@ paths: - subkeys - revoked examples: - default: &669 + default: &670 value: - id: 3 name: Octocat's GPG Key @@ -101733,9 +101846,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: &643 + default: &644 value: id: 3 name: Octocat's GPG Key @@ -101792,7 +101905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &644 + - &645 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101804,9 +101917,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: *643 + default: *644 '404': *6 '304': *35 '403': *27 @@ -101829,7 +101942,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *644 + - *645 responses: '204': description: Response @@ -102286,7 +102399,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -102389,9 +102502,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102424,15 +102537,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *530 + - *531 responses: '200': description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -102455,7 +102568,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *530 + - *531 responses: '204': description: Response @@ -102488,7 +102601,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102567,7 +102680,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102629,9 +102742,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *57 '304': *35 @@ -103649,7 +103762,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *227 - - *649 + - *650 responses: '204': description: Response @@ -103764,7 +103877,7 @@ paths: - docker - nuget - container - - *650 + - *651 - *19 - *17 responses: @@ -103776,8 +103889,8 @@ paths: type: array items: *232 examples: - default: *651 - '400': *652 + default: *652 + '400': *653 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103806,7 +103919,7 @@ paths: application/json: schema: *232 examples: - default: &670 + default: &671 value: id: 40201 name: octo-name @@ -104168,9 +104281,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *653 + default: *654 headers: Link: *57 '304': *35 @@ -104283,7 +104396,7 @@ paths: type: array items: *69 examples: - default: &660 + default: &661 summary: Default response value: - id: 1296269 @@ -104643,7 +104756,7 @@ paths: type: array items: *503 examples: - default: *654 + default: *655 headers: Link: *57 '304': *35 @@ -104722,7 +104835,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Social account description: Social media account type: object @@ -104739,7 +104852,7 @@ paths: - provider - url examples: - default: &656 + default: &657 value: - provider: twitter url: https://twitter.com/github @@ -104802,9 +104915,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 '422': *15 '304': *35 '404': *6 @@ -104892,7 +105005,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104912,7 +105025,7 @@ paths: - title - created_at examples: - default: &688 + default: &689 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104977,9 +105090,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: &658 + default: &659 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105009,7 +105122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &659 + - &660 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105021,9 +105134,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: *658 + default: *659 '404': *6 '304': *35 '403': *27 @@ -105046,7 +105159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *659 + - *660 responses: '204': description: Response @@ -105075,7 +105188,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &689 + - &690 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -105100,11 +105213,11 @@ paths: type: array items: *69 examples: - default-response: *660 + default-response: *661 application/vnd.github.v3.star+json: schema: type: array - items: &690 + items: &691 title: Starred Repository description: Starred Repository type: object @@ -105473,10 +105586,10 @@ paths: application/json: schema: oneOf: + - *636 - *635 - - *634 examples: - default-response: &664 + default-response: &665 summary: Default response value: login: octocat @@ -105511,7 +105624,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &665 + response-with-git-hub-plan-information: &666 summary: Response with GitHub plan information value: login: octocat @@ -105568,7 +105681,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &662 + - &663 name: user_id description: The unique identifier of the user. in: path @@ -105634,7 +105747,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *661 + - *662 - *17 responses: '200': @@ -105669,7 +105782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *662 + - *663 - *250 requestBody: required: true @@ -105744,7 +105857,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *663 + schema: *664 examples: table_view: summary: Response for creating a table view @@ -105796,11 +105909,11 @@ paths: application/json: schema: oneOf: + - *636 - *635 - - *634 examples: - default-response: *664 - response-with-git-hub-plan-information: *665 + default-response: *665 + response-with-git-hub-plan-information: *666 '404': *6 x-github: githubCloudOnly: false @@ -105850,8 +105963,8 @@ paths: required: - subject_digests examples: - default: *666 - withPredicateType: *667 + default: *667 + withPredicateType: *668 responses: '200': description: Response @@ -105905,7 +106018,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106151,7 +106264,7 @@ paths: type: array items: *232 examples: - default: *651 + default: *652 '403': *27 '401': *23 x-github: @@ -106535,9 +106648,9 @@ paths: application/json: schema: type: array - items: *642 + items: *643 examples: - default: *669 + default: *670 headers: Link: *57 x-github: @@ -106766,7 +106879,7 @@ paths: - docker - nuget - container - - *650 + - *651 - *61 - *19 - *17 @@ -106779,10 +106892,10 @@ paths: type: array items: *232 examples: - default: *651 + default: *652 '403': *27 '401': *23 - '400': *652 + '400': *653 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106812,7 +106925,7 @@ paths: application/json: schema: *232 examples: - default: *670 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107161,7 +107274,7 @@ paths: type: array items: *253 examples: - default: *671 + default: *672 headers: Link: *57 '304': *35 @@ -107221,7 +107334,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *672 + items: *673 required: - name - data_type @@ -107237,7 +107350,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *673 + iteration_configuration: *674 required: - name - data_type @@ -107259,8 +107372,8 @@ paths: value: name: Due date data_type: date - single_select_field: *674 - iteration_field: *675 + single_select_field: *675 + iteration_field: *676 responses: '201': description: Response @@ -107268,11 +107381,11 @@ paths: application/json: schema: *253 examples: - text_field: *676 - number_field: *677 - date_field: *678 - single_select_field: *679 - iteration_field: *680 + text_field: *677 + number_field: *678 + date_field: *679 + single_select_field: *680 + iteration_field: *681 '304': *35 '403': *27 '401': *23 @@ -107294,7 +107407,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *250 - - *681 + - *682 - *61 responses: '200': @@ -107303,7 +107416,7 @@ paths: application/json: schema: *253 examples: - default: *682 + default: *683 headers: Link: *57 '304': *35 @@ -107660,7 +107773,7 @@ paths: parameters: - *250 - *61 - - *683 + - *684 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -107935,7 +108048,7 @@ paths: - *107 - *109 - *108 - - *684 + - *685 - *110 responses: '200': @@ -108066,7 +108179,7 @@ paths: parameters: - *61 - *107 - - *685 + - *686 - *108 responses: '200': @@ -108165,9 +108278,9 @@ paths: - *107 - *109 - *108 - - *686 - - *110 - *687 + - *110 + - *688 responses: '200': description: Response when getting a billing usage summary @@ -108301,9 +108414,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 headers: Link: *57 x-github: @@ -108333,9 +108446,9 @@ paths: application/json: schema: type: array - items: *657 + items: *658 examples: - default: *688 + default: *689 headers: Link: *57 x-github: @@ -108360,7 +108473,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *61 - - *689 + - *690 - *51 - *17 - *19 @@ -108372,11 +108485,11 @@ paths: schema: anyOf: - type: array - items: *690 + items: *691 - type: array items: *69 examples: - default-response: *660 + default-response: *661 headers: Link: *57 x-github: @@ -108536,7 +108649,7 @@ webhooks: type: string enum: - disabled - enterprise: &691 + enterprise: &692 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108605,7 +108718,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &692 + installation: &693 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108626,7 +108739,7 @@ webhooks: required: - id - node_id - organization: &693 + organization: &694 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108699,7 +108812,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &694 + repository: &695 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109044,6 +109157,12 @@ webhooks: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -109612,10 +109731,10 @@ webhooks: type: string enum: - enabled - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -109691,11 +109810,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: &695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: &696 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -109918,11 +110037,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: *695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: *696 sender: *4 required: - action @@ -110110,11 +110229,11 @@ webhooks: - everyone required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - rule: *695 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + rule: *696 sender: *4 required: - action @@ -110198,7 +110317,7 @@ webhooks: type: string enum: - completed - check_run: &697 + check_run: &698 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110308,7 +110427,7 @@ webhooks: - examples: - neutral - deployment: *696 + deployment: *697 details_url: type: string examples: @@ -110406,10 +110525,10 @@ webhooks: - output - app - pull_requests - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -110800,11 +110919,11 @@ webhooks: type: string enum: - created - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -111198,11 +111317,11 @@ webhooks: type: string enum: - requested_action - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 requested_action: description: The action requested by the user. type: object @@ -111605,11 +111724,11 @@ webhooks: type: string enum: - rerequested - check_run: *697 - installation: *692 - enterprise: *691 - organization: *693 - repository: *694 + check_run: *698 + installation: *693 + enterprise: *692 + organization: *694 + repository: *695 sender: *4 required: - check_run @@ -112594,10 +112713,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -113301,10 +113420,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -114002,10 +114121,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -114326,20 +114445,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &698 + commit_oid: &699 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *691 - installation: *692 - organization: *693 - ref: &699 + enterprise: *692 + installation: *693 + organization: *694 + ref: &700 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -114747,12 +114866,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115035,12 +115154,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115386,12 +115505,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -115681,9 +115800,9 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115691,7 +115810,7 @@ webhooks: type: - string - 'null' - repository: *694 + repository: *695 sender: *4 required: - action @@ -115937,12 +116056,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *698 - enterprise: *691 - installation: *692 - organization: *693 - ref: *699 - repository: *694 + commit_oid: *699 + enterprise: *692 + installation: *693 + organization: *694 + ref: *700 + repository: *695 sender: *4 required: - action @@ -116263,10 +116382,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -116526,10 +116645,10 @@ webhooks: - updated_at - author_association - body - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -116610,18 +116729,18 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *693 - pusher_type: &700 + organization: *694 + pusher_type: &701 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &701 + ref: &702 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116631,7 +116750,7 @@ webhooks: enum: - tag - branch - repository: *694 + repository: *695 sender: *4 required: - ref @@ -116714,9 +116833,9 @@ webhooks: enum: - created definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116801,9 +116920,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116881,9 +117000,9 @@ webhooks: enum: - promote_to_enterprise definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -116961,9 +117080,9 @@ webhooks: enum: - updated definition: *261 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -117040,10 +117159,10 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - repository: *694 - organization: *693 + enterprise: *692 + installation: *693 + repository: *695 + organization: *694 sender: *4 new_property_values: type: array @@ -117128,18 +117247,18 @@ webhooks: title: delete event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - pusher_type: *700 - ref: *701 + enterprise: *692 + installation: *693 + organization: *694 + pusher_type: *701 + ref: *702 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *694 + repository: *695 sender: *4 required: - ref @@ -117224,10 +117343,10 @@ webhooks: enum: - auto_dismissed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117312,10 +117431,10 @@ webhooks: enum: - auto_reopened alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117400,10 +117519,10 @@ webhooks: enum: - created alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117486,10 +117605,10 @@ webhooks: enum: - dismissed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117572,10 +117691,10 @@ webhooks: enum: - fixed alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117659,10 +117778,10 @@ webhooks: enum: - reintroduced alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117745,10 +117864,10 @@ webhooks: enum: - reopened alert: *459 - installation: *692 - organization: *693 - enterprise: *691 - repository: *694 + installation: *693 + organization: *694 + enterprise: *692 + repository: *695 sender: *4 required: - action @@ -117825,9 +117944,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - key: &702 + enterprise: *692 + installation: *693 + key: &703 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117865,8 +117984,8 @@ webhooks: - verified - created_at - read_only - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -117943,11 +118062,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - key: *702 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + key: *703 + organization: *694 + repository: *695 sender: *4 required: - action @@ -118514,12 +118633,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: &706 + workflow: &707 title: Workflow type: - object @@ -119260,10 +119379,10 @@ webhooks: deployment: *465 pull_requests: type: array - items: *548 - repository: *694 - organization: *693 - installation: *692 + items: *549 + repository: *695 + organization: *694 + installation: *693 sender: *4 responses: '200': @@ -119334,7 +119453,7 @@ webhooks: type: string enum: - approved - approver: &703 + approver: &704 type: object properties: avatar_url: @@ -119377,11 +119496,11 @@ webhooks: type: string comment: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - reviewers: &704 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + reviewers: &705 type: array items: type: object @@ -119462,7 +119581,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &705 + workflow_job_run: &706 type: object properties: conclusion: @@ -120208,18 +120327,18 @@ webhooks: type: string enum: - rejected - approver: *703 + approver: *704 comment: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - reviewers: *704 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + reviewers: *705 sender: *4 since: type: string - workflow_job_run: *705 + workflow_job_run: *706 workflow_job_runs: type: array items: @@ -120936,13 +121055,13 @@ webhooks: type: string enum: - requested - enterprise: *691 + enterprise: *692 environment: type: string - installation: *692 - organization: *693 - repository: *694 - requestor: &711 + installation: *693 + organization: *694 + repository: *695 + requestor: &712 title: User type: - object @@ -122875,12 +122994,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Deployment Workflow Run type: @@ -123571,7 +123690,7 @@ webhooks: type: string enum: - answered - answer: &709 + answer: &710 type: object properties: author_association: @@ -123731,11 +123850,11 @@ webhooks: - created_at - updated_at - body - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -123862,11 +123981,11 @@ webhooks: - from required: - category - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -123949,11 +124068,11 @@ webhooks: type: string enum: - closed - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124035,7 +124154,7 @@ webhooks: type: string enum: - created - comment: &708 + comment: &709 type: object properties: author_association: @@ -124195,11 +124314,11 @@ webhooks: - updated_at - body - reactions - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124282,12 +124401,12 @@ webhooks: type: string enum: - deleted - comment: *708 - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + comment: *709 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124382,12 +124501,12 @@ webhooks: - from required: - body - comment: *708 - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + comment: *709 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124471,11 +124590,11 @@ webhooks: type: string enum: - created - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124557,11 +124676,11 @@ webhooks: type: string enum: - deleted - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124661,11 +124780,11 @@ webhooks: type: string required: - from - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124747,10 +124866,10 @@ webhooks: type: string enum: - labeled - discussion: *707 - enterprise: *691 - installation: *692 - label: &710 + discussion: *708 + enterprise: *692 + installation: *693 + label: &711 title: Label type: object properties: @@ -124783,8 +124902,8 @@ webhooks: - color - default - description - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124867,11 +124986,11 @@ webhooks: type: string enum: - locked - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -124953,11 +125072,11 @@ webhooks: type: string enum: - pinned - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125039,11 +125158,11 @@ webhooks: type: string enum: - reopened - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125128,16 +125247,16 @@ webhooks: changes: type: object properties: - new_discussion: *707 - new_repository: *694 + new_discussion: *708 + new_repository: *695 required: - new_discussion - new_repository - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125220,10 +125339,10 @@ webhooks: type: string enum: - unanswered - discussion: *707 - old_answer: *709 - organization: *693 - repository: *694 + discussion: *708 + old_answer: *710 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125305,12 +125424,12 @@ webhooks: type: string enum: - unlabeled - discussion: *707 - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125393,11 +125512,11 @@ webhooks: type: string enum: - unlocked - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125479,11 +125598,11 @@ webhooks: type: string enum: - unpinned - discussion: *707 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + discussion: *708 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -125556,7 +125675,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *691 + enterprise: *692 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126234,9 +126353,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - forkee @@ -126382,9 +126501,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pages: description: The pages that were updated. type: array @@ -126422,7 +126541,7 @@ webhooks: - action - sha - html_url - repository: *694 + repository: *695 sender: *4 required: - pages @@ -126498,10 +126617,10 @@ webhooks: type: string enum: - created - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: &712 + organization: *694 + repositories: &713 description: An array of repository objects that the installation can access. type: array @@ -126527,8 +126646,8 @@ webhooks: - name - full_name - private - repository: *694 - requester: *711 + repository: *695 + requester: *712 sender: *4 required: - action @@ -126603,11 +126722,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -126684,11 +126803,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -126765,10 +126884,10 @@ webhooks: type: string enum: - added - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories_added: &713 + organization: *694 + repositories_added: &714 description: An array of repository objects, which were added to the installation. type: array @@ -126814,15 +126933,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *694 - repository_selection: &714 + repository: *695 + repository_selection: &715 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *711 + requester: *712 sender: *4 required: - action @@ -126901,10 +127020,10 @@ webhooks: type: string enum: - removed - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories_added: *713 + organization: *694 + repositories_added: *714 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126931,9 +127050,9 @@ webhooks: - name - full_name - private - repository: *694 - repository_selection: *714 - requester: *711 + repository: *695 + repository_selection: *715 + requester: *712 sender: *4 required: - action @@ -127012,11 +127131,11 @@ webhooks: type: string enum: - suspend - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -127198,10 +127317,10 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 target_type: type: string @@ -127280,11 +127399,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *691 + enterprise: *692 installation: *20 - organization: *693 - repositories: *712 - repository: *694 + organization: *694 + repositories: *713 + repository: *695 requester: type: - 'null' @@ -127450,6 +127569,7 @@ webhooks: pin: anyOf: - type: 'null' + - *528 user: title: User type: @@ -127535,8 +127655,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128348,8 +128468,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128710,8 +128830,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -128791,7 +128911,7 @@ webhooks: type: string enum: - deleted - comment: &715 + comment: &716 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128948,6 +129068,7 @@ webhooks: pin: anyOf: - type: 'null' + - *528 required: - url - html_url @@ -128961,8 +129082,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129770,8 +129891,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130134,8 +130255,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -130215,7 +130336,7 @@ webhooks: type: string enum: - edited - changes: &739 + changes: &740 description: The changes to the comment. type: object properties: @@ -130227,9 +130348,9 @@ webhooks: type: string required: - from - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131040,8 +131161,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131402,8 +131523,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -131484,9 +131605,9 @@ webhooks: type: string enum: - pinned - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132299,8 +132420,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132663,8 +132784,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -132744,9 +132865,9 @@ webhooks: type: string enum: - unpinned - comment: *715 - enterprise: *691 - installation: *692 + comment: *716 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133559,8 +133680,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133923,8 +134044,8 @@ webhooks: - state - locked - assignee - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134013,9 +134134,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134104,9 +134225,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134194,9 +134315,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134285,9 +134406,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -134367,10 +134488,10 @@ webhooks: type: string enum: - assigned - assignee: *711 - enterprise: *691 - installation: *692 - issue: &718 + assignee: *712 + enterprise: *692 + installation: *693 + issue: &719 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135177,11 +135298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135301,8 +135422,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -135382,8 +135503,8 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136195,11 +136316,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136462,8 +136583,8 @@ webhooks: required: - state - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -136542,8 +136663,8 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137346,11 +137467,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137469,8 +137590,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -137549,8 +137670,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138376,11 +138497,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138478,7 +138599,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &716 + milestone: &717 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138621,8 +138742,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -138721,8 +138842,8 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139529,11 +139650,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139653,9 +139774,9 @@ webhooks: - active_lock_reason - body - reactions - label: *710 - organization: *693 - repository: *694 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -139735,8 +139856,8 @@ webhooks: type: string enum: - labeled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140542,11 +140663,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140666,9 +140787,9 @@ webhooks: - active_lock_reason - body - reactions - label: *710 - organization: *693 - repository: *694 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -140748,8 +140869,8 @@ webhooks: type: string enum: - locked - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141580,11 +141701,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141681,8 +141802,8 @@ webhooks: format: uri user_view_type: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -141761,8 +141882,8 @@ webhooks: type: string enum: - milestoned - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142587,11 +142708,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142688,9 +142809,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *716 - organization: *693 - repository: *694 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -143577,11 +143698,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143805,6 +143926,10 @@ webhooks: has_discussions: description: Whether the repository has discussions enabled. type: boolean + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_downloads: description: Whether downloads are enabled. type: boolean @@ -144158,8 +144283,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144966,11 +145091,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145089,8 +145214,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -145170,9 +145295,9 @@ webhooks: type: string enum: - pinned - enterprise: *691 - installation: *692 - issue: &717 + enterprise: *692 + installation: *693 + issue: &718 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145973,11 +146098,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146096,8 +146221,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -146176,8 +146301,8 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147006,11 +147131,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147108,8 +147233,8 @@ webhooks: user_view_type: type: string type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -147993,11 +148118,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148259,6 +148384,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -148596,11 +148725,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *691 - installation: *692 - issue: *717 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *718 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148680,12 +148809,12 @@ webhooks: type: string enum: - typed - enterprise: *691 - installation: *692 - issue: *718 + enterprise: *692 + installation: *693 + issue: *719 type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148766,7 +148895,7 @@ webhooks: type: string enum: - unassigned - assignee: &742 + assignee: &743 title: User type: - object @@ -148838,11 +148967,11 @@ webhooks: required: - login - id - enterprise: *691 - installation: *692 - issue: *718 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *719 + organization: *694 + repository: *695 sender: *4 required: - action @@ -148921,12 +149050,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *691 - installation: *692 - issue: *718 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *719 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -149006,8 +149135,8 @@ webhooks: type: string enum: - unlocked - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149836,11 +149965,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *626 - issue_dependencies_summary: *627 + sub_issues_summary: *627 + issue_dependencies_summary: *628 issue_field_values: type: array - items: *628 + items: *629 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149937,8 +150066,8 @@ webhooks: format: uri user_view_type: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150018,11 +150147,11 @@ webhooks: type: string enum: - unpinned - enterprise: *691 - installation: *692 - issue: *717 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + issue: *718 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150101,12 +150230,12 @@ webhooks: type: string enum: - untyped - enterprise: *691 - installation: *692 - issue: *718 + enterprise: *692 + installation: *693 + issue: *719 type: *215 - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150186,11 +150315,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150268,11 +150397,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150382,11 +150511,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - label: *710 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + label: *711 + organization: *694 + repository: *695 sender: *4 required: - action @@ -150468,9 +150597,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: &719 + enterprise: *692 + installation: *693 + marketplace_purchase: &720 title: Marketplace Purchase type: object required: @@ -150558,8 +150687,8 @@ webhooks: type: integer unit_count: type: integer - organization: *693 - previous_marketplace_purchase: &720 + organization: *694 + previous_marketplace_purchase: &721 title: Marketplace Purchase type: object properties: @@ -150643,7 +150772,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -150723,10 +150852,10 @@ webhooks: - changed effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150814,7 +150943,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -150896,10 +151025,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150985,7 +151114,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *694 + repository: *695 sender: *4 required: - action @@ -151066,8 +151195,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 marketplace_purchase: title: Marketplace Purchase type: object @@ -151153,9 +151282,9 @@ webhooks: type: integer unit_count: type: integer - organization: *693 - previous_marketplace_purchase: *720 - repository: *694 + organization: *694 + previous_marketplace_purchase: *721 + repository: *695 sender: *4 required: - action @@ -151235,12 +151364,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *691 - installation: *692 - marketplace_purchase: *719 - organization: *693 - previous_marketplace_purchase: *720 - repository: *694 + enterprise: *692 + installation: *693 + marketplace_purchase: *720 + organization: *694 + previous_marketplace_purchase: *721 + repository: *695 sender: *4 required: - action @@ -151342,11 +151471,11 @@ webhooks: type: string required: - to - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151448,11 +151577,11 @@ webhooks: type: - string - 'null' - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151531,11 +151660,11 @@ webhooks: type: string enum: - removed - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 sender: *4 required: - action @@ -151613,11 +151742,11 @@ webhooks: type: string enum: - added - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151695,7 +151824,7 @@ webhooks: required: - login - id - team: &721 + team: &722 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151925,11 +152054,11 @@ webhooks: type: string enum: - removed - enterprise: *691 - installation: *692 - member: *711 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + member: *712 + organization: *694 + repository: *695 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152008,7 +152137,7 @@ webhooks: required: - login - id - team: *721 + team: *722 required: - action - scope @@ -152090,8 +152219,8 @@ webhooks: type: string enum: - checks_requested - installation: *692 - merge_group: &722 + installation: *693 + merge_group: &723 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -152117,8 +152246,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152204,10 +152333,10 @@ webhooks: - merged - invalidated - dequeued - installation: *692 - merge_group: *722 - organization: *693 - repository: *694 + installation: *693 + merge_group: *723 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152280,7 +152409,7 @@ webhooks: type: string enum: - deleted - enterprise: *691 + enterprise: *692 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -152389,12 +152518,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *692 - organization: *693 + installation: *693 + organization: *694 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -152474,11 +152603,11 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152557,9 +152686,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - milestone: &723 + enterprise: *692 + installation: *693 + milestone: &724 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152701,8 +152830,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152781,11 +152910,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152895,11 +153024,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - milestone: *716 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *717 + organization: *694 + repository: *695 sender: *4 required: - action @@ -152979,11 +153108,11 @@ webhooks: type: string enum: - opened - enterprise: *691 - installation: *692 - milestone: *723 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + milestone: *724 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153062,11 +153191,11 @@ webhooks: type: string enum: - blocked - blocked_user: *711 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + blocked_user: *712 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153145,11 +153274,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *711 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + blocked_user: *712 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153228,9 +153357,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - membership: &724 + enterprise: *692 + installation: *693 + membership: &725 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -153340,8 +153469,8 @@ webhooks: - role - organization_url - user - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153419,11 +153548,11 @@ webhooks: type: string enum: - member_added - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153502,8 +153631,8 @@ webhooks: type: string enum: - member_invited - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153625,10 +153754,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 - user: *711 + user: *712 required: - action - invitation @@ -153706,11 +153835,11 @@ webhooks: type: string enum: - member_removed - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153797,11 +153926,11 @@ webhooks: properties: from: type: string - enterprise: *691 - installation: *692 - membership: *724 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + membership: *725 + organization: *694 + repository: *695 sender: *4 required: - action @@ -153878,9 +154007,9 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 package: description: Information about the package. type: object @@ -154403,7 +154532,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &725 + items: &726 title: Ruby Gems metadata type: object properties: @@ -154500,7 +154629,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -154576,9 +154705,9 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 package: description: Information about the package. type: object @@ -154940,7 +155069,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *725 + items: *726 source_url: type: string format: uri @@ -155011,7 +155140,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -155191,12 +155320,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *691 + enterprise: *692 id: type: integer - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - id @@ -155273,7 +155402,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &726 + personal_access_token_request: &727 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -155423,10 +155552,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *691 - organization: *693 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155503,11 +155632,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *726 - enterprise: *691 - organization: *693 + personal_access_token_request: *727 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155583,11 +155712,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *726 - enterprise: *691 - organization: *693 + personal_access_token_request: *727 + enterprise: *692 + organization: *694 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155662,11 +155791,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *726 - organization: *693 - enterprise: *691 + personal_access_token_request: *727 + organization: *694 + enterprise: *692 sender: *4 - installation: *692 + installation: *693 required: - action - personal_access_token_request @@ -155771,7 +155900,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *727 + last_response: *728 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155803,8 +155932,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 zen: description: Random string of GitHub zen. @@ -156049,10 +156178,10 @@ webhooks: - from required: - note - enterprise: *691 - installation: *692 - organization: *693 - project_card: &728 + enterprise: *692 + installation: *693 + organization: *694 + project_card: &729 title: Project Card type: object properties: @@ -156175,7 +156304,7 @@ webhooks: - creator - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -156256,11 +156385,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project_card: *728 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_card: *729 + repository: *695 sender: *4 required: - action @@ -156340,9 +156469,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 project_card: title: Project Card type: object @@ -156472,7 +156601,7 @@ webhooks: repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -156566,11 +156695,11 @@ webhooks: - from required: - note - enterprise: *691 - installation: *692 - organization: *693 - project_card: *728 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_card: *729 + repository: *695 sender: *4 required: - action @@ -156664,9 +156793,9 @@ webhooks: - from required: - column_id - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 project_card: allOf: - title: Project Card @@ -156863,7 +156992,7 @@ webhooks: type: string required: - after_id - repository: *694 + repository: *695 sender: *4 required: - action @@ -156943,10 +157072,10 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - organization: *693 - project: &730 + enterprise: *692 + installation: *693 + organization: *694 + project: &731 title: Project type: object properties: @@ -157073,7 +157202,7 @@ webhooks: - creator - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -157153,10 +157282,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project_column: &729 + enterprise: *692 + installation: *693 + organization: *694 + project_column: &730 title: Project Column type: object properties: @@ -157196,7 +157325,7 @@ webhooks: - name - created_at - updated_at - repository: *694 + repository: *695 sender: *4 required: - action @@ -157275,14 +157404,14 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -157371,11 +157500,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 + repository: *695 sender: *4 required: - action @@ -157455,11 +157584,11 @@ webhooks: type: string enum: - moved - enterprise: *691 - installation: *692 - organization: *693 - project_column: *729 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project_column: *730 + repository: *695 sender: *4 required: - action @@ -157539,11 +157668,11 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157623,14 +157752,14 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - project: *730 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 repository: anyOf: - type: 'null' - - *694 + - *695 sender: *4 required: - action @@ -157731,11 +157860,11 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157814,11 +157943,11 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 - organization: *693 - project: *730 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + project: *731 + repository: *695 sender: *4 required: - action @@ -157899,8 +158028,8 @@ webhooks: type: string enum: - closed - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -157982,8 +158111,8 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158065,8 +158194,8 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158188,8 +158317,8 @@ webhooks: type: string to: type: string - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -158273,7 +158402,7 @@ webhooks: type: string enum: - archived - changes: &734 + changes: &735 type: object properties: archived_at: @@ -158289,9 +158418,9 @@ webhooks: - string - 'null' format: date-time - installation: *692 - organization: *693 - projects_v2_item: &731 + installation: *693 + organization: *694 + projects_v2_item: &732 title: Projects v2 Item description: An item belonging to a project type: object @@ -158431,9 +158560,9 @@ webhooks: - 'null' to: type: string - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158515,9 +158644,9 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158598,9 +158727,9 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158705,7 +158834,7 @@ webhooks: oneOf: - type: string - type: integer - - &732 + - &733 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158729,7 +158858,7 @@ webhooks: required: - id - name - - &733 + - &734 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158769,8 +158898,8 @@ webhooks: oneOf: - type: string - type: integer - - *732 - *733 + - *734 type: - 'null' - string @@ -158793,9 +158922,9 @@ webhooks: - 'null' required: - body - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158892,9 +159021,9 @@ webhooks: type: - string - 'null' - installation: *692 - organization: *693 - projects_v2_item: *731 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -158977,10 +159106,10 @@ webhooks: type: string enum: - restored - changes: *734 - installation: *692 - organization: *693 - projects_v2_item: *731 + changes: *735 + installation: *693 + organization: *694 + projects_v2_item: *732 sender: *4 required: - action @@ -159062,8 +159191,8 @@ webhooks: type: string enum: - reopened - installation: *692 - organization: *693 + installation: *693 + organization: *694 projects_v2: *248 sender: *4 required: @@ -159145,9 +159274,9 @@ webhooks: type: string enum: - created - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159228,9 +159357,9 @@ webhooks: type: string enum: - deleted - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159376,9 +159505,9 @@ webhooks: - string - 'null' format: date - installation: *692 - organization: *693 - projects_v2_status_update: *735 + installation: *693 + organization: *694 + projects_v2_status_update: *736 sender: *4 required: - action @@ -159449,10 +159578,10 @@ webhooks: title: public event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - repository @@ -159529,13 +159658,13 @@ webhooks: type: string enum: - assigned - assignee: *711 - enterprise: *691 - installation: *692 - number: &736 + assignee: *712 + enterprise: *692 + installation: *693 + number: &737 description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -160043,6 +160172,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -160693,6 +160826,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -161884,7 +162021,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -161966,11 +162103,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -162464,6 +162601,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_pages: type: boolean has_projects: @@ -163120,6 +163261,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -164312,7 +164457,7 @@ webhooks: - draft reason: type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -164394,11 +164539,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -164902,6 +165047,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -165548,6 +165697,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -166740,7 +166893,7 @@ webhooks: - draft reason: type: string - repository: *694 + repository: *695 sender: *4 required: - action @@ -166822,13 +166975,13 @@ webhooks: type: string enum: - closed - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: &737 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: &738 allOf: - - *548 + - *549 - type: object properties: allow_auto_merge: @@ -166890,7 +167043,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *694 + repository: *695 sender: *4 required: - action @@ -166971,12 +167124,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -167056,11 +167209,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *691 + enterprise: *692 milestone: *251 - number: *736 - organization: *693 - pull_request: &738 + number: *737 + organization: *694 + pull_request: &739 title: Pull Request type: object properties: @@ -167565,6 +167718,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -168209,6 +168366,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -169387,7 +169548,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -169466,11 +169627,11 @@ webhooks: type: string enum: - dequeued - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -169974,6 +170135,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -170620,6 +170785,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -171816,7 +171985,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *694 + repository: *695 sender: *4 required: - action @@ -171940,12 +172109,12 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -172025,11 +172194,11 @@ webhooks: type: string enum: - enqueued - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -172533,6 +172702,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -173179,6 +173352,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -174360,7 +174537,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -174440,11 +174617,11 @@ webhooks: type: string enum: - labeled - enterprise: *691 - installation: *692 - label: *710 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + label: *711 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -174950,6 +175127,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -175600,6 +175781,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -176792,7 +176977,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -176873,10 +177058,10 @@ webhooks: type: string enum: - locked - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -177381,6 +177566,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -178031,6 +178220,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -179222,7 +179415,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -179302,12 +179495,12 @@ webhooks: type: string enum: - milestoned - enterprise: *691 + enterprise: *692 milestone: *251 - number: *736 - organization: *693 - pull_request: *738 - repository: *694 + number: *737 + organization: *694 + pull_request: *739 + repository: *695 sender: *4 required: - action @@ -179386,12 +179579,12 @@ webhooks: type: string enum: - opened - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179472,12 +179665,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179557,12 +179750,12 @@ webhooks: type: string enum: - reopened - enterprise: *691 - installation: *692 - number: *736 - organization: *693 - pull_request: *737 - repository: *694 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 + pull_request: *738 + repository: *695 sender: *4 required: - action @@ -179937,9 +180130,9 @@ webhooks: - start_side - side - reactions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -180442,6 +180635,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -181078,6 +181275,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -182169,7 +182370,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -182249,7 +182450,7 @@ webhooks: type: string enum: - deleted - comment: &740 + comment: &741 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -182542,9 +182743,9 @@ webhooks: - start_side - side - reactions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -183045,6 +183246,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -183681,6 +183886,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -184762,7 +184971,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -184842,11 +185051,11 @@ webhooks: type: string enum: - edited - changes: *739 - comment: *740 - enterprise: *691 - installation: *692 - organization: *693 + changes: *740 + comment: *741 + enterprise: *692 + installation: *693 + organization: *694 pull_request: type: object properties: @@ -185349,6 +185558,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -185985,6 +186198,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -187067,7 +187284,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *694 + repository: *695 sender: *4 required: - action @@ -187148,9 +187365,9 @@ webhooks: type: string enum: - dismissed - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -187654,6 +187871,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -188290,6 +188511,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189383,7 +189608,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 review: description: The review that was affected. type: object @@ -189634,9 +189859,9 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -191750,8 +191975,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 - review: &741 + repository: *695 + review: &742 description: The review that was affected. type: object properties: @@ -191989,12 +192214,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -192501,6 +192726,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -193142,6 +193371,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -194341,7 +194574,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_reviewer: title: User type: @@ -194427,12 +194660,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -194939,6 +195172,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -195587,6 +195824,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196786,7 +197027,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196981,12 +197222,12 @@ webhooks: type: string enum: - review_requested - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -197495,6 +197736,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -198143,6 +198388,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -199335,7 +199584,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_reviewer: title: User type: @@ -199422,12 +199671,12 @@ webhooks: type: string enum: - review_requested - enterprise: *691 - installation: *692 + enterprise: *692 + installation: *693 number: description: The pull request number. type: integer - organization: *693 + organization: *694 pull_request: title: Pull Request type: object @@ -199936,6 +200185,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -200584,6 +200837,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -201767,7 +202024,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201951,9 +202208,9 @@ webhooks: type: string enum: - submitted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -202457,6 +202714,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -203095,6 +203356,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -204189,8 +204454,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 - review: *741 + repository: *695 + review: *742 sender: *4 required: - action @@ -204270,9 +204535,9 @@ webhooks: type: string enum: - resolved - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -204774,6 +205039,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -205361,6 +205630,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -206403,7 +206676,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 sender: *4 thread: type: object @@ -206800,9 +207073,9 @@ webhooks: type: string enum: - unresolved - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 pull_request: title: Simple Pull Request type: object @@ -207302,6 +207575,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -207885,6 +208162,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -208916,7 +209197,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *694 + repository: *695 sender: *4 thread: type: object @@ -209315,10 +209596,10 @@ webhooks: type: string before: type: string - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -209824,6 +210105,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -210470,6 +210755,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -211653,7 +211942,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -211735,11 +212024,11 @@ webhooks: type: string enum: - unassigned - assignee: *742 - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + assignee: *743 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -212247,6 +212536,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -212897,6 +213190,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -214089,7 +214386,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -214168,11 +214465,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *691 - installation: *692 - label: *710 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + label: *711 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -214678,6 +214975,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -215328,6 +215629,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -216511,7 +216816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -216592,10 +216897,10 @@ webhooks: type: string enum: - unlocked - enterprise: *691 - installation: *692 - number: *736 - organization: *693 + enterprise: *692 + installation: *693 + number: *737 + organization: *694 pull_request: title: Pull Request type: object @@ -217097,6 +217402,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -217745,6 +218054,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -218924,7 +219237,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *694 + repository: *695 sender: *4 required: - action @@ -219127,7 +219440,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *691 + enterprise: *692 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -219222,8 +219535,8 @@ webhooks: - url - author - committer - installation: *692 - organization: *693 + installation: *693 + organization: *694 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -219391,6 +219704,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -219811,9 +220128,9 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 registry_package: type: object properties: @@ -220290,7 +220607,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *725 + items: *726 summary: type: string tag_name: @@ -220346,7 +220663,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -220424,9 +220741,9 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 registry_package: type: object properties: @@ -220738,7 +221055,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *725 + items: *726 summary: type: string tag_name: @@ -220788,7 +221105,7 @@ webhooks: - owner - package_version - registry - repository: *694 + repository: *695 sender: *4 required: - action @@ -220865,10 +221182,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - release: &743 + enterprise: *692 + installation: *693 + organization: *694 + release: &744 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221199,7 +221516,7 @@ webhooks: - updated_at - zipball_url - body - repository: *694 + repository: *695 sender: *4 required: - action @@ -221276,11 +221593,11 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -221397,11 +221714,11 @@ webhooks: type: boolean required: - to - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -221479,9 +221796,9 @@ webhooks: type: string enum: - prereleased - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -221817,7 +222134,7 @@ webhooks: - string - 'null' format: uri - repository: *694 + repository: *695 sender: *4 required: - action @@ -221893,10 +222210,10 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - release: &744 + enterprise: *692 + installation: *693 + organization: *694 + release: &745 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222229,7 +222546,7 @@ webhooks: - string - 'null' format: uri - repository: *694 + repository: *695 sender: *4 required: - action @@ -222305,11 +222622,11 @@ webhooks: type: string enum: - released - enterprise: *691 - installation: *692 - organization: *693 - release: *743 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *744 + repository: *695 sender: *4 required: - action @@ -222385,11 +222702,11 @@ webhooks: type: string enum: - unpublished - enterprise: *691 - installation: *692 - organization: *693 - release: *744 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + release: *745 + repository: *695 sender: *4 required: - action @@ -222465,11 +222782,11 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - repository_advisory: *612 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + repository_advisory: *613 sender: *4 required: - action @@ -222545,11 +222862,11 @@ webhooks: type: string enum: - reported - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - repository_advisory: *612 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + repository_advisory: *613 sender: *4 required: - action @@ -222625,10 +222942,10 @@ webhooks: type: string enum: - archived - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222705,10 +223022,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222786,10 +223103,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222874,10 +223191,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -222992,10 +223309,10 @@ webhooks: - 'null' items: type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223067,10 +223384,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 status: type: string @@ -223151,10 +223468,10 @@ webhooks: type: string enum: - privatized - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223231,10 +223548,10 @@ webhooks: type: string enum: - publicized - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223328,10 +223645,10 @@ webhooks: - name required: - repository - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223411,10 +223728,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 sender: *4 required: @@ -223493,10 +223810,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 sender: *4 required: @@ -223575,10 +223892,10 @@ webhooks: type: string enum: - edited - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 repository_ruleset: *293 changes: type: object @@ -223640,16 +223957,16 @@ webhooks: properties: added: type: array - items: *568 + items: *569 deleted: type: array - items: *568 + items: *569 updated: type: array items: type: object properties: - rule: *568 + rule: *569 changes: type: object properties: @@ -223886,10 +224203,10 @@ webhooks: - from required: - owner - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -223967,10 +224284,10 @@ webhooks: type: string enum: - unarchived - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224048,7 +224365,7 @@ webhooks: type: string enum: - create - alert: &745 + alert: &746 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224173,10 +224490,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224386,10 +224703,10 @@ webhooks: type: string enum: - dismissed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224467,11 +224784,11 @@ webhooks: type: string enum: - reopen - alert: *745 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *746 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224673,10 +224990,10 @@ webhooks: enum: - fixed - open - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224754,7 +225071,7 @@ webhooks: type: string enum: - assigned - alert: &746 + alert: &747 type: object properties: number: *162 @@ -224869,10 +225186,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -224950,11 +225267,11 @@ webhooks: type: string enum: - created - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225035,11 +225352,11 @@ webhooks: type: string enum: - created - alert: *746 - installation: *692 - location: *747 - organization: *693 - repository: *694 + alert: *747 + installation: *693 + location: *748 + organization: *694 + repository: *695 sender: *4 required: - location @@ -225277,11 +225594,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225359,11 +225676,11 @@ webhooks: type: string enum: - reopened - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225441,11 +225758,11 @@ webhooks: type: string enum: - resolved - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225523,12 +225840,12 @@ webhooks: type: string enum: - unassigned - alert: *746 + alert: *747 assignee: *4 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225606,11 +225923,11 @@ webhooks: type: string enum: - validated - alert: *746 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + alert: *747 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -225740,10 +226057,10 @@ webhooks: - organization - enterprise - - repository: *694 - enterprise: *691 - installation: *692 - organization: *693 + repository: *695 + enterprise: *692 + installation: *693 + organization: *694 sender: *4 required: - action @@ -225821,11 +226138,11 @@ webhooks: type: string enum: - published - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - security_advisory: &748 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + security_advisory: &749 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226011,11 +226328,11 @@ webhooks: type: string enum: - updated - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 - security_advisory: *748 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 + security_advisory: *749 sender: *4 required: - action @@ -226088,10 +226405,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226278,9 +226595,9 @@ webhooks: type: object properties: security_and_analysis: *266 - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: *312 sender: *4 required: @@ -226359,12 +226676,12 @@ webhooks: type: string enum: - cancelled - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: &749 + sponsorship: &750 type: object properties: created_at: @@ -226669,12 +226986,12 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - sponsorship @@ -226762,12 +227079,12 @@ webhooks: type: string required: - from - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -226844,17 +227161,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &750 + effective_date: &751 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - sponsorship @@ -226928,7 +227245,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &751 + changes: &752 type: object properties: tier: @@ -226972,13 +227289,13 @@ webhooks: - from required: - tier - effective_date: *750 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + effective_date: *751 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -227055,13 +227372,13 @@ webhooks: type: string enum: - tier_changed - changes: *751 - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + changes: *752 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - sponsorship: *749 + sponsorship: *750 required: - action - changes @@ -227135,10 +227452,10 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227222,10 +227539,10 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227659,15 +227976,15 @@ webhooks: type: - string - 'null' - enterprise: *691 + enterprise: *692 id: description: The unique identifier of the status. type: integer - installation: *692 + installation: *693 name: type: string - organization: *693 - repository: *694 + organization: *694 + repository: *695 sender: *4 sha: description: The Commit SHA. @@ -227783,9 +228100,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -227875,9 +228192,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -227967,9 +228284,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -228059,9 +228376,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *692 - organization: *693 - repository: *694 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -228138,12 +228455,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - team: &752 + team: &753 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228373,9 +228690,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -228845,7 +229162,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -228921,9 +229238,9 @@ webhooks: type: string enum: - created - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -229393,7 +229710,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -229470,9 +229787,9 @@ webhooks: type: string enum: - deleted - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -229942,7 +230259,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -230086,9 +230403,9 @@ webhooks: - from required: - permissions - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -230558,7 +230875,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - changes @@ -230636,9 +230953,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *691 - installation: *692 - organization: *693 + enterprise: *692 + installation: *693 + organization: *694 repository: title: Repository description: A git repository @@ -231108,7 +231425,7 @@ webhooks: - topics - visibility sender: *4 - team: *752 + team: *753 required: - action - team @@ -231184,10 +231501,10 @@ webhooks: type: string enum: - started - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 required: - action @@ -231260,17 +231577,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *691 + enterprise: *692 inputs: type: - object - 'null' additionalProperties: true - installation: *692 - organization: *693 + installation: *693 + organization: *694 ref: type: string - repository: *694 + repository: *695 sender: *4 workflow: type: string @@ -231352,10 +231669,10 @@ webhooks: type: string enum: - completed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: allOf: @@ -231690,10 +232007,10 @@ webhooks: type: string enum: - in_progress - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: allOf: @@ -232054,10 +232371,10 @@ webhooks: type: string enum: - queued - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: type: object @@ -232282,10 +232599,10 @@ webhooks: type: string enum: - waiting - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 workflow_job: type: object @@ -232512,12 +232829,12 @@ webhooks: type: string enum: - completed - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object @@ -233536,12 +233853,12 @@ webhooks: type: string enum: - in_progress - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object @@ -234545,12 +234862,12 @@ webhooks: type: string enum: - requested - enterprise: *691 - installation: *692 - organization: *693 - repository: *694 + enterprise: *692 + installation: *693 + organization: *694 + repository: *695 sender: *4 - workflow: *706 + workflow: *707 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index d3d5c2c64..36701c6ca 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -9147,6 +9147,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -27760,6 +27768,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -28813,6 +28829,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -80858,6 +80882,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -84268,6 +84300,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -85892,6 +85932,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -86302,6 +86535,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -102910,6 +103146,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -105559,6 +105803,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -113040,6 +113292,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -116450,6 +116710,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -118074,6 +118342,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -118484,6 +118945,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -121921,6 +122385,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -122200,6 +122667,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -123257,6 +123736,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -123536,6 +124018,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -133659,6 +134153,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -135447,6 +135949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -138388,6 +138898,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -138667,6 +139180,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -141009,6 +141534,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -142062,6 +142595,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -144593,6 +145134,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -144872,6 +145416,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -146338,6 +146894,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -146617,6 +147176,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -161496,6 +162067,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -161775,6 +162349,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -164602,6 +165188,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -164881,6 +165470,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -175209,6 +175810,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -175488,6 +176092,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -178160,6 +178776,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -178439,6 +179058,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -181389,6 +182020,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -184799,6 +185438,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -186423,6 +187070,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -186833,6 +187673,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -201191,6 +202034,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -203884,6 +204735,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -204163,6 +205017,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -206254,6 +207120,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -206533,6 +207402,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -210279,6 +211160,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -211814,6 +212703,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -213376,6 +214273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -214694,6 +215599,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -214973,6 +215881,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -215150,6 +216070,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -219770,6 +220693,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -220049,6 +220975,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -221094,6 +222032,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -221373,6 +222314,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224444,6 +225397,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -224723,6 +225679,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224900,6 +225868,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -226694,6 +227665,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -226973,6 +227947,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -227150,6 +228136,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -232723,6 +233712,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -235832,6 +236829,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -236977,6 +237982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243303,6 +244316,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -246412,6 +247433,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -247557,6 +248586,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -259508,6 +260545,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -259787,6 +260827,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -259964,6 +261016,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -260780,6 +261835,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -261548,6 +262609,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -262848,6 +263917,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -263797,6 +264874,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -264212,6 +265297,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -281108,6 +282205,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -281387,6 +282487,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -289219,6 +290331,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -289498,6 +290613,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -289675,6 +290802,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -292859,6 +293989,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -293627,6 +294763,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -294927,6 +296071,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -295876,6 +297028,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -296291,6 +297451,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -296903,6 +298075,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -297868,6 +299043,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -298636,6 +299817,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -299936,6 +301125,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -300885,6 +302082,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -301300,6 +302505,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -308290,6 +309507,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -309352,6 +310577,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -312284,6 +313517,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -312563,6 +313799,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -313153,6 +314401,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -313432,6 +314683,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -315136,6 +316399,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -315415,6 +316681,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -316005,6 +317283,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -316284,6 +317565,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -318818,6 +320111,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -319097,6 +320393,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -319687,6 +320995,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -319966,6 +321277,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -326965,6 +328288,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -327244,6 +328570,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -327834,6 +329172,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -328113,6 +329454,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -366801,6 +368154,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -367080,6 +368436,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -368735,6 +370103,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -369014,6 +370385,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -370179,6 +371562,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -370458,6 +371844,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -371961,6 +373359,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -372240,6 +373641,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -387260,6 +388673,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -387539,6 +388955,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -389373,6 +390801,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -389652,6 +391083,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -391122,6 +392565,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -391401,6 +392847,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -394896,6 +396354,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -395175,6 +396636,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -403454,6 +404927,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -404599,6 +406080,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409761,6 +411250,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -410040,6 +411532,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -411134,6 +412638,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -411413,6 +412920,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -440301,6 +441820,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -443711,6 +445238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -445335,6 +446870,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -445745,6 +447473,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -449087,6 +450818,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -449366,6 +451100,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -450299,6 +452045,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -451067,6 +452819,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -452367,6 +454127,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -453316,6 +455084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -453731,6 +455507,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -465673,6 +467461,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -465952,6 +467743,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -467180,6 +468983,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -467459,6 +469265,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -470278,6 +472096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -473661,6 +475487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475804,6 +477638,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -476738,6 +478765,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -477610,6 +479830,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -477800,6 +480213,1378 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "type": "integer", + "format": "int64", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repositories/42/issues/comments/1" + ] + }, + "body": { + "description": "Contents of the issue comment", + "type": "string", + "examples": [ + "What version of Safari were you using when you observed this bug?" + ] + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ], + "examples": [ + "OWNER" + ] + }, + "performed_via_github_app": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "type": "integer", + "examples": [ + 37 + ] + }, + "slug": { + "description": "The slug name of the GitHub app", + "type": "string", + "examples": [ + "probot-owners" + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDExOkludGVncmF0aW9uMQ==" + ] + }, + "client_id": { + "type": "string", + "examples": [ + "\"Iv1.25b5d1e65ffc4022\"" + ] + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "html_url", + "issue_url", + "user", + "url", + "created_at", + "updated_at" + ] + }, + "examples": { + "default": { + "value": { + "id": 1, + "node_id": "MDEyOklzc3VlQ29tbWVudDE=", + "url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1", + "html_url": "https://github.com/octocat/Hello-World/issues/1347#issuecomment-1", + "body": "Me too", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2011-04-14T16:00:49Z", + "updated_at": "2011-04-14T16:00:49Z", + "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", + "author_association": "COLLABORATOR" + } + } + } + } + } + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -481238,6 +485023,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -486223,6 +490016,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -491004,6 +494805,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -494370,6 +498179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -497736,6 +501553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -500899,6 +504724,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -502861,6 +506694,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -503516,261 +507542,454 @@ "type", "url" ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": [ - "string", - "null" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/enterprises/octo-business" - ] - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": [ - "string", - "null" - ], - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "type": "integer", - "examples": [ - 42 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - ] - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "examples": [ - "Octo Business" - ] - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "examples": [ - "octo-business" - ] - }, - "created_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:01:12Z" - ] - }, - "updated_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:14:43Z" - ] - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] } ] - }, - "name": { - "description": "The name of the GitHub app", - "type": "string", - "examples": [ - "Probot Owners" - ] - }, - "description": { - "type": [ - "string", - "null" - ], - "examples": [ - "The description of the app." - ] - }, - "external_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://example.com" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/apps/super-ci" - ] - }, - "created_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "updated_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "type": "array", - "items": { - "type": "string" - }, - "examples": [ - "label", - "deployment" - ] - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "type": "integer", - "examples": [ - 5 - ] } }, "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" + "pinned_at", + "pinned_by" ] } ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "pin": { - "anyOf": [ - { - "type": "null" - } - ] } }, "required": [ @@ -506065,6 +510284,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -509315,6 +513542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -512649,6 +516884,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -516005,6 +520248,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -532520,6 +536771,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -536923,6 +541182,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -540183,6 +544450,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -543411,6 +547686,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -546744,6 +551027,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -558368,6 +562659,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -560582,6 +565066,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -571187,6 +575679,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -571466,6 +575961,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -578110,6 +582617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -579255,6 +583770,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -582878,6 +587401,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -584016,6 +588547,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -591104,6 +595643,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -592242,6 +596789,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -596133,6 +600688,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -597271,6 +601834,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -600014,6 +604585,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -600293,6 +604867,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -601763,6 +606349,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -602042,6 +606631,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -609383,6 +613984,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -610528,6 +615137,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -614237,6 +618854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -615382,6 +620007,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -659493,6 +664126,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -660261,6 +664900,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -661561,6 +666208,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -662510,6 +667165,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -662925,6 +667588,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -668824,6 +673499,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -669103,6 +673781,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -670279,6 +674969,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -671047,6 +675743,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -672347,6 +677051,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -673296,6 +678008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -673711,6 +678431,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -674894,6 +679626,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -675173,6 +679908,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -687498,6 +692245,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -687777,6 +692527,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -689135,6 +693897,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -689414,6 +694179,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -691709,6 +696486,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -693651,6 +698436,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -699350,6 +704138,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -699629,6 +704420,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -699806,6 +704609,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -705304,6 +710110,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -705583,6 +710392,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -707608,6 +712429,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -707887,6 +712711,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -709357,6 +714193,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -709636,6 +714475,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -711415,6 +716266,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -711694,6 +716548,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -713520,6 +718386,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -713799,6 +718668,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -715441,6 +720322,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -715720,6 +720604,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -718269,6 +723165,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -719037,6 +723939,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -720337,6 +725247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -721286,6 +726204,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -721701,6 +726627,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -723815,6 +728753,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -724094,6 +729035,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -725824,6 +730777,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -726103,6 +731059,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -727568,6 +732536,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -727847,6 +732818,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -733519,6 +738502,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -736629,6 +741620,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -742071,6 +747070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743668,6 +748675,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745243,6 +750258,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -746720,6 +751743,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -746999,6 +752025,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -747176,6 +752214,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -748306,6 +753347,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -748585,6 +753629,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -749569,6 +754625,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -749848,6 +754907,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -752166,6 +757237,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -753501,6 +758580,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -754269,6 +759354,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -755569,6 +760662,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756518,6 +761619,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756933,6 +762042,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -758362,6 +763483,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -758641,6 +763765,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -761697,6 +766833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -762790,6 +767934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -764202,6 +769354,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -764481,6 +769636,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -764658,6 +769825,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -768438,6 +773608,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -771547,6 +776725,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -772692,6 +777878,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777607,6 +782801,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -777886,6 +783083,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -780836,6 +786045,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -784246,6 +789463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -785870,6 +791095,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -786280,6 +791698,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -791762,6 +797183,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -795172,6 +800601,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -796796,6 +802233,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -797206,6 +802836,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -802698,6 +808331,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -806108,6 +811749,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -807732,6 +813381,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -808142,6 +813984,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -814927,6 +820772,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -815206,6 +821054,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -816251,6 +822111,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -816530,6 +822393,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -824958,6 +830833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -828067,6 +833950,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -829212,6 +835103,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840347,6 +846246,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -843757,6 +849664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -845381,6 +851296,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -845791,6 +851899,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -851269,6 +857380,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854679,6 +860798,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -856303,6 +862430,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -856713,6 +863033,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -860079,6 +866402,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -860358,6 +866684,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -860535,6 +866873,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -861560,6 +867901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -862518,6 +868867,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -863503,6 +869860,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -863782,6 +870142,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -863959,6 +870331,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -865269,6 +871644,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -867247,6 +873630,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -869225,6 +875616,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -871383,6 +877782,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873709,6 +880116,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875867,6 +882282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -878253,6 +884676,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -880639,6 +887070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -883025,6 +889464,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885452,6 +891899,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888301,6 +894756,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -888580,6 +895038,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -890530,6 +897000,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893275,6 +899753,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -893554,6 +900035,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -895504,6 +901997,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -898249,6 +904750,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -898528,6 +905032,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -900478,6 +906994,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -903236,6 +909760,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -903515,6 +910042,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -905465,6 +912004,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -908566,6 +915113,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -911356,6 +917911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -914140,6 +920703,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916610,6 +923181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -919207,6 +925786,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -921629,6 +928216,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -924137,6 +930732,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -926563,6 +933166,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928931,6 +935542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -931395,6 +938014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -933611,6 +940238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935610,6 +942245,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -939757,6 +946400,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -941921,6 +948572,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944717,6 +951376,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -947512,6 +954179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -950307,6 +956982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -953102,6 +959785,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -955897,6 +962588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -958692,6 +965391,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -961487,6 +968194,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963518,6 +970233,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -965549,6 +972272,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -968184,6 +974915,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -972821,6 +979560,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -973959,6 +980706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -975904,6 +982659,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978063,6 +984826,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -981184,6 +987955,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984243,6 +991022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -988762,6 +995549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992385,6 +999180,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -994922,6 +1001725,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997396,6 +1004207,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1000086,6 +1006905,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002777,6 +1009604,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005487,6 +1012322,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1007962,6 +1014805,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010435,6 +1017286,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1012935,6 +1019794,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1015451,6 +1022318,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017925,6 +1024800,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1020398,6 +1027281,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1022871,6 +1029762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025133,6 +1032032,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1027336,6 +1034243,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1029912,6 +1036827,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032428,6 +1039351,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034902,6 +1041833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1037375,6 +1044314,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1039354,6 +1046301,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041740,6 +1048695,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1044167,6 +1051130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1046553,6 +1053524,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1048939,6 +1055918,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1051366,6 +1058353,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1053752,6 +1060747,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1056138,6 +1063141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058524,6 +1065535,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1060951,6 +1067970,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063378,6 +1070405,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1065764,6 +1072799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1068150,6 +1075193,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1070536,6 +1077587,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1072963,6 +1080022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1076323,6 +1083390,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1078615,6 +1085690,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1081640,6 +1088723,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084763,6 +1091854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1087791,6 +1094890,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1090846,6 +1097953,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094015,6 +1101130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1097150,6 +1104273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1099286,6 +1106417,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102314,6 +1109453,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103719,6 +1110866,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] }, @@ -1106631,6 +1113971,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1108129,6 +1115477,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1110940,6 +1118481,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112456,6 +1120005,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1115267,6 +1123009,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116766,6 +1124516,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1119584,6 +1127527,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1121082,6 +1129033,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1123900,6 +1132044,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1126800,6 +1134952,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129721,6 +1137881,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131329,6 +1139497,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1132581,6 +1140757,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1135480,6 +1143664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1138401,6 +1146593,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1140009,6 +1148209,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1141261,6 +1149469,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144160,6 +1152376,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1145768,6 +1153992,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1148030,6 +1156262,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1149941,6 +1158181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1152840,6 +1161088,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1154448,6 +1162704,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1156710,6 +1164974,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1158621,6 +1166893,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1162159,6 +1170439,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1165819,6 +1174107,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1169250,6 +1177546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1172875,6 +1181179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1176383,6 +1184695,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179861,6 +1188181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183300,6 +1191628,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1186923,6 +1195259,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189415,6 +1197759,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -1192430,6 +1200779,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1195860,6 +1204217,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1199295,6 +1207660,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1201826,6 +1210199,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1204814,6 +1213192,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1208319,6 +1216705,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1211858,6 +1220252,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1215338,6 +1223740,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1218775,6 +1227185,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1222205,6 +1230623,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1225709,6 +1234135,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1227732,6 +1236166,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1229753,6 +1238195,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1231817,6 +1240267,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1234040,6 +1242498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1236265,6 +1244731,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238487,6 +1246961,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1240704,6 +1249186,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1242925,6 +1251415,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245036,6 +1253534,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247151,6 +1255657,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1249232,6 +1257746,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1251312,6 +1259834,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1253527,6 +1262057,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255682,6 +1264220,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257705,6 +1266251,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1259812,6 +1268366,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261987,6 +1270549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1264158,6 +1272728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1266330,6 +1274908,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1268544,6 +1277130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1270716,6 +1279310,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1272795,6 +1281397,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1274874,6 +1283484,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1278936,6 +1287554,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1281061,6 +1289687,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1283206,6 +1291840,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285432,6 +1294074,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1287571,6 +1296221,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1290450,6 +1299108,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1293074,6 +1301740,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295199,6 +1303873,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1300558,6 +1309240,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1302893,6 +1311583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1305040,6 +1313738,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1307195,6 +1315901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309365,6 +1318079,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311645,6 +1320367,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1313795,6 +1322525,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1315826,6 +1324564,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1317861,6 +1326607,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1319909,6 +1328663,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321940,6 +1330702,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1324090,6 +1332860,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1326245,6 +1335023,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1328426,6 +1337212,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1330575,6 +1339369,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1345791,6 +1354593,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1347683,6 +1356493,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1348518,6 +1357333,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1350955,6 +1359775,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1352732,6 +1361560,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -1353574,6 +1362407,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1356013,6 +1364851,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357803,6 +1366649,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1358632,6 +1367483,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1361071,6 +1369927,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1364260,6 +1373124,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1365398,6 +1374270,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1367402,6 +1376282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1370591,6 +1379479,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371729,6 +1380625,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373733,6 +1382637,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1375814,6 +1384726,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1376643,6 +1385560,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1379068,6 +1387990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1380856,6 +1389786,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1381685,6 +1390620,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1384129,6 +1393069,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1387380,6 +1396328,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388518,6 +1397474,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1390522,6 +1399486,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1392311,6 +1401283,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1393140,6 +1402117,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1395567,6 +1404549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1397402,6 +1406392,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1398237,6 +1407232,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1400675,6 +1409675,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1402466,6 +1411474,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1403301,6 +1412314,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1405738,6 +1414756,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1407819,6 +1416845,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1408648,6 +1417679,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1411073,6 +1420109,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1414261,6 +1423305,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415399,6 +1424451,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1417403,6 +1426463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420592,6 +1429660,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1421730,6 +1430806,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1423734,6 +1432818,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1426923,6 +1436015,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428061,6 +1437161,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1430065,6 +1439173,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1432226,6 +1441342,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1433043,6 +1442164,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1435345,6 +1444471,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1437501,6 +1446635,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1438318,6 +1447457,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1440610,6 +1449754,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1442787,6 +1451939,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1443604,6 +1452761,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1445897,6 +1455059,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1447683,6 +1456853,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1448500,6 +1457675,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1450804,6 +1459984,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1455845,6 +1465033,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1457853,6 +1467049,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1458682,6 +1467883,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1461125,6 +1470331,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1462927,6 +1472141,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1463756,6 +1472975,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1466199,6 +1475423,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1468143,6 +1477375,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1468972,6 +1478209,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1471408,6 +1480650,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1473213,6 +1482463,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1474042,6 +1483297,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1476469,6 +1485729,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1478392,6 +1487660,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1479212,6 +1488485,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1481517,6 +1490795,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1483512,6 +1492798,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1484293,6 +1493584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1486558,6 +1495854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1488737,6 +1498041,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1489512,6 +1498821,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1491766,6 +1501080,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1493959,6 +1503281,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1494788,6 +1504115,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1497225,6 +1506557,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1499122,6 +1508462,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1499957,6 +1509302,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1502395,6 +1511745,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1504229,6 +1513587,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1505064,6 +1514427,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1507501,6 +1516869,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1509288,6 +1518664,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1510120,6 +1519501,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1512545,6 +1521931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1514137,6 +1523531,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1516802,6 +1526201,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1519329,6 +1528736,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1521752,6 +1531167,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1524176,6 +1533599,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1526653,6 +1536084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1529083,6 +1538522,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1531509,6 +1540956,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1533932,6 +1543387,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1536358,6 +1545821,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1538336,6 +1547807,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1542305,6 +1551784,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1546274,6 +1555761,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1548253,6 +1557748,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1550232,6 +1559735,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1552219,6 +1561730,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1554256,6 +1563775,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1556229,6 +1565756,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1558214,6 +1567749,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1560193,6 +1569736,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1562199,6 +1571750,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1564179,6 +1573738,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1567480,6 +1577047,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1570781,6 +1580356,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1577180,6 +1586763,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1579160,6 +1588751,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1581312,6 +1590911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1583474,6 +1593081,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1585625,6 +1595240,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1587776,6 +1597399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1590767,6 +1600398,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1593590,6 +1603229,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1596671,6 +1606318,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1599670,6 +1609325,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1602493,6 +1612156,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1605316,6 +1614987,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1608307,6 +1617986,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1611130,6 +1620817,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1612954,6 +1622649,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1615148,6 +1624851,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1617351,6 +1627062,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1619554,6 +1629273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1620767,6 +1630494,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } } @@ -1621583,6 +1631322,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -1622351,6 +1632096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1623651,6 +1633404,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1624600,6 +1634361,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1625015,6 +1634784,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -1626466,6 +1636247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1628767,6 +1638556,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1631085,6 +1640882,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1633391,6 +1643196,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1635755,6 +1645568,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1638116,6 +1647937,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1640418,6 +1650247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1642404,6 +1652241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1644886,6 +1654731,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1647818,6 +1657671,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1649426,6 +1659287,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1651688,6 +1661557,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1653599,6 +1663476,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1656500,6 +1666385,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1658108,6 +1668001,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1660370,6 +1670271,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1662281,6 +1672190,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1665182,6 +1675099,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1666790,6 +1676715,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1669052,6 +1678985,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1670963,6 +1680904,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1673864,6 +1683813,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1675472,6 +1685429,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1677734,6 +1687699,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1679645,6 +1689618,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1681619,6 +1691600,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1690410,6 +1700399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1692391,6 +1702388,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1694372,6 +1704377,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1697407,6 +1707420,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1700480,6 +1710501,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1703376,6 +1713405,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1706273,6 +1716310,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1709556,6 +1719601,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1712821,6 +1722874,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 4320a1762..87912106d 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1079,7 +1079,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &727 + - &728 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &737 + schema: &738 title: Scim Error description: Scim Error type: object @@ -3419,6 +3419,12 @@ paths: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -9262,7 +9268,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &738 + '401': &739 description: Authorization failure '404': *6 x-github: @@ -21501,7 +21507,7 @@ paths: - object rules: type: array - items: &693 + items: &694 title: Repository Rule type: object description: A repository rule. @@ -21510,7 +21516,7 @@ paths: - *165 - *166 - *167 - - &691 + - &692 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22070,14 +22076,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &705 + state: &706 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &706 + resolution: &707 type: - string - 'null' @@ -22184,14 +22190,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &707 + - &708 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &709 + - &710 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22248,7 +22254,7 @@ paths: - blob_url - commit_sha - commit_url - - &710 + - &711 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -22309,7 +22315,7 @@ paths: - page_url - commit_sha - commit_url - - &711 + - &712 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22324,7 +22330,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &712 + - &713 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22339,7 +22345,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &713 + - &714 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22354,7 +22360,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &714 + - &715 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22369,7 +22375,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &715 + - &716 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22384,7 +22390,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &716 + - &717 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22399,7 +22405,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &717 + - &718 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -22414,7 +22420,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &718 + - &719 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -22429,7 +22435,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &719 + - &720 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -22444,7 +22450,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &720 + - &721 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -22459,7 +22465,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &721 + - &722 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -25859,7 +25865,7 @@ paths: properties: action: type: string - discussion: &844 + discussion: &845 title: Discussion description: A Discussion in a repository. type: object @@ -26645,7 +26651,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &765 + sub_issues_summary: &766 title: Sub-issues Summary type: object properties: @@ -26666,7 +26672,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &766 + issue_dependencies_summary: &767 title: Issue Dependencies Summary type: object properties: @@ -26685,7 +26691,7 @@ paths: - total_blocking issue_field_values: type: array - items: &767 + items: &768 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26857,6 +26863,24 @@ paths: pin: anyOf: - type: 'null' + - &651 + title: Pinned Issue Comment + description: Context around who pinned an issue + comment and when it was pinned. + type: object + properties: + pinned_at: + type: string + format: date-time + examples: + - '2011-04-14T16:00:49Z' + pinned_by: + anyOf: + - type: 'null' + - *4 + required: + - pinned_at + - pinned_by required: - id - node_id @@ -27020,6 +27044,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean forks_count: type: integer mirror_url: @@ -27524,7 +27550,7 @@ paths: type: string release: allOf: - - &684 + - &685 title: Release description: A release. type: object @@ -27606,7 +27632,7 @@ paths: author: *4 assets: type: array - items: &685 + items: &686 title: Release Asset description: Data related to a release. type: object @@ -28197,7 +28223,7 @@ paths: url: type: string format: uri - user: &773 + user: &774 title: Public User description: Public User type: object @@ -31647,7 +31673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &658 + - &659 name: all description: If `true`, show notifications marked as read. in: query @@ -31655,7 +31681,7 @@ paths: schema: type: boolean default: false - - &659 + - &660 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -31665,7 +31691,7 @@ paths: type: boolean default: false - *219 - - &660 + - &661 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -31950,6 +31976,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -32115,6 +32143,14 @@ paths: enum: - enabled - disabled + secret_scanning_delegated_alert_dismissal: + type: object + properties: + status: + type: string + enum: + - enabled + - disabled custom_properties: type: object description: The custom properties that were defined for @@ -32211,7 +32247,7 @@ paths: - url - subscription_url examples: - default: &661 + default: &662 value: - id: '1' repository: @@ -33340,7 +33376,7 @@ paths: type: array items: *150 examples: - default: &667 + default: &668 value: - property_name: environment value: production @@ -33390,7 +33426,7 @@ paths: required: - properties examples: - default: &668 + default: &669 value: properties: - property_name: environment @@ -36413,7 +36449,7 @@ paths: type: array items: *273 examples: - default: &776 + default: &777 value: total_count: 1 repositories: @@ -39157,12 +39193,12 @@ paths: required: - subject_digests examples: - default: &805 + default: &806 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &806 + withPredicateType: &807 value: subject_digests: - sha256:abc123 @@ -39221,7 +39257,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &807 + default: &808 value: attestations_subject_digests: - sha256:abc: @@ -49717,7 +49753,7 @@ paths: parameters: - *85 - *370 - - &788 + - &789 name: repo_name description: repo_name parameter in: path @@ -49867,6 +49903,8 @@ paths: status: disabled secret_scanning_validity_checks: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled headers: Link: *45 '404': *6 @@ -51063,7 +51101,7 @@ paths: - nuget - container - *85 - - &789 + - &790 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -51104,7 +51142,7 @@ paths: default: *375 '403': *27 '401': *23 - '400': &791 + '400': &792 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52930,7 +52968,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &877 + - &878 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -53449,7 +53487,7 @@ paths: - review_comment - self author_association: *214 - auto_merge: &670 + auto_merge: &671 title: Auto merge description: The status of auto merging a pull request. type: @@ -53831,7 +53869,7 @@ paths: - updated_at - project_url examples: - default: &810 + default: &811 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54008,7 +54046,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &811 + items: &812 type: object properties: name: @@ -54045,7 +54083,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &812 + iteration_configuration: &813 type: object description: The configuration for iteration fields. properties: @@ -54094,7 +54132,7 @@ paths: value: name: Due date data_type: date - single_select_field: &813 + single_select_field: &814 summary: Create a single select field value: name: Priority @@ -54121,7 +54159,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &814 + iteration_field: &815 summary: Create an iteration field value: name: Sprint @@ -54147,7 +54185,7 @@ paths: application/json: schema: *395 examples: - text_field: &815 + text_field: &816 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -54156,7 +54194,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &816 + number_field: &817 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -54165,7 +54203,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &817 + date_field: &818 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -54174,7 +54212,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &818 + single_select_field: &819 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54208,7 +54246,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &819 + iteration_field: &820 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -54254,7 +54292,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *392 - - &820 + - &821 name: field_id description: The unique identifier of the field. in: path @@ -54269,7 +54307,7 @@ paths: application/json: schema: *395 examples: - default: &821 + default: &822 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55479,7 +55517,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &802 + schema: &803 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -55662,7 +55700,7 @@ paths: parameters: - *392 - *85 - - &822 + - &823 name: view_number description: The number that identifies the project view. in: path @@ -56729,6 +56767,10 @@ paths: type: boolean examples: - true + has_pull_requests: + type: boolean + examples: + - true archived: type: boolean disabled: @@ -57564,7 +57606,7 @@ paths: - *85 - *17 - *19 - - &692 + - &693 name: targets description: | A comma-separated list of rule targets to filter by. @@ -57780,7 +57822,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *85 - - &694 + - &695 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -57792,14 +57834,14 @@ paths: x-multi-segment: true - *299 - *103 - - &695 + - &696 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &696 + - &697 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -57819,7 +57861,7 @@ paths: description: Response content: application/json: - schema: &697 + schema: &698 title: Rule Suites description: Response type: array @@ -57875,7 +57917,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &698 + default: &699 value: - id: 21 actor_id: 12 @@ -57919,7 +57961,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *85 - - &699 + - &700 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -57935,7 +57977,7 @@ paths: description: Response content: application/json: - schema: &700 + schema: &701 title: Rule Suite description: Response type: object @@ -58042,7 +58084,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &701 + default: &702 value: id: 21 actor_id: 12 @@ -58374,7 +58416,7 @@ paths: - *108 - *19 - *17 - - &703 + - &704 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -58384,7 +58426,7 @@ paths: required: false schema: type: string - - &704 + - &705 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -58597,7 +58639,7 @@ paths: application/json: schema: type: array - items: &725 + items: &726 description: A repository security advisory. type: object properties: @@ -58916,7 +58958,7 @@ paths: - private_fork additionalProperties: false examples: - default: &726 + default: &727 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -61034,7 +61076,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &769 + response-if-user-is-a-team-maintainer: &770 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -61099,7 +61141,7 @@ paths: application/json: schema: *439 examples: - response-if-users-membership-with-team-is-now-pending: &770 + response-if-users-membership-with-team-is-now-pending: &771 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -61213,7 +61255,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &771 + schema: &772 title: Team Repository description: A team's access to a repository. type: object @@ -62051,7 +62093,7 @@ paths: type: array items: *302 examples: - response-if-child-teams-exist: &772 + response-if-child-teams-exist: &773 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62851,6 +62893,8 @@ paths: status: disabled secret_scanning_validity_checks: status: disabled + secret_scanning_delegated_alert_dismissal: + status: disabled '403': *27 '404': *6 '301': *446 @@ -73481,7 +73525,7 @@ paths: check. type: array items: *217 - deployment: &833 + deployment: &834 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -78738,7 +78782,7 @@ paths: type: array items: *544 examples: - default: &779 + default: &780 value: total_count: 2 machines: @@ -80403,7 +80447,7 @@ paths: type: array items: *554 examples: - default: &677 + default: &678 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80694,7 +80738,7 @@ paths: type: array items: *558 examples: - default: &669 + default: &670 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81252,7 +81296,7 @@ paths: application/json: schema: *554 examples: - default: &655 + default: &656 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81874,7 +81918,7 @@ paths: application/json: schema: type: array - items: &730 + items: &731 title: Status description: The status of a commit. type: object @@ -82836,7 +82880,7 @@ paths: - size - type - url - - &682 + - &683 title: Content File description: Content File type: object @@ -83473,7 +83517,7 @@ paths: items: type: object properties: - placeholder_id: &722 + placeholder_id: &723 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -90007,7 +90051,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &869 + last_response: &870 title: Hook Response type: object properties: @@ -91075,7 +91119,7 @@ paths: parameters: - *440 - *441 - - &800 + - &801 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -91509,7 +91553,7 @@ paths: type: array items: *626 examples: - default: &793 + default: &794 value: - id: 1 repository: @@ -92564,6 +92608,72 @@ paths: enabledForGitHubApps: true category: issues subcategory: comments + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": + put: + summary: Pin an issue comment + description: |- + You can use the REST API to pin comments on issues. + + This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + + - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. + tags: + - issues + operationId: issues/pin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment + parameters: + - *440 + - *441 + - *228 + responses: + '200': + description: Response + content: + application/json: + schema: *628 + examples: + default: *629 + '401': *23 + '403': *27 + '404': *6 + '410': *627 + '422': *15 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments + delete: + summary: Unpin an issue comment + description: You can use the REST API to unpin comments on issues. + tags: + - issues + operationId: issues/unpin-comment + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment + parameters: + - *440 + - *441 + - *228 + responses: + '204': + description: Response + '401': *23 + '403': *27 + '404': *6 + '410': *627 + '503': *190 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: issues + subcategory: comments "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": get: summary: List reactions for an issue comment @@ -95608,6 +95718,7 @@ paths: pin: anyOf: - type: 'null' + - *651 required: - event - actor @@ -95883,7 +95994,7 @@ paths: type: string comments: type: array - items: &671 + items: &672 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96427,7 +96538,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96532,9 +96643,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: &652 + default: &653 value: id: 1 key: ssh-rsa AAA... @@ -96570,7 +96681,7 @@ paths: parameters: - *440 - *441 - - &653 + - &654 name: key_id description: The unique identifier of the key. in: path @@ -96582,9 +96693,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: *652 + default: *653 '404': *6 x-github: githubCloudOnly: false @@ -96604,7 +96715,7 @@ paths: parameters: - *440 - *441 - - *653 + - *654 responses: '204': description: Response @@ -96697,7 +96808,7 @@ paths: application/json: schema: *212 examples: - default: &654 + default: &655 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96743,7 +96854,7 @@ paths: application/json: schema: *212 examples: - default: *654 + default: *655 '404': *6 x-github: githubCloudOnly: false @@ -97198,7 +97309,7 @@ paths: application/json: schema: *554 examples: - default: *655 + default: *656 '204': description: Response when already merged '404': @@ -97364,7 +97475,7 @@ paths: application/json: schema: *393 examples: - default: &656 + default: &657 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97425,7 +97536,7 @@ paths: parameters: - *440 - *441 - - &657 + - &658 name: milestone_number description: The number that identifies the milestone. in: path @@ -97439,7 +97550,7 @@ paths: application/json: schema: *393 examples: - default: *656 + default: *657 '404': *6 x-github: githubCloudOnly: false @@ -97458,7 +97569,7 @@ paths: parameters: - *440 - *441 - - *657 + - *658 requestBody: required: false content: @@ -97498,7 +97609,7 @@ paths: application/json: schema: *393 examples: - default: *656 + default: *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97516,7 +97627,7 @@ paths: parameters: - *440 - *441 - - *657 + - *658 responses: '204': description: Response @@ -97539,7 +97650,7 @@ paths: parameters: - *440 - *441 - - *657 + - *658 - *17 - *19 responses: @@ -97572,10 +97683,10 @@ paths: parameters: - *440 - *441 - - *658 - *659 - - *219 - *660 + - *219 + - *661 - *17 - *19 responses: @@ -97587,7 +97698,7 @@ paths: type: array items: *239 examples: - default: *661 + default: *662 headers: Link: *45 x-github: @@ -97677,7 +97788,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97821,7 +97932,7 @@ paths: - custom_404 - public examples: - default: &663 + default: &664 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97918,9 +98029,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '422': *15 '409': *117 x-github: @@ -98090,7 +98201,7 @@ paths: application/json: schema: type: array - items: &664 + items: &665 title: Page Build description: Page Build type: object @@ -98237,9 +98348,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: &665 + default: &666 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98299,9 +98410,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *665 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98432,7 +98543,7 @@ paths: parameters: - *440 - *441 - - &666 + - &667 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98492,7 +98603,7 @@ paths: parameters: - *440 - *441 - - *666 + - *667 responses: '204': *149 '404': *6 @@ -98909,7 +99020,7 @@ paths: type: array items: *150 examples: - default: *667 + default: *668 '403': *27 '404': *6 x-github: @@ -98948,7 +99059,7 @@ paths: required: - properties examples: - default: *668 + default: *669 responses: '204': description: No Content when custom property values are successfully created @@ -99049,7 +99160,7 @@ paths: type: array items: *558 examples: - default: *669 + default: *670 headers: Link: *45 '304': *35 @@ -99149,7 +99260,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &674 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99389,7 +99500,7 @@ paths: - review_comment - self author_association: *214 - auto_merge: *670 + auto_merge: *671 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99491,7 +99602,7 @@ paths: - merged_by - review_comments examples: - default: &674 + default: &675 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100048,9 +100159,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: &676 + default: &677 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100135,9 +100246,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100236,9 +100347,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100441,7 +100552,7 @@ paths: parameters: - *440 - *441 - - &675 + - &676 name: pull_number description: The number that identifies the pull request. in: path @@ -100454,9 +100565,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *673 + schema: *674 examples: - default: *674 + default: *675 '304': *35 '404': *6 '406': @@ -100493,7 +100604,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: false content: @@ -100535,9 +100646,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: - default: *674 + default: *675 '422': *15 '403': *27 x-github: @@ -100561,7 +100672,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: true content: @@ -100664,7 +100775,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 - *236 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100685,9 +100796,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *676 + default: *677 headers: Link: *45 x-github: @@ -100722,7 +100833,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: true content: @@ -100828,7 +100939,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: example-for-a-multi-line-comment: value: @@ -100918,7 +101029,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 - *228 requestBody: required: true @@ -100941,7 +101052,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: default: value: @@ -101029,7 +101140,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 - *17 - *19 responses: @@ -101041,7 +101152,7 @@ paths: type: array items: *554 examples: - default: *677 + default: *678 headers: Link: *45 x-github: @@ -101073,7 +101184,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 - *17 - *19 responses: @@ -101123,7 +101234,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 responses: '204': description: Response if pull request has been merged @@ -101148,7 +101259,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: false content: @@ -101262,7 +101373,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 responses: '200': description: Response @@ -101339,7 +101450,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: false content: @@ -101914,7 +102025,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: true content: @@ -102455,7 +102566,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 - *17 - *19 responses: @@ -102465,7 +102576,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102623,7 +102734,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: false content: @@ -102713,9 +102824,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: &680 + default: &681 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102780,8 +102891,8 @@ paths: parameters: - *440 - *441 - - *675 - - &679 + - *676 + - &680 name: review_id description: The unique identifier of the review. in: path @@ -102793,9 +102904,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: &681 + default: &682 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102856,8 +102967,8 @@ paths: parameters: - *440 - *441 - - *675 - - *679 + - *676 + - *680 requestBody: required: true content: @@ -102880,7 +102991,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -102944,16 +103055,16 @@ paths: parameters: - *440 - *441 - - *675 - - *679 + - *676 + - *680 responses: '200': description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: *680 + default: *681 '422': *7 '404': *6 x-github: @@ -102982,8 +103093,8 @@ paths: parameters: - *440 - *441 - - *675 - - *679 + - *676 + - *680 - *17 - *19 responses: @@ -103243,8 +103354,8 @@ paths: parameters: - *440 - *441 - - *675 - - *679 + - *676 + - *680 requestBody: required: true content: @@ -103273,7 +103384,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -103338,8 +103449,8 @@ paths: parameters: - *440 - *441 - - *675 - - *679 + - *676 + - *680 requestBody: required: true content: @@ -103374,9 +103485,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: *681 + default: *682 '404': *6 '422': *7 '403': *27 @@ -103400,7 +103511,7 @@ paths: parameters: - *440 - *441 - - *675 + - *676 requestBody: required: false content: @@ -103478,9 +103589,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: - default: &683 + default: &684 value: type: file encoding: base64 @@ -103543,9 +103654,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 '404': *6 '422': *15 x-github: @@ -103578,7 +103689,7 @@ paths: application/json: schema: type: array - items: *684 + items: *685 examples: default: value: @@ -103749,9 +103860,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: &688 + default: &689 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103858,7 +103969,7 @@ paths: parameters: - *440 - *441 - - &686 + - &687 name: asset_id description: The unique identifier of the asset. in: path @@ -103870,9 +103981,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: &687 + default: &688 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -103925,7 +104036,7 @@ paths: parameters: - *440 - *441 - - *686 + - *687 requestBody: required: false content: @@ -103954,9 +104065,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *687 + default: *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103974,7 +104085,7 @@ paths: parameters: - *440 - *441 - - *686 + - *687 responses: '204': description: Response @@ -104092,9 +104203,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *688 + default: *689 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104125,9 +104236,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *688 + default: *689 '404': *6 x-github: githubCloudOnly: false @@ -104151,7 +104262,7 @@ paths: parameters: - *440 - *441 - - &689 + - &690 name: release_id description: The unique identifier of the release. in: path @@ -104165,9 +104276,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *684 + schema: *685 examples: - default: *688 + default: *689 '401': description: Unauthorized x-github: @@ -104187,7 +104298,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 requestBody: required: false content: @@ -104251,9 +104362,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *688 + default: *689 '404': description: Not Found if the discussion category name is invalid content: @@ -104276,7 +104387,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 responses: '204': description: Response @@ -104298,7 +104409,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 - *17 - *19 responses: @@ -104308,7 +104419,7 @@ paths: application/json: schema: type: array - items: *685 + items: *686 examples: default: value: @@ -104392,7 +104503,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 - name: name in: query required: true @@ -104418,7 +104529,7 @@ paths: description: Response for successful upload content: application/json: - schema: *685 + schema: *686 examples: response-for-successful-upload: value: @@ -104475,7 +104586,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -104524,7 +104635,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 requestBody: required: true content: @@ -104587,7 +104698,7 @@ paths: parameters: - *440 - *441 - - *689 + - *690 - *631 responses: '204': @@ -104631,7 +104742,7 @@ paths: oneOf: - allOf: - *164 - - &690 + - &691 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104652,67 +104763,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *165 - - *690 + - *691 - allOf: - *166 - - *690 + - *691 - allOf: - *167 - - *690 + - *691 - allOf: + - *692 - *691 - - *690 - allOf: - *168 - - *690 + - *691 - allOf: - *169 - - *690 + - *691 - allOf: - *170 - - *690 + - *691 - allOf: - *171 - - *690 + - *691 - allOf: - *172 - - *690 + - *691 - allOf: - *173 - - *690 + - *691 - allOf: - *174 - - *690 + - *691 - allOf: - *175 - - *690 + - *691 - allOf: - *176 - - *690 + - *691 - allOf: - *177 - - *690 + - *691 - allOf: - *178 - - *690 + - *691 - allOf: - *179 - - *690 + - *691 - allOf: - *180 - - *690 + - *691 - allOf: - *181 - - *690 + - *691 - allOf: - *182 - - *690 + - *691 - allOf: - *183 - - *690 + - *691 - allOf: - *184 - - *690 + - *691 examples: default: value: @@ -104763,7 +104874,7 @@ paths: schema: type: boolean default: true - - *692 + - *693 responses: '200': description: Response @@ -104848,7 +104959,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *693 + items: *694 required: - name - enforcement @@ -104881,7 +104992,7 @@ paths: application/json: schema: *185 examples: - default: &702 + default: &703 value: id: 42 name: super cool ruleset @@ -104930,10 +105041,10 @@ paths: parameters: - *440 - *441 - - *694 - - *103 - *695 + - *103 - *696 + - *697 - *17 - *19 responses: @@ -104941,9 +105052,9 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: - default: *698 + default: *699 '404': *6 '500': *38 x-github: @@ -104966,15 +105077,15 @@ paths: parameters: - *440 - *441 - - *699 + - *700 responses: '200': description: Response content: application/json: - schema: *700 + schema: *701 examples: - default: *701 + default: *702 '404': *6 '500': *38 x-github: @@ -105025,7 +105136,7 @@ paths: application/json: schema: *185 examples: - default: *702 + default: *703 '404': *6 '500': *38 put: @@ -105078,7 +105189,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *693 + items: *694 examples: default: value: @@ -105108,7 +105219,7 @@ paths: application/json: schema: *185 examples: - default: *702 + default: *703 '404': *6 '500': *38 delete: @@ -105272,8 +105383,8 @@ paths: - *108 - *19 - *17 - - *703 - *704 + - *705 - *417 - *418 - *419 @@ -105285,7 +105396,7 @@ paths: application/json: schema: type: array - items: &708 + items: &709 type: object properties: number: *124 @@ -105301,8 +105412,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *705 - resolution: *706 + state: *706 + resolution: *707 resolved_at: type: - string @@ -105396,7 +105507,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *707 + - *708 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105550,7 +105661,7 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: default: value: @@ -105614,8 +105725,8 @@ paths: schema: type: object properties: - state: *705 - resolution: *706 + state: *706 + resolution: *707 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105651,7 +105762,7 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: default: value: @@ -105759,7 +105870,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &889 + items: &890 type: object properties: type: @@ -105786,7 +105897,6 @@ paths: - commit details: oneOf: - - *709 - *710 - *711 - *712 @@ -105799,6 +105909,7 @@ paths: - *719 - *720 - *721 + - *722 examples: default: value: @@ -105893,14 +106004,14 @@ paths: schema: type: object properties: - reason: &723 + reason: &724 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *722 + placeholder_id: *723 required: - reason - placeholder_id @@ -105917,7 +106028,7 @@ paths: schema: type: object properties: - reason: *723 + reason: *724 expire_at: type: - string @@ -105980,7 +106091,7 @@ paths: properties: incremental_scans: type: array - items: &724 + items: &725 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106008,15 +106119,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *724 + items: *725 backfill_scans: type: array - items: *724 + items: *725 custom_pattern_backfill_scans: type: array items: allOf: - - *724 + - *725 - type: object properties: pattern_name: @@ -106131,9 +106242,9 @@ paths: application/json: schema: type: array - items: *725 + items: *726 examples: - default: *726 + default: *727 '400': *14 '404': *6 x-github: @@ -106327,9 +106438,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: &728 + default: &729 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106676,7 +106787,7 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: default: value: @@ -106825,15 +106936,15 @@ paths: parameters: - *440 - *441 - - *727 + - *728 responses: '200': description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: *728 + default: *729 '403': *27 '404': *6 x-github: @@ -106859,7 +106970,7 @@ paths: parameters: - *440 - *441 - - *727 + - *728 requestBody: required: true content: @@ -107030,10 +107141,10 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: *728 - add_credit: *728 + default: *729 + add_credit: *729 '403': *27 '404': *6 '422': @@ -107073,7 +107184,7 @@ paths: parameters: - *440 - *441 - - *727 + - *728 responses: '202': *37 '400': *14 @@ -107102,7 +107213,7 @@ paths: parameters: - *440 - *441 - - *727 + - *728 responses: '202': description: Response @@ -107243,7 +107354,7 @@ paths: application/json: schema: type: array - items: &729 + items: &730 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107616,7 +107727,7 @@ paths: application/json: schema: type: array - items: *729 + items: *730 examples: default: value: @@ -107706,7 +107817,7 @@ paths: description: Response content: application/json: - schema: *730 + schema: *731 examples: default: value: @@ -107800,7 +107911,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &731 + schema: &732 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107900,7 +108011,7 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: default: value: @@ -108040,7 +108151,7 @@ paths: application/json: schema: type: array - items: &732 + items: &733 title: Tag protection description: Tag protection type: object @@ -108121,7 +108232,7 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: default: value: @@ -108269,7 +108380,7 @@ paths: description: Response content: application/json: - schema: &733 + schema: &734 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108281,7 +108392,7 @@ paths: required: - names examples: - default: &734 + default: &735 value: names: - octocat @@ -108336,9 +108447,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *734 + default: *735 '404': *6 '422': *7 x-github: @@ -108361,7 +108472,7 @@ paths: parameters: - *440 - *441 - - &735 + - &736 name: per description: The time frame to display results for. in: query @@ -108392,7 +108503,7 @@ paths: - 128 clones: type: array - items: &736 + items: &737 title: Traffic type: object properties: @@ -108640,7 +108751,7 @@ paths: parameters: - *440 - *441 - - *735 + - *736 responses: '200': description: Response @@ -108661,7 +108772,7 @@ paths: - 3782 views: type: array - items: *736 + items: *737 required: - uniques - count @@ -109333,7 +109444,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &744 + - &745 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109343,7 +109454,7 @@ paths: type: string examples: - members - - &749 + - &750 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109355,7 +109466,7 @@ paths: format: int32 examples: - 1 - - &750 + - &751 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109399,7 +109510,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &739 + items: &740 allOf: - type: object required: @@ -109481,7 +109592,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &751 + meta: &752 type: object description: The metadata associated with the creation/updates to the user. @@ -109546,30 +109657,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &740 + '400': &741 description: Bad request content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 - '401': *738 - '403': &741 + schema: *738 + '401': *739 + '403': &742 description: Permission denied - '429': &742 + '429': &743 description: Too many requests content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 - '500': &743 + schema: *738 + '500': &744 description: Internal server error content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 + schema: *738 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109593,7 +109704,7 @@ paths: required: true content: application/json: - schema: &747 + schema: &748 type: object required: - schemas @@ -109657,9 +109768,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *739 + schema: *740 examples: - group: &745 + group: &746 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109678,13 +109789,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *740 - '401': *738 - '403': *741 - '409': &748 + '400': *741 + '401': *739 + '403': *742 + '409': &749 description: Duplicate record detected - '429': *742 - '500': *743 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109701,7 +109812,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &746 + - &747 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109710,22 +109821,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *744 + - *745 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *739 + schema: *740 examples: - default: *745 - '400': *740 - '401': *738 - '403': *741 + default: *746 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '429': *742 - '500': *743 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109744,13 +109855,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *746 + - *747 - *39 requestBody: required: true content: application/json: - schema: *747 + schema: *748 examples: group: summary: Group @@ -109776,17 +109887,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *739 + schema: *740 examples: - group: *745 - groupWithMembers: *745 - '400': *740 - '401': *738 - '403': *741 + group: *746 + groupWithMembers: *746 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '409': *748 - '429': *742 - '500': *743 + '409': *749 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109810,13 +109921,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *746 + - *747 - *39 requestBody: required: true content: application/json: - schema: &758 + schema: &759 type: object required: - Operations @@ -109876,17 +109987,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *739 + schema: *740 examples: - updateGroup: *745 - addMembers: *745 - '400': *740 - '401': *738 - '403': *741 + updateGroup: *746 + addMembers: *746 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '409': *748 - '429': *742 - '500': *743 + '409': *749 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109902,17 +110013,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *746 + - *747 - *39 responses: '204': description: Group was deleted, no content - '400': *740 - '401': *738 - '403': *741 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '429': *742 - '500': *743 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109946,8 +110057,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *749 - *750 + - *751 - *39 responses: '200': @@ -109981,7 +110092,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &753 + items: &754 allOf: - type: object required: @@ -110073,7 +110184,7 @@ paths: address. examples: - true - roles: &752 + roles: &753 type: array description: The roles assigned to the user. items: @@ -110132,7 +110243,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *751 + meta: *752 startIndex: type: integer description: A starting index for the returned page @@ -110171,11 +110282,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *740 - '401': *738 - '403': *741 - '429': *742 - '500': *743 + '400': *741 + '401': *739 + '403': *742 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110199,7 +110310,7 @@ paths: required: true content: application/json: - schema: &756 + schema: &757 type: object required: - schemas @@ -110292,9 +110403,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *752 + roles: *753 examples: - user: &757 + user: &758 summary: User value: schemas: @@ -110341,9 +110452,9 @@ paths: description: User has been created content: application/scim+json: - schema: *753 + schema: *754 examples: - user: &754 + user: &755 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110369,13 +110480,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *754 - '400': *740 - '401': *738 - '403': *741 - '409': *748 - '429': *742 - '500': *743 + enterpriseOwner: *755 + '400': *741 + '401': *739 + '403': *742 + '409': *749 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110392,7 +110503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &755 + - &756 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110405,15 +110516,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *753 + schema: *754 examples: - default: *754 - '400': *740 - '401': *738 - '403': *741 + default: *755 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '429': *742 - '500': *743 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110435,30 +110546,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *755 + - *756 - *39 requestBody: required: true content: application/json: - schema: *756 + schema: *757 examples: - user: *757 + user: *758 responses: '200': description: User was updated content: application/scim+json: - schema: *753 + schema: *754 examples: - user: *754 - '400': *740 - '401': *738 - '403': *741 + user: *755 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '409': *748 - '429': *742 - '500': *743 + '409': *749 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110493,13 +110604,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *755 + - *756 - *39 requestBody: required: true content: application/json: - schema: *758 + schema: *759 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110539,18 +110650,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *753 + schema: *754 examples: - userMultiValuedProperties: *754 - userSingleValuedProperties: *754 - disableUser: *754 - '400': *740 - '401': *738 - '403': *741 + userMultiValuedProperties: *755 + userSingleValuedProperties: *755 + disableUser: *755 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '409': *748 - '429': *742 - '500': *743 + '409': *749 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110570,17 +110681,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *755 + - *756 - *39 responses: '204': description: User was deleted, no content - '400': *740 - '401': *738 - '403': *741 + '400': *741 + '401': *739 + '403': *742 '404': *6 - '429': *742 - '500': *743 + '429': *743 + '500': *744 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110671,7 +110782,7 @@ paths: - 1 Resources: type: array - items: &759 + items: &760 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -110918,22 +111029,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &760 + '404': &761 description: Resource not found content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 - '403': &761 + schema: *738 + '403': &762 description: Forbidden content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 - '400': *740 - '429': *742 + schema: *738 + '400': *741 + '429': *743 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -110959,9 +111070,9 @@ paths: description: Response content: application/scim+json: - schema: *759 + schema: *760 examples: - default: &762 + default: &763 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110984,17 +111095,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *760 - '403': *761 - '500': *743 + '404': *761 + '403': *762 + '500': *744 '409': description: Conflict content: application/json: - schema: *737 + schema: *738 application/scim+json: - schema: *737 - '400': *740 + schema: *738 + '400': *741 requestBody: required: true content: @@ -111094,17 +111205,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *85 - - *755 + - *756 responses: '200': description: Response content: application/scim+json: - schema: *759 + schema: *760 examples: - default: *762 - '404': *760 - '403': *761 + default: *763 + '404': *761 + '403': *762 '304': *35 x-github: githubCloudOnly: true @@ -111128,18 +111239,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *85 - - *755 + - *756 responses: '200': description: Response content: application/scim+json: - schema: *759 + schema: *760 examples: - default: *762 + default: *763 '304': *35 - '404': *760 - '403': *761 + '404': *761 + '403': *762 requestBody: required: true content: @@ -111254,19 +111365,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *85 - - *755 + - *756 responses: '200': description: Response content: application/scim+json: - schema: *759 + schema: *760 examples: - default: *762 + default: *763 '304': *35 - '404': *760 - '403': *761 - '400': *740 + '404': *761 + '403': *762 + '400': *741 '429': description: Response content: @@ -111362,12 +111473,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *85 - - *755 + - *756 responses: '204': description: Response - '404': *760 - '403': *761 + '404': *761 + '403': *762 '304': *35 x-github: githubCloudOnly: true @@ -111501,7 +111612,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &763 + text_matches: &764 title: Search Result Text Matches type: array items: @@ -111665,7 +111776,7 @@ paths: enum: - author-date - committer-date - - &764 + - &765 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -111785,7 +111896,7 @@ paths: type: number node_id: type: string - text_matches: *763 + text_matches: *764 required: - sha - node_id @@ -111978,7 +112089,7 @@ paths: - interactions - created - updated - - *764 + - *765 - *17 - *19 - name: advanced_search @@ -112075,11 +112186,11 @@ paths: type: - string - 'null' - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: type: string state_reason: @@ -112107,7 +112218,7 @@ paths: - string - 'null' format: date-time - text_matches: *763 + text_matches: *764 pull_request: type: object properties: @@ -112330,7 +112441,7 @@ paths: enum: - created - updated - - *764 + - *765 - *17 - *19 responses: @@ -112375,7 +112486,7 @@ paths: - 'null' score: type: number - text_matches: *763 + text_matches: *764 required: - id - node_id @@ -112461,7 +112572,7 @@ paths: - forks - help-wanted-issues - updated - - *764 + - *765 - *17 - *19 responses: @@ -112668,6 +112779,8 @@ paths: type: boolean has_discussions: type: boolean + has_pull_requests: + type: boolean archived: type: boolean disabled: @@ -112698,7 +112811,7 @@ paths: - admin - pull - push - text_matches: *763 + text_matches: *764 temp_clone_token: type: string allow_merge_commit: @@ -113007,7 +113120,7 @@ paths: - string - 'null' format: uri - text_matches: *763 + text_matches: *764 related: type: - array @@ -113202,7 +113315,7 @@ paths: - followers - repositories - joined - - *764 + - *765 - *17 - *19 responses: @@ -113312,7 +113425,7 @@ paths: type: - boolean - 'null' - text_matches: *763 + text_matches: *764 blog: type: - string @@ -113394,7 +113507,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &768 + - &769 name: team_id description: The unique identifier of the team. in: path @@ -113435,7 +113548,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *768 + - *769 requestBody: required: true content: @@ -113536,7 +113649,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *768 + - *769 responses: '204': description: Response @@ -113565,7 +113678,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *768 + - *769 - *17 - *19 responses: @@ -113603,7 +113716,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *768 + - *769 - name: role description: Filters members returned by their role in the team. in: query @@ -113654,7 +113767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *768 + - *769 - *137 responses: '204': @@ -113691,7 +113804,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *768 + - *769 - *137 responses: '204': @@ -113731,7 +113844,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *768 + - *769 - *137 responses: '204': @@ -113768,7 +113881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *768 + - *769 - *137 responses: '200': @@ -113777,7 +113890,7 @@ paths: application/json: schema: *439 examples: - response-if-user-is-a-team-maintainer: *769 + response-if-user-is-a-team-maintainer: *770 '404': *6 x-github: githubCloudOnly: false @@ -113810,7 +113923,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *768 + - *769 - *137 requestBody: required: false @@ -113838,7 +113951,7 @@ paths: application/json: schema: *439 examples: - response-if-users-membership-with-team-is-now-pending: *770 + response-if-users-membership-with-team-is-now-pending: *771 '403': description: Forbidden if team synchronization is set up '422': @@ -113872,7 +113985,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *768 + - *769 - *137 responses: '204': @@ -113900,7 +114013,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *768 + - *769 - *17 - *19 responses: @@ -113942,7 +114055,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *768 + - *769 - *440 - *441 responses: @@ -113950,7 +114063,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *771 + schema: *772 examples: alternative-response-with-extra-repository-information: value: @@ -114101,7 +114214,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *768 + - *769 - *440 - *441 requestBody: @@ -114153,7 +114266,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *768 + - *769 - *440 - *441 responses: @@ -114184,7 +114297,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *768 + - *769 responses: '200': description: Response @@ -114219,7 +114332,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *768 + - *769 requestBody: required: true content: @@ -114311,7 +114424,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *768 + - *769 - *17 - *19 responses: @@ -114323,7 +114436,7 @@ paths: type: array items: *302 examples: - response-if-child-teams-exist: *772 + response-if-child-teams-exist: *773 headers: Link: *45 '404': *6 @@ -114356,7 +114469,7 @@ paths: application/json: schema: oneOf: - - &774 + - &775 title: Private User description: Private User type: object @@ -114606,7 +114719,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *773 + - *774 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -114766,7 +114879,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: default: value: @@ -115164,7 +115277,7 @@ paths: type: integer secrets: type: array - items: &775 + items: &776 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115284,7 +115397,7 @@ paths: description: Response content: application/json: - schema: *775 + schema: *776 examples: default: value: @@ -115430,7 +115543,7 @@ paths: type: array items: *273 examples: - default: *776 + default: *777 '401': *23 '403': *27 '404': *6 @@ -115697,7 +115810,7 @@ paths: description: Response content: application/json: - schema: &777 + schema: &778 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -115750,7 +115863,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &778 + default: &779 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -115795,9 +115908,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *778 + default: *779 '404': *6 x-github: githubCloudOnly: false @@ -115836,7 +115949,7 @@ paths: type: array items: *544 examples: - default: *779 + default: *780 '304': *35 '500': *38 '401': *23 @@ -116802,7 +116915,7 @@ paths: type: array items: *374 examples: - default: &790 + default: &791 value: - id: 197 name: hello_docker @@ -116903,7 +117016,7 @@ paths: application/json: schema: type: array - items: &780 + items: &781 title: Email description: Email type: object @@ -116973,9 +117086,9 @@ paths: application/json: schema: type: array - items: *780 + items: *781 examples: - default: &792 + default: &793 value: - email: octocat@github.com verified: true @@ -117052,7 +117165,7 @@ paths: application/json: schema: type: array - items: *780 + items: *781 examples: default: value: @@ -117310,7 +117423,7 @@ paths: application/json: schema: type: array - items: &781 + items: &782 title: GPG Key description: A unique encryption key type: object @@ -117455,7 +117568,7 @@ paths: - subkeys - revoked examples: - default: &808 + default: &809 value: - id: 3 name: Octocat's GPG Key @@ -117540,9 +117653,9 @@ paths: description: Response content: application/json: - schema: *781 + schema: *782 examples: - default: &782 + default: &783 value: id: 3 name: Octocat's GPG Key @@ -117599,7 +117712,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &783 + - &784 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -117611,9 +117724,9 @@ paths: description: Response content: application/json: - schema: *781 + schema: *782 examples: - default: *782 + default: *783 '404': *6 '304': *35 '403': *27 @@ -117636,7 +117749,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *783 + - *784 responses: '204': description: Response @@ -118093,7 +118206,7 @@ paths: application/json: schema: type: array - items: &784 + items: &785 title: Key description: Key type: object @@ -118196,9 +118309,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: &785 + default: &786 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118231,15 +118344,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '200': description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '404': *6 '304': *35 '403': *27 @@ -118262,7 +118375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '204': description: Response @@ -118295,7 +118408,7 @@ paths: application/json: schema: type: array - items: &786 + items: &787 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -118374,7 +118487,7 @@ paths: - account - plan examples: - default: &787 + default: &788 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -118436,9 +118549,9 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: *787 + default: *788 headers: Link: *45 '304': *35 @@ -119456,7 +119569,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *370 - - *788 + - *789 responses: '204': description: Response @@ -119571,7 +119684,7 @@ paths: - docker - nuget - container - - *789 + - *790 - *19 - *17 responses: @@ -119583,8 +119696,8 @@ paths: type: array items: *374 examples: - default: *790 - '400': *791 + default: *791 + '400': *792 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119613,7 +119726,7 @@ paths: application/json: schema: *374 examples: - default: &809 + default: &810 value: id: 40201 name: octo-name @@ -119975,9 +120088,9 @@ paths: application/json: schema: type: array - items: *780 + items: *781 examples: - default: *792 + default: *793 headers: Link: *45 '304': *35 @@ -120090,7 +120203,7 @@ paths: type: array items: *76 examples: - default: &799 + default: &800 summary: Default response value: - id: 1296269 @@ -120450,7 +120563,7 @@ paths: type: array items: *626 examples: - default: *793 + default: *794 headers: Link: *45 '304': *35 @@ -120529,7 +120642,7 @@ paths: application/json: schema: type: array - items: &794 + items: &795 title: Social account description: Social media account type: object @@ -120546,7 +120659,7 @@ paths: - provider - url examples: - default: &795 + default: &796 value: - provider: twitter url: https://twitter.com/github @@ -120609,9 +120722,9 @@ paths: application/json: schema: type: array - items: *794 + items: *795 examples: - default: *795 + default: *796 '422': *15 '304': *35 '404': *6 @@ -120699,7 +120812,7 @@ paths: application/json: schema: type: array - items: &796 + items: &797 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -120719,7 +120832,7 @@ paths: - title - created_at examples: - default: &823 + default: &824 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120784,9 +120897,9 @@ paths: description: Response content: application/json: - schema: *796 + schema: *797 examples: - default: &797 + default: &798 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120816,7 +120929,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &798 + - &799 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -120828,9 +120941,9 @@ paths: description: Response content: application/json: - schema: *796 + schema: *797 examples: - default: *797 + default: *798 '404': *6 '304': *35 '403': *27 @@ -120853,7 +120966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *798 + - *799 responses: '204': description: Response @@ -120882,7 +120995,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &824 + - &825 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -120907,11 +121020,11 @@ paths: type: array items: *76 examples: - default-response: *799 + default-response: *800 application/vnd.github.v3.star+json: schema: type: array - items: &825 + items: &826 title: Starred Repository description: Starred Repository type: object @@ -121280,10 +121393,10 @@ paths: application/json: schema: oneOf: + - *775 - *774 - - *773 examples: - default-response: &803 + default-response: &804 summary: Default response value: login: octocat @@ -121318,7 +121431,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &804 + response-with-git-hub-plan-information: &805 summary: Response with GitHub plan information value: login: octocat @@ -121375,7 +121488,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &801 + - &802 name: user_id description: The unique identifier of the user. in: path @@ -121441,7 +121554,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *800 + - *801 - *17 responses: '200': @@ -121476,7 +121589,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *801 + - *802 - *392 requestBody: required: true @@ -121551,7 +121664,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *802 + schema: *803 examples: table_view: summary: Response for creating a table view @@ -121603,11 +121716,11 @@ paths: application/json: schema: oneOf: + - *775 - *774 - - *773 examples: - default-response: *803 - response-with-git-hub-plan-information: *804 + default-response: *804 + response-with-git-hub-plan-information: *805 '404': *6 x-github: githubCloudOnly: false @@ -121657,8 +121770,8 @@ paths: required: - subject_digests examples: - default: *805 - withPredicateType: *806 + default: *806 + withPredicateType: *807 responses: '200': description: Response @@ -121712,7 +121825,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *807 + default: *808 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -121958,7 +122071,7 @@ paths: type: array items: *374 examples: - default: *790 + default: *791 '403': *27 '401': *23 x-github: @@ -122342,9 +122455,9 @@ paths: application/json: schema: type: array - items: *781 + items: *782 examples: - default: *808 + default: *809 headers: Link: *45 x-github: @@ -122573,7 +122686,7 @@ paths: - docker - nuget - container - - *789 + - *790 - *137 - *19 - *17 @@ -122586,10 +122699,10 @@ paths: type: array items: *374 examples: - default: *790 + default: *791 '403': *27 '401': *23 - '400': *791 + '400': *792 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122619,7 +122732,7 @@ paths: application/json: schema: *374 examples: - default: *809 + default: *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122968,7 +123081,7 @@ paths: type: array items: *395 examples: - default: *810 + default: *811 headers: Link: *45 '304': *35 @@ -123028,7 +123141,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *811 + items: *812 required: - name - data_type @@ -123044,7 +123157,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *812 + iteration_configuration: *813 required: - name - data_type @@ -123066,8 +123179,8 @@ paths: value: name: Due date data_type: date - single_select_field: *813 - iteration_field: *814 + single_select_field: *814 + iteration_field: *815 responses: '201': description: Response @@ -123075,11 +123188,11 @@ paths: application/json: schema: *395 examples: - text_field: *815 - number_field: *816 - date_field: *817 - single_select_field: *818 - iteration_field: *819 + text_field: *816 + number_field: *817 + date_field: *818 + single_select_field: *819 + iteration_field: *820 '304': *35 '403': *27 '401': *23 @@ -123101,7 +123214,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *392 - - *820 + - *821 - *137 responses: '200': @@ -123110,7 +123223,7 @@ paths: application/json: schema: *395 examples: - default: *821 + default: *822 headers: Link: *45 '304': *35 @@ -123467,7 +123580,7 @@ paths: parameters: - *392 - *137 - - *822 + - *823 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -123746,9 +123859,9 @@ paths: application/json: schema: type: array - items: *794 + items: *795 examples: - default: *795 + default: *796 headers: Link: *45 x-github: @@ -123778,9 +123891,9 @@ paths: application/json: schema: type: array - items: *796 + items: *797 examples: - default: *823 + default: *824 headers: Link: *45 x-github: @@ -123805,7 +123918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *137 - - *824 + - *825 - *108 - *17 - *19 @@ -123817,11 +123930,11 @@ paths: schema: anyOf: - type: array - items: *825 + items: *826 - type: array items: *76 examples: - default-response: *799 + default-response: *800 headers: Link: *45 x-github: @@ -123981,7 +124094,7 @@ webhooks: type: string enum: - disabled - enterprise: &826 + enterprise: &827 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124050,7 +124163,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &827 + installation: &828 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124071,7 +124184,7 @@ webhooks: required: - id - node_id - organization: &828 + organization: &829 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124144,7 +124257,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &829 + repository: &830 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -124489,6 +124602,12 @@ webhooks: type: boolean examples: - true + has_pull_requests: + description: Whether pull requests are enabled. + default: true + type: boolean + examples: + - true archived: description: Whether the repository is archived. default: false @@ -125057,10 +125176,10 @@ webhooks: type: string enum: - enabled - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -125136,11 +125255,11 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - rule: &830 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + rule: &831 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -125363,11 +125482,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - rule: *830 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + rule: *831 sender: *4 required: - action @@ -125555,11 +125674,11 @@ webhooks: - everyone required: - from - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - rule: *830 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + rule: *831 sender: *4 required: - action @@ -125632,7 +125751,7 @@ webhooks: required: true content: application/json: - schema: &850 + schema: &851 title: Exemption request cancellation event type: object properties: @@ -125640,11 +125759,11 @@ webhooks: type: string enum: - cancelled - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - exemption_request: &831 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + exemption_request: &832 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -125918,7 +126037,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &832 + items: &833 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126030,7 +126149,7 @@ webhooks: required: true content: application/json: - schema: &851 + schema: &852 title: Exemption request completed event type: object properties: @@ -126038,11 +126157,11 @@ webhooks: type: string enum: - completed - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - exemption_request: *831 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + exemption_request: *832 sender: *4 required: - action @@ -126114,7 +126233,7 @@ webhooks: required: true content: application/json: - schema: &848 + schema: &849 title: Exemption request created event type: object properties: @@ -126122,11 +126241,11 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - exemption_request: *831 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + exemption_request: *832 sender: *4 required: - action @@ -126198,7 +126317,7 @@ webhooks: required: true content: application/json: - schema: &852 + schema: &853 title: Exemption response dismissed event type: object properties: @@ -126206,12 +126325,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - exemption_request: *831 - exemption_response: *832 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + exemption_request: *832 + exemption_response: *833 sender: *4 required: - action @@ -126285,7 +126404,7 @@ webhooks: required: true content: application/json: - schema: &849 + schema: &850 title: Exemption response submitted event type: object properties: @@ -126293,12 +126412,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - exemption_request: *831 - exemption_response: *832 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + exemption_request: *832 + exemption_response: *833 sender: *4 required: - action @@ -126382,7 +126501,7 @@ webhooks: type: string enum: - completed - check_run: &834 + check_run: &835 title: CheckRun description: A check performed on the code of a given code change type: object @@ -126492,7 +126611,7 @@ webhooks: - examples: - neutral - deployment: *833 + deployment: *834 details_url: type: string examples: @@ -126590,10 +126709,10 @@ webhooks: - output - app - pull_requests - installation: *827 - enterprise: *826 - organization: *828 - repository: *829 + installation: *828 + enterprise: *827 + organization: *829 + repository: *830 sender: *4 required: - check_run @@ -126984,11 +127103,11 @@ webhooks: type: string enum: - created - check_run: *834 - installation: *827 - enterprise: *826 - organization: *828 - repository: *829 + check_run: *835 + installation: *828 + enterprise: *827 + organization: *829 + repository: *830 sender: *4 required: - check_run @@ -127382,11 +127501,11 @@ webhooks: type: string enum: - requested_action - check_run: *834 - installation: *827 - enterprise: *826 - organization: *828 - repository: *829 + check_run: *835 + installation: *828 + enterprise: *827 + organization: *829 + repository: *830 requested_action: description: The action requested by the user. type: object @@ -127789,11 +127908,11 @@ webhooks: type: string enum: - rerequested - check_run: *834 - installation: *827 - enterprise: *826 - organization: *828 - repository: *829 + check_run: *835 + installation: *828 + enterprise: *827 + organization: *829 + repository: *830 sender: *4 required: - check_run @@ -128778,10 +128897,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -129485,10 +129604,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -130186,10 +130305,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -130510,20 +130629,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &835 + commit_oid: &836 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *826 - installation: *827 - organization: *828 - ref: &836 + enterprise: *827 + installation: *828 + organization: *829 + ref: &837 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *829 + repository: *830 sender: *4 required: - action @@ -130931,12 +131050,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *835 - enterprise: *826 - installation: *827 - organization: *828 - ref: *836 - repository: *829 + commit_oid: *836 + enterprise: *827 + installation: *828 + organization: *829 + ref: *837 + repository: *830 sender: *4 required: - action @@ -131219,12 +131338,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *835 - enterprise: *826 - installation: *827 - organization: *828 - ref: *836 - repository: *829 + commit_oid: *836 + enterprise: *827 + installation: *828 + organization: *829 + ref: *837 + repository: *830 sender: *4 required: - action @@ -131570,12 +131689,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *835 - enterprise: *826 - installation: *827 - organization: *828 - ref: *836 - repository: *829 + commit_oid: *836 + enterprise: *827 + installation: *828 + organization: *829 + ref: *837 + repository: *830 sender: *4 required: - action @@ -131865,9 +131984,9 @@ webhooks: type: - string - 'null' - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -131875,7 +131994,7 @@ webhooks: type: - string - 'null' - repository: *829 + repository: *830 sender: *4 required: - action @@ -132121,12 +132240,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *835 - enterprise: *826 - installation: *827 - organization: *828 - ref: *836 - repository: *829 + commit_oid: *836 + enterprise: *827 + installation: *828 + organization: *829 + ref: *837 + repository: *830 sender: *4 required: - action @@ -132447,10 +132566,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -132710,10 +132829,10 @@ webhooks: - updated_at - author_association - body - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -132794,18 +132913,18 @@ webhooks: type: - string - 'null' - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *828 - pusher_type: &837 + organization: *829 + pusher_type: &838 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &838 + ref: &839 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -132815,7 +132934,7 @@ webhooks: enum: - tag - branch - repository: *829 + repository: *830 sender: *4 required: - ref @@ -132898,9 +133017,9 @@ webhooks: enum: - created definition: *151 - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 required: - action @@ -132985,9 +133104,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 required: - action @@ -133065,9 +133184,9 @@ webhooks: enum: - promote_to_enterprise definition: *151 - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 required: - action @@ -133145,9 +133264,9 @@ webhooks: enum: - updated definition: *151 - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 required: - action @@ -133224,10 +133343,10 @@ webhooks: type: string enum: - updated - enterprise: *826 - installation: *827 - repository: *829 - organization: *828 + enterprise: *827 + installation: *828 + repository: *830 + organization: *829 sender: *4 new_property_values: type: array @@ -133312,18 +133431,18 @@ webhooks: title: delete event type: object properties: - enterprise: *826 - installation: *827 - organization: *828 - pusher_type: *837 - ref: *838 + enterprise: *827 + installation: *828 + organization: *829 + pusher_type: *838 + ref: *839 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *829 + repository: *830 sender: *4 required: - ref @@ -133408,10 +133527,10 @@ webhooks: enum: - auto_dismissed alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133496,10 +133615,10 @@ webhooks: enum: - auto_reopened alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133584,10 +133703,10 @@ webhooks: enum: - created alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133670,10 +133789,10 @@ webhooks: enum: - dismissed alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133756,10 +133875,10 @@ webhooks: enum: - fixed alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133843,10 +133962,10 @@ webhooks: enum: - reintroduced alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -133929,10 +134048,10 @@ webhooks: enum: - reopened alert: *573 - installation: *827 - organization: *828 - enterprise: *826 - repository: *829 + installation: *828 + organization: *829 + enterprise: *827 + repository: *830 sender: *4 required: - action @@ -134009,9 +134128,9 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - key: &839 + enterprise: *827 + installation: *828 + key: &840 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134049,8 +134168,8 @@ webhooks: - verified - created_at - read_only - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -134127,11 +134246,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - key: *839 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + key: *840 + organization: *829 + repository: *830 sender: *4 required: - action @@ -134698,12 +134817,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - workflow: &843 + workflow: &844 title: Workflow type: - object @@ -135444,10 +135563,10 @@ webhooks: deployment: *579 pull_requests: type: array - items: *673 - repository: *829 - organization: *828 - installation: *827 + items: *674 + repository: *830 + organization: *829 + installation: *828 sender: *4 responses: '200': @@ -135518,7 +135637,7 @@ webhooks: type: string enum: - approved - approver: &840 + approver: &841 type: object properties: avatar_url: @@ -135561,11 +135680,11 @@ webhooks: type: string comment: type: string - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - reviewers: &841 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + reviewers: &842 type: array items: type: object @@ -135646,7 +135765,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &842 + workflow_job_run: &843 type: object properties: conclusion: @@ -136392,18 +136511,18 @@ webhooks: type: string enum: - rejected - approver: *840 + approver: *841 comment: type: string - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - reviewers: *841 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + reviewers: *842 sender: *4 since: type: string - workflow_job_run: *842 + workflow_job_run: *843 workflow_job_runs: type: array items: @@ -137120,13 +137239,13 @@ webhooks: type: string enum: - requested - enterprise: *826 + enterprise: *827 environment: type: string - installation: *827 - organization: *828 - repository: *829 - requestor: &853 + installation: *828 + organization: *829 + repository: *830 + requestor: &854 title: User type: - object @@ -139059,12 +139178,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - workflow: *843 + workflow: *844 workflow_run: title: Deployment Workflow Run type: @@ -139755,7 +139874,7 @@ webhooks: type: string enum: - answered - answer: &846 + answer: &847 type: object properties: author_association: @@ -139915,11 +140034,11 @@ webhooks: - created_at - updated_at - body - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140046,11 +140165,11 @@ webhooks: - from required: - category - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140133,11 +140252,11 @@ webhooks: type: string enum: - closed - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140219,7 +140338,7 @@ webhooks: type: string enum: - created - comment: &845 + comment: &846 type: object properties: author_association: @@ -140379,11 +140498,11 @@ webhooks: - updated_at - body - reactions - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140466,12 +140585,12 @@ webhooks: type: string enum: - deleted - comment: *845 - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + comment: *846 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140566,12 +140685,12 @@ webhooks: - from required: - body - comment: *845 - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + comment: *846 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140655,11 +140774,11 @@ webhooks: type: string enum: - created - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140741,11 +140860,11 @@ webhooks: type: string enum: - deleted - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140845,11 +140964,11 @@ webhooks: type: string required: - from - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -140931,10 +141050,10 @@ webhooks: type: string enum: - labeled - discussion: *844 - enterprise: *826 - installation: *827 - label: &847 + discussion: *845 + enterprise: *827 + installation: *828 + label: &848 title: Label type: object properties: @@ -140967,8 +141086,8 @@ webhooks: - color - default - description - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141051,11 +141170,11 @@ webhooks: type: string enum: - locked - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141137,11 +141256,11 @@ webhooks: type: string enum: - pinned - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141223,11 +141342,11 @@ webhooks: type: string enum: - reopened - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141312,16 +141431,16 @@ webhooks: changes: type: object properties: - new_discussion: *844 - new_repository: *829 + new_discussion: *845 + new_repository: *830 required: - new_discussion - new_repository - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141404,10 +141523,10 @@ webhooks: type: string enum: - unanswered - discussion: *844 - old_answer: *846 - organization: *828 - repository: *829 + discussion: *845 + old_answer: *847 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141489,12 +141608,12 @@ webhooks: type: string enum: - unlabeled - discussion: *844 - enterprise: *826 - installation: *827 - label: *847 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141577,11 +141696,11 @@ webhooks: type: string enum: - unlocked - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141663,11 +141782,11 @@ webhooks: type: string enum: - unpinned - discussion: *844 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + discussion: *845 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -141736,7 +141855,7 @@ webhooks: required: true content: application/json: - schema: *848 + schema: *849 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141799,7 +141918,7 @@ webhooks: required: true content: application/json: - schema: *849 + schema: *850 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141862,7 +141981,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141925,7 +142044,7 @@ webhooks: required: true content: application/json: - schema: *848 + schema: *849 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141988,7 +142107,7 @@ webhooks: required: true content: application/json: - schema: *849 + schema: *850 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142054,7 +142173,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142120,7 +142239,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142186,7 +142305,7 @@ webhooks: required: true content: application/json: - schema: *848 + schema: *849 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142252,7 +142371,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142318,7 +142437,7 @@ webhooks: required: true content: application/json: - schema: *849 + schema: *850 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142383,7 +142502,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142448,7 +142567,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142513,7 +142632,7 @@ webhooks: required: true content: application/json: - schema: *848 + schema: *849 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142578,7 +142697,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142644,7 +142763,7 @@ webhooks: required: true content: application/json: - schema: *849 + schema: *850 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142711,7 +142830,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *826 + enterprise: *827 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143389,9 +143508,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - forkee @@ -143537,9 +143656,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pages: description: The pages that were updated. type: array @@ -143577,7 +143696,7 @@ webhooks: - action - sha - html_url - repository: *829 + repository: *830 sender: *4 required: - pages @@ -143653,10 +143772,10 @@ webhooks: type: string enum: - created - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories: &854 + organization: *829 + repositories: &855 description: An array of repository objects that the installation can access. type: array @@ -143682,8 +143801,8 @@ webhooks: - name - full_name - private - repository: *829 - requester: *853 + repository: *830 + requester: *854 sender: *4 required: - action @@ -143758,11 +143877,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories: *854 - repository: *829 + organization: *829 + repositories: *855 + repository: *830 requester: type: - 'null' @@ -143839,11 +143958,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories: *854 - repository: *829 + organization: *829 + repositories: *855 + repository: *830 requester: type: - 'null' @@ -143920,10 +144039,10 @@ webhooks: type: string enum: - added - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories_added: &855 + organization: *829 + repositories_added: &856 description: An array of repository objects, which were added to the installation. type: array @@ -143969,15 +144088,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *829 - repository_selection: &856 + repository: *830 + repository_selection: &857 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *853 + requester: *854 sender: *4 required: - action @@ -144056,10 +144175,10 @@ webhooks: type: string enum: - removed - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories_added: *855 + organization: *829 + repositories_added: *856 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144086,9 +144205,9 @@ webhooks: - name - full_name - private - repository: *829 - repository_selection: *856 - requester: *853 + repository: *830 + repository_selection: *857 + requester: *854 sender: *4 required: - action @@ -144167,11 +144286,11 @@ webhooks: type: string enum: - suspend - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories: *854 - repository: *829 + organization: *829 + repositories: *855 + repository: *830 requester: type: - 'null' @@ -144354,10 +144473,10 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 target_type: type: string @@ -144436,11 +144555,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *826 + enterprise: *827 installation: *20 - organization: *828 - repositories: *854 - repository: *829 + organization: *829 + repositories: *855 + repository: *830 requester: type: - 'null' @@ -144606,6 +144725,7 @@ webhooks: pin: anyOf: - type: 'null' + - *651 user: title: User type: @@ -144691,8 +144811,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145504,8 +145624,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145866,8 +145986,8 @@ webhooks: - state - locked - assignee - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -145947,7 +146067,7 @@ webhooks: type: string enum: - deleted - comment: &857 + comment: &858 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146104,6 +146224,7 @@ webhooks: pin: anyOf: - type: 'null' + - *651 required: - url - html_url @@ -146117,8 +146238,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146926,8 +147047,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147290,8 +147411,8 @@ webhooks: - state - locked - assignee - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -147371,7 +147492,7 @@ webhooks: type: string enum: - edited - changes: &881 + changes: &882 description: The changes to the comment. type: object properties: @@ -147383,9 +147504,9 @@ webhooks: type: string required: - from - comment: *857 - enterprise: *826 - installation: *827 + comment: *858 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148196,8 +148317,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148558,8 +148679,8 @@ webhooks: - state - locked - assignee - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -148640,9 +148761,9 @@ webhooks: type: string enum: - pinned - comment: *857 - enterprise: *826 - installation: *827 + comment: *858 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149455,8 +149576,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149819,8 +149940,8 @@ webhooks: - state - locked - assignee - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -149900,9 +150021,9 @@ webhooks: type: string enum: - unpinned - comment: *857 - enterprise: *826 - installation: *827 + comment: *858 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150715,8 +150836,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151079,8 +151200,8 @@ webhooks: - state - locked - assignee - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -151169,9 +151290,9 @@ webhooks: type: number blocking_issue: *213 blocking_issue_repo: *76 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -151260,9 +151381,9 @@ webhooks: type: number blocking_issue: *213 blocking_issue_repo: *76 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -151350,9 +151471,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -151441,9 +151562,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -151523,10 +151644,10 @@ webhooks: type: string enum: - assigned - assignee: *853 - enterprise: *826 - installation: *827 - issue: &860 + assignee: *854 + enterprise: *827 + installation: *828 + issue: &861 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -152333,11 +152454,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152457,8 +152578,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -152538,8 +152659,8 @@ webhooks: type: string enum: - closed - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153351,11 +153472,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153618,8 +153739,8 @@ webhooks: required: - state - closed_at - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -153698,8 +153819,8 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154502,11 +154623,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154625,8 +154746,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -154705,8 +154826,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155532,11 +155653,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155634,7 +155755,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &858 + milestone: &859 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155777,8 +155898,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -155877,8 +155998,8 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156685,11 +156806,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156809,9 +156930,9 @@ webhooks: - active_lock_reason - body - reactions - label: *847 - organization: *828 - repository: *829 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -156891,8 +157012,8 @@ webhooks: type: string enum: - labeled - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157698,11 +157819,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157822,9 +157943,9 @@ webhooks: - active_lock_reason - body - reactions - label: *847 - organization: *828 - repository: *829 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -157904,8 +158025,8 @@ webhooks: type: string enum: - locked - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158736,11 +158857,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158837,8 +158958,8 @@ webhooks: format: uri user_view_type: type: string - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -158917,8 +159038,8 @@ webhooks: type: string enum: - milestoned - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159743,11 +159864,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159844,9 +159965,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *858 - organization: *828 - repository: *829 + milestone: *859 + organization: *829 + repository: *830 sender: *4 required: - action @@ -160733,11 +160854,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160961,6 +161082,10 @@ webhooks: has_discussions: description: Whether the repository has discussions enabled. type: boolean + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_downloads: description: Whether downloads are enabled. type: boolean @@ -161314,8 +161439,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162122,11 +162247,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162245,8 +162370,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -162326,9 +162451,9 @@ webhooks: type: string enum: - pinned - enterprise: *826 - installation: *827 - issue: &859 + enterprise: *827 + installation: *828 + issue: &860 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -163129,11 +163254,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163252,8 +163377,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -163332,8 +163457,8 @@ webhooks: type: string enum: - reopened - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164162,11 +164287,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164264,8 +164389,8 @@ webhooks: user_view_type: type: string type: *359 - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -165149,11 +165274,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165415,6 +165540,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -165752,11 +165881,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *826 - installation: *827 - issue: *859 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + issue: *860 + organization: *829 + repository: *830 sender: *4 required: - action @@ -165836,12 +165965,12 @@ webhooks: type: string enum: - typed - enterprise: *826 - installation: *827 - issue: *860 + enterprise: *827 + installation: *828 + issue: *861 type: *359 - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -165922,7 +166051,7 @@ webhooks: type: string enum: - unassigned - assignee: &884 + assignee: &885 title: User type: - object @@ -165994,11 +166123,11 @@ webhooks: required: - login - id - enterprise: *826 - installation: *827 - issue: *860 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + issue: *861 + organization: *829 + repository: *830 sender: *4 required: - action @@ -166077,12 +166206,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *826 - installation: *827 - issue: *860 - label: *847 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + issue: *861 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -166162,8 +166291,8 @@ webhooks: type: string enum: - unlocked - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -166992,11 +167121,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *765 - issue_dependencies_summary: *766 + sub_issues_summary: *766 + issue_dependencies_summary: *767 issue_field_values: type: array - items: *767 + items: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167093,8 +167222,8 @@ webhooks: format: uri user_view_type: type: string - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167174,11 +167303,11 @@ webhooks: type: string enum: - unpinned - enterprise: *826 - installation: *827 - issue: *859 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + issue: *860 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167257,12 +167386,12 @@ webhooks: type: string enum: - untyped - enterprise: *826 - installation: *827 - issue: *860 + enterprise: *827 + installation: *828 + issue: *861 type: *359 - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167342,11 +167471,11 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - label: *847 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167424,11 +167553,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - label: *847 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167538,11 +167667,11 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - label: *847 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + label: *848 + organization: *829 + repository: *830 sender: *4 required: - action @@ -167624,9 +167753,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *826 - installation: *827 - marketplace_purchase: &861 + enterprise: *827 + installation: *828 + marketplace_purchase: &862 title: Marketplace Purchase type: object required: @@ -167714,8 +167843,8 @@ webhooks: type: integer unit_count: type: integer - organization: *828 - previous_marketplace_purchase: &862 + organization: *829 + previous_marketplace_purchase: &863 title: Marketplace Purchase type: object properties: @@ -167799,7 +167928,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *829 + repository: *830 sender: *4 required: - action @@ -167879,10 +168008,10 @@ webhooks: - changed effective_date: type: string - enterprise: *826 - installation: *827 - marketplace_purchase: *861 - organization: *828 + enterprise: *827 + installation: *828 + marketplace_purchase: *862 + organization: *829 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167970,7 +168099,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *829 + repository: *830 sender: *4 required: - action @@ -168052,10 +168181,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *826 - installation: *827 - marketplace_purchase: *861 - organization: *828 + enterprise: *827 + installation: *828 + marketplace_purchase: *862 + organization: *829 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168141,7 +168270,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *829 + repository: *830 sender: *4 required: - action @@ -168222,8 +168351,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 marketplace_purchase: title: Marketplace Purchase type: object @@ -168309,9 +168438,9 @@ webhooks: type: integer unit_count: type: integer - organization: *828 - previous_marketplace_purchase: *862 - repository: *829 + organization: *829 + previous_marketplace_purchase: *863 + repository: *830 sender: *4 required: - action @@ -168391,12 +168520,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *826 - installation: *827 - marketplace_purchase: *861 - organization: *828 - previous_marketplace_purchase: *862 - repository: *829 + enterprise: *827 + installation: *828 + marketplace_purchase: *862 + organization: *829 + previous_marketplace_purchase: *863 + repository: *830 sender: *4 required: - action @@ -168498,11 +168627,11 @@ webhooks: type: string required: - to - enterprise: *826 - installation: *827 - member: *853 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + member: *854 + organization: *829 + repository: *830 sender: *4 required: - action @@ -168604,11 +168733,11 @@ webhooks: type: - string - 'null' - enterprise: *826 - installation: *827 - member: *853 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + member: *854 + organization: *829 + repository: *830 sender: *4 required: - action @@ -168687,11 +168816,11 @@ webhooks: type: string enum: - removed - enterprise: *826 - installation: *827 - member: *853 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + member: *854 + organization: *829 + repository: *830 sender: *4 required: - action @@ -168769,11 +168898,11 @@ webhooks: type: string enum: - added - enterprise: *826 - installation: *827 - member: *853 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + member: *854 + organization: *829 + repository: *830 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168851,7 +168980,7 @@ webhooks: required: - login - id - team: &863 + team: &864 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -169081,11 +169210,11 @@ webhooks: type: string enum: - removed - enterprise: *826 - installation: *827 - member: *853 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + member: *854 + organization: *829 + repository: *830 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169164,7 +169293,7 @@ webhooks: required: - login - id - team: *863 + team: *864 required: - action - scope @@ -169246,8 +169375,8 @@ webhooks: type: string enum: - checks_requested - installation: *827 - merge_group: &864 + installation: *828 + merge_group: &865 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169273,8 +169402,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -169360,10 +169489,10 @@ webhooks: - merged - invalidated - dequeued - installation: *827 - merge_group: *864 - organization: *828 - repository: *829 + installation: *828 + merge_group: *865 + organization: *829 + repository: *830 sender: *4 required: - action @@ -169436,7 +169565,7 @@ webhooks: type: string enum: - deleted - enterprise: *826 + enterprise: *827 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -169545,12 +169674,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *827 - organization: *828 + installation: *828 + organization: *829 repository: anyOf: - type: 'null' - - *829 + - *830 sender: *4 required: - action @@ -169630,11 +169759,11 @@ webhooks: type: string enum: - closed - enterprise: *826 - installation: *827 - milestone: *858 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + milestone: *859 + organization: *829 + repository: *830 sender: *4 required: - action @@ -169713,9 +169842,9 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - milestone: &865 + enterprise: *827 + installation: *828 + milestone: &866 title: Milestone description: A collection of related issues and pull requests. type: object @@ -169857,8 +169986,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -169937,11 +170066,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - milestone: *858 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + milestone: *859 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170051,11 +170180,11 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - milestone: *858 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + milestone: *859 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170135,11 +170264,11 @@ webhooks: type: string enum: - opened - enterprise: *826 - installation: *827 - milestone: *865 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + milestone: *866 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170218,11 +170347,11 @@ webhooks: type: string enum: - blocked - blocked_user: *853 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + blocked_user: *854 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170301,11 +170430,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *853 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + blocked_user: *854 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170381,7 +170510,7 @@ webhooks: enum: - created definition: *145 - enterprise: *826 + enterprise: *827 sender: *4 required: - action @@ -170461,8 +170590,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 sender: *4 required: - action @@ -170535,8 +170664,8 @@ webhooks: enum: - updated definition: *145 - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 sender: *4 required: - action @@ -170608,9 +170737,9 @@ webhooks: type: string enum: - updated - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 new_property_values: type: array @@ -170698,9 +170827,9 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - membership: &866 + enterprise: *827 + installation: *828 + membership: &867 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -170810,8 +170939,8 @@ webhooks: - role - organization_url - user - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170889,11 +171018,11 @@ webhooks: type: string enum: - member_added - enterprise: *826 - installation: *827 - membership: *866 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + membership: *867 + organization: *829 + repository: *830 sender: *4 required: - action @@ -170972,8 +171101,8 @@ webhooks: type: string enum: - member_invited - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -171095,10 +171224,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 - user: *853 + user: *854 required: - action - invitation @@ -171176,11 +171305,11 @@ webhooks: type: string enum: - member_removed - enterprise: *826 - installation: *827 - membership: *866 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + membership: *867 + organization: *829 + repository: *830 sender: *4 required: - action @@ -171267,11 +171396,11 @@ webhooks: properties: from: type: string - enterprise: *826 - installation: *827 - membership: *866 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + membership: *867 + organization: *829 + repository: *830 sender: *4 required: - action @@ -171349,9 +171478,9 @@ webhooks: type: string enum: - published - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 package: description: Information about the package. type: object @@ -171874,7 +172003,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &867 + items: &868 title: Ruby Gems metadata type: object properties: @@ -171971,7 +172100,7 @@ webhooks: - owner - package_version - registry - repository: *829 + repository: *830 sender: *4 required: - action @@ -172048,9 +172177,9 @@ webhooks: type: string enum: - updated - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 package: description: Information about the package. type: object @@ -172412,7 +172541,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *867 + items: *868 source_url: type: string format: uri @@ -172483,7 +172612,7 @@ webhooks: - owner - package_version - registry - repository: *829 + repository: *830 sender: *4 required: - action @@ -172663,12 +172792,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *826 + enterprise: *827 id: type: integer - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - id @@ -172745,7 +172874,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &868 + personal_access_token_request: &869 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -172895,10 +173024,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *826 - organization: *828 + enterprise: *827 + organization: *829 sender: *4 - installation: *827 + installation: *828 required: - action - personal_access_token_request @@ -172975,11 +173104,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *868 - enterprise: *826 - organization: *828 + personal_access_token_request: *869 + enterprise: *827 + organization: *829 sender: *4 - installation: *827 + installation: *828 required: - action - personal_access_token_request @@ -173055,11 +173184,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *868 - enterprise: *826 - organization: *828 + personal_access_token_request: *869 + enterprise: *827 + organization: *829 sender: *4 - installation: *827 + installation: *828 required: - action - personal_access_token_request @@ -173134,11 +173263,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *868 - organization: *828 - enterprise: *826 + personal_access_token_request: *869 + organization: *829 + enterprise: *827 sender: *4 - installation: *827 + installation: *828 required: - action - personal_access_token_request @@ -173243,7 +173372,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *869 + last_response: *870 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -173275,8 +173404,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 zen: description: Random string of GitHub zen. @@ -173521,10 +173650,10 @@ webhooks: - from required: - note - enterprise: *826 - installation: *827 - organization: *828 - project_card: &870 + enterprise: *827 + installation: *828 + organization: *829 + project_card: &871 title: Project Card type: object properties: @@ -173647,7 +173776,7 @@ webhooks: - creator - created_at - updated_at - repository: *829 + repository: *830 sender: *4 required: - action @@ -173728,11 +173857,11 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - project_card: *870 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project_card: *871 + repository: *830 sender: *4 required: - action @@ -173812,9 +173941,9 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 project_card: title: Project Card type: object @@ -173944,7 +174073,7 @@ webhooks: repository: anyOf: - type: 'null' - - *829 + - *830 sender: *4 required: - action @@ -174038,11 +174167,11 @@ webhooks: - from required: - note - enterprise: *826 - installation: *827 - organization: *828 - project_card: *870 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project_card: *871 + repository: *830 sender: *4 required: - action @@ -174136,9 +174265,9 @@ webhooks: - from required: - column_id - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 project_card: allOf: - title: Project Card @@ -174335,7 +174464,7 @@ webhooks: type: string required: - after_id - repository: *829 + repository: *830 sender: *4 required: - action @@ -174415,10 +174544,10 @@ webhooks: type: string enum: - closed - enterprise: *826 - installation: *827 - organization: *828 - project: &872 + enterprise: *827 + installation: *828 + organization: *829 + project: &873 title: Project type: object properties: @@ -174545,7 +174674,7 @@ webhooks: - creator - created_at - updated_at - repository: *829 + repository: *830 sender: *4 required: - action @@ -174625,10 +174754,10 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - project_column: &871 + enterprise: *827 + installation: *828 + organization: *829 + project_column: &872 title: Project Column type: object properties: @@ -174668,7 +174797,7 @@ webhooks: - name - created_at - updated_at - repository: *829 + repository: *830 sender: *4 required: - action @@ -174747,14 +174876,14 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - project_column: *871 + enterprise: *827 + installation: *828 + organization: *829 + project_column: *872 repository: anyOf: - type: 'null' - - *829 + - *830 sender: *4 required: - action @@ -174843,11 +174972,11 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - organization: *828 - project_column: *871 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project_column: *872 + repository: *830 sender: *4 required: - action @@ -174927,11 +175056,11 @@ webhooks: type: string enum: - moved - enterprise: *826 - installation: *827 - organization: *828 - project_column: *871 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project_column: *872 + repository: *830 sender: *4 required: - action @@ -175011,11 +175140,11 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - project: *872 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project: *873 + repository: *830 sender: *4 required: - action @@ -175095,14 +175224,14 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - project: *872 + enterprise: *827 + installation: *828 + organization: *829 + project: *873 repository: anyOf: - type: 'null' - - *829 + - *830 sender: *4 required: - action @@ -175203,11 +175332,11 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - organization: *828 - project: *872 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project: *873 + repository: *830 sender: *4 required: - action @@ -175286,11 +175415,11 @@ webhooks: type: string enum: - reopened - enterprise: *826 - installation: *827 - organization: *828 - project: *872 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + project: *873 + repository: *830 sender: *4 required: - action @@ -175371,8 +175500,8 @@ webhooks: type: string enum: - closed - installation: *827 - organization: *828 + installation: *828 + organization: *829 projects_v2: *390 sender: *4 required: @@ -175454,8 +175583,8 @@ webhooks: type: string enum: - created - installation: *827 - organization: *828 + installation: *828 + organization: *829 projects_v2: *390 sender: *4 required: @@ -175537,8 +175666,8 @@ webhooks: type: string enum: - deleted - installation: *827 - organization: *828 + installation: *828 + organization: *829 projects_v2: *390 sender: *4 required: @@ -175660,8 +175789,8 @@ webhooks: type: string to: type: string - installation: *827 - organization: *828 + installation: *828 + organization: *829 projects_v2: *390 sender: *4 required: @@ -175745,7 +175874,7 @@ webhooks: type: string enum: - archived - changes: &876 + changes: &877 type: object properties: archived_at: @@ -175761,9 +175890,9 @@ webhooks: - string - 'null' format: date-time - installation: *827 - organization: *828 - projects_v2_item: &873 + installation: *828 + organization: *829 + projects_v2_item: &874 title: Projects v2 Item description: An item belonging to a project type: object @@ -175903,9 +176032,9 @@ webhooks: - 'null' to: type: string - installation: *827 - organization: *828 - projects_v2_item: *873 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -175987,9 +176116,9 @@ webhooks: type: string enum: - created - installation: *827 - organization: *828 - projects_v2_item: *873 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -176070,9 +176199,9 @@ webhooks: type: string enum: - deleted - installation: *827 - organization: *828 - projects_v2_item: *873 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -176177,7 +176306,7 @@ webhooks: oneOf: - type: string - type: integer - - &874 + - &875 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -176201,7 +176330,7 @@ webhooks: required: - id - name - - &875 + - &876 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -176241,8 +176370,8 @@ webhooks: oneOf: - type: string - type: integer - - *874 - *875 + - *876 type: - 'null' - string @@ -176265,9 +176394,9 @@ webhooks: - 'null' required: - body - installation: *827 - organization: *828 - projects_v2_item: *873 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -176364,9 +176493,9 @@ webhooks: type: - string - 'null' - installation: *827 - organization: *828 - projects_v2_item: *873 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -176449,10 +176578,10 @@ webhooks: type: string enum: - restored - changes: *876 - installation: *827 - organization: *828 - projects_v2_item: *873 + changes: *877 + installation: *828 + organization: *829 + projects_v2_item: *874 sender: *4 required: - action @@ -176534,8 +176663,8 @@ webhooks: type: string enum: - reopened - installation: *827 - organization: *828 + installation: *828 + organization: *829 projects_v2: *390 sender: *4 required: @@ -176617,9 +176746,9 @@ webhooks: type: string enum: - created - installation: *827 - organization: *828 - projects_v2_status_update: *877 + installation: *828 + organization: *829 + projects_v2_status_update: *878 sender: *4 required: - action @@ -176700,9 +176829,9 @@ webhooks: type: string enum: - deleted - installation: *827 - organization: *828 - projects_v2_status_update: *877 + installation: *828 + organization: *829 + projects_v2_status_update: *878 sender: *4 required: - action @@ -176848,9 +176977,9 @@ webhooks: - string - 'null' format: date - installation: *827 - organization: *828 - projects_v2_status_update: *877 + installation: *828 + organization: *829 + projects_v2_status_update: *878 sender: *4 required: - action @@ -176921,10 +177050,10 @@ webhooks: title: public event type: object properties: - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - repository @@ -177001,13 +177130,13 @@ webhooks: type: string enum: - assigned - assignee: *853 - enterprise: *826 - installation: *827 - number: &878 + assignee: *854 + enterprise: *827 + installation: *828 + number: &879 description: The pull request number. type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -177515,6 +177644,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -178165,6 +178298,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -179356,7 +179493,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -179438,11 +179575,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -179936,6 +180073,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true has_pages: type: boolean has_projects: @@ -180592,6 +180733,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -181784,7 +181929,7 @@ webhooks: - draft reason: type: string - repository: *829 + repository: *830 sender: *4 required: - action @@ -181866,11 +182011,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -182374,6 +182519,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -183020,6 +183169,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -184212,7 +184365,7 @@ webhooks: - draft reason: type: string - repository: *829 + repository: *830 sender: *4 required: - action @@ -184294,13 +184447,13 @@ webhooks: type: string enum: - closed - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: &879 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: &880 allOf: - - *673 + - *674 - type: object properties: allow_auto_merge: @@ -184362,7 +184515,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *829 + repository: *830 sender: *4 required: - action @@ -184443,12 +184596,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: *879 - repository: *829 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: *880 + repository: *830 sender: *4 required: - action @@ -184528,11 +184681,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *826 + enterprise: *827 milestone: *393 - number: *878 - organization: *828 - pull_request: &880 + number: *879 + organization: *829 + pull_request: &881 title: Pull Request type: object properties: @@ -185037,6 +185190,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -185681,6 +185838,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -186859,7 +187020,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -186938,11 +187099,11 @@ webhooks: type: string enum: - dequeued - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -187446,6 +187607,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -188092,6 +188257,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -189288,7 +189457,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *829 + repository: *830 sender: *4 required: - action @@ -189412,12 +189581,12 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: *879 - repository: *829 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: *880 + repository: *830 sender: *4 required: - action @@ -189497,11 +189666,11 @@ webhooks: type: string enum: - enqueued - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -190005,6 +190174,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -190651,6 +190824,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -191832,7 +192009,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -191912,11 +192089,11 @@ webhooks: type: string enum: - labeled - enterprise: *826 - installation: *827 - label: *847 - number: *878 - organization: *828 + enterprise: *827 + installation: *828 + label: *848 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -192422,6 +192599,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -193072,6 +193253,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -194264,7 +194449,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -194345,10 +194530,10 @@ webhooks: type: string enum: - locked - enterprise: *826 - installation: *827 - number: *878 - organization: *828 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -194853,6 +195038,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -195503,6 +195692,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -196694,7 +196887,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -196774,12 +196967,12 @@ webhooks: type: string enum: - milestoned - enterprise: *826 + enterprise: *827 milestone: *393 - number: *878 - organization: *828 - pull_request: *880 - repository: *829 + number: *879 + organization: *829 + pull_request: *881 + repository: *830 sender: *4 required: - action @@ -196858,12 +197051,12 @@ webhooks: type: string enum: - opened - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: *879 - repository: *829 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: *880 + repository: *830 sender: *4 required: - action @@ -196944,12 +197137,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: *879 - repository: *829 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: *880 + repository: *830 sender: *4 required: - action @@ -197029,12 +197222,12 @@ webhooks: type: string enum: - reopened - enterprise: *826 - installation: *827 - number: *878 - organization: *828 - pull_request: *879 - repository: *829 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 + pull_request: *880 + repository: *830 sender: *4 required: - action @@ -197409,9 +197602,9 @@ webhooks: - start_side - side - reactions - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: type: object properties: @@ -197914,6 +198107,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -198550,6 +198747,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -199641,7 +199842,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *829 + repository: *830 sender: *4 required: - action @@ -199721,7 +199922,7 @@ webhooks: type: string enum: - deleted - comment: &882 + comment: &883 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -200014,9 +200215,9 @@ webhooks: - start_side - side - reactions - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: type: object properties: @@ -200517,6 +200718,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -201153,6 +201358,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -202234,7 +202443,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *829 + repository: *830 sender: *4 required: - action @@ -202314,11 +202523,11 @@ webhooks: type: string enum: - edited - changes: *881 - comment: *882 - enterprise: *826 - installation: *827 - organization: *828 + changes: *882 + comment: *883 + enterprise: *827 + installation: *828 + organization: *829 pull_request: type: object properties: @@ -202821,6 +203030,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -203457,6 +203670,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -204539,7 +204756,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *829 + repository: *830 sender: *4 required: - action @@ -204620,9 +204837,9 @@ webhooks: type: string enum: - dismissed - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: title: Simple Pull Request type: object @@ -205126,6 +205343,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -205762,6 +205983,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -206855,7 +207080,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *829 + repository: *830 review: description: The review that was affected. type: object @@ -207106,9 +207331,9 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: title: Simple Pull Request type: object @@ -209222,8 +209447,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *829 - review: &883 + repository: *830 + review: &884 description: The review that was affected. type: object properties: @@ -209461,12 +209686,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: description: The pull request number. type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -209973,6 +210198,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -210614,6 +210843,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -211813,7 +212046,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 requested_reviewer: title: User type: @@ -211899,12 +212132,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: description: The pull request number. type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -212411,6 +212644,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -213059,6 +213296,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -214258,7 +214499,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214453,12 +214694,12 @@ webhooks: type: string enum: - review_requested - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: description: The pull request number. type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -214967,6 +215208,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -215615,6 +215860,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -216807,7 +217056,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 requested_reviewer: title: User type: @@ -216894,12 +217143,12 @@ webhooks: type: string enum: - review_requested - enterprise: *826 - installation: *827 + enterprise: *827 + installation: *828 number: description: The pull request number. type: integer - organization: *828 + organization: *829 pull_request: title: Pull Request type: object @@ -217408,6 +217657,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -218056,6 +218309,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -219239,7 +219496,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 requested_team: title: Team description: Groups of organization members that gives permissions @@ -219423,9 +219680,9 @@ webhooks: type: string enum: - submitted - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: title: Simple Pull Request type: object @@ -219929,6 +220186,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -220567,6 +220828,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -221661,8 +221926,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *829 - review: *883 + repository: *830 + review: *884 sender: *4 required: - action @@ -221742,9 +222007,9 @@ webhooks: type: string enum: - resolved - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: title: Simple Pull Request type: object @@ -222246,6 +222511,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -222833,6 +223102,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -223875,7 +224148,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *829 + repository: *830 sender: *4 thread: type: object @@ -224272,9 +224545,9 @@ webhooks: type: string enum: - unresolved - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 pull_request: title: Simple Pull Request type: object @@ -224774,6 +225047,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -225357,6 +225634,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -226388,7 +226669,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *829 + repository: *830 sender: *4 thread: type: object @@ -226787,10 +227068,10 @@ webhooks: type: string before: type: string - enterprise: *826 - installation: *827 - number: *878 - organization: *828 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -227296,6 +227577,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -227942,6 +228227,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -229125,7 +229414,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -229207,11 +229496,11 @@ webhooks: type: string enum: - unassigned - assignee: *884 - enterprise: *826 - installation: *827 - number: *878 - organization: *828 + assignee: *885 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -229719,6 +230008,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -230369,6 +230662,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -231561,7 +231858,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -231640,11 +231937,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *826 - installation: *827 - label: *847 - number: *878 - organization: *828 + enterprise: *827 + installation: *828 + label: *848 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -232150,6 +232447,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -232800,6 +233101,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -233983,7 +234288,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -234064,10 +234369,10 @@ webhooks: type: string enum: - unlocked - enterprise: *826 - installation: *827 - number: *878 - organization: *828 + enterprise: *827 + installation: *828 + number: *879 + organization: *829 pull_request: title: Pull Request type: object @@ -234569,6 +234874,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -235217,6 +235526,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -236396,7 +236709,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *829 + repository: *830 sender: *4 required: - action @@ -236599,7 +236912,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *826 + enterprise: *827 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -236694,8 +237007,8 @@ webhooks: - url - author - committer - installation: *827 - organization: *828 + installation: *828 + organization: *829 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -236863,6 +237176,10 @@ webhooks: description: Whether discussions are enabled. type: boolean default: false + has_pull_requests: + description: Whether pull requests are enabled. + type: boolean + default: true homepage: type: - string @@ -237283,9 +237600,9 @@ webhooks: type: string enum: - published - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 registry_package: type: object properties: @@ -237762,7 +238079,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *867 + items: *868 summary: type: string tag_name: @@ -237818,7 +238135,7 @@ webhooks: - owner - package_version - registry - repository: *829 + repository: *830 sender: *4 required: - action @@ -237896,9 +238213,9 @@ webhooks: type: string enum: - updated - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 registry_package: type: object properties: @@ -238210,7 +238527,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *867 + items: *868 summary: type: string tag_name: @@ -238260,7 +238577,7 @@ webhooks: - owner - package_version - registry - repository: *829 + repository: *830 sender: *4 required: - action @@ -238337,10 +238654,10 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - release: &885 + enterprise: *827 + installation: *828 + organization: *829 + release: &886 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -238671,7 +238988,7 @@ webhooks: - updated_at - zipball_url - body - repository: *829 + repository: *830 sender: *4 required: - action @@ -238748,11 +239065,11 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - release: *885 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + release: *886 + repository: *830 sender: *4 required: - action @@ -238869,11 +239186,11 @@ webhooks: type: boolean required: - to - enterprise: *826 - installation: *827 - organization: *828 - release: *885 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + release: *886 + repository: *830 sender: *4 required: - action @@ -238951,9 +239268,9 @@ webhooks: type: string enum: - prereleased - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -239289,7 +239606,7 @@ webhooks: - string - 'null' format: uri - repository: *829 + repository: *830 sender: *4 required: - action @@ -239365,10 +239682,10 @@ webhooks: type: string enum: - published - enterprise: *826 - installation: *827 - organization: *828 - release: &886 + enterprise: *827 + installation: *828 + organization: *829 + release: &887 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -239701,7 +240018,7 @@ webhooks: - string - 'null' format: uri - repository: *829 + repository: *830 sender: *4 required: - action @@ -239777,11 +240094,11 @@ webhooks: type: string enum: - released - enterprise: *826 - installation: *827 - organization: *828 - release: *885 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + release: *886 + repository: *830 sender: *4 required: - action @@ -239857,11 +240174,11 @@ webhooks: type: string enum: - unpublished - enterprise: *826 - installation: *827 - organization: *828 - release: *886 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + release: *887 + repository: *830 sender: *4 required: - action @@ -239937,11 +240254,11 @@ webhooks: type: string enum: - published - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - repository_advisory: *725 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + repository_advisory: *726 sender: *4 required: - action @@ -240017,11 +240334,11 @@ webhooks: type: string enum: - reported - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - repository_advisory: *725 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + repository_advisory: *726 sender: *4 required: - action @@ -240097,10 +240414,10 @@ webhooks: type: string enum: - archived - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240177,10 +240494,10 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240258,10 +240575,10 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240346,10 +240663,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240464,10 +240781,10 @@ webhooks: - 'null' items: type: string - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240539,10 +240856,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 status: type: string @@ -240623,10 +240940,10 @@ webhooks: type: string enum: - privatized - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240703,10 +241020,10 @@ webhooks: type: string enum: - publicized - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240800,10 +241117,10 @@ webhooks: - name required: - repository - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -240883,10 +241200,10 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 repository_ruleset: *185 sender: *4 required: @@ -240965,10 +241282,10 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 repository_ruleset: *185 sender: *4 required: @@ -241047,10 +241364,10 @@ webhooks: type: string enum: - edited - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 repository_ruleset: *185 changes: type: object @@ -241112,16 +241429,16 @@ webhooks: properties: added: type: array - items: *693 + items: *694 deleted: type: array - items: *693 + items: *694 updated: type: array items: type: object properties: - rule: *693 + rule: *694 changes: type: object properties: @@ -241358,10 +241675,10 @@ webhooks: - from required: - owner - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -241439,10 +241756,10 @@ webhooks: type: string enum: - unarchived - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -241520,7 +241837,7 @@ webhooks: type: string enum: - create - alert: &887 + alert: &888 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -241645,10 +241962,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -241858,10 +242175,10 @@ webhooks: type: string enum: - dismissed - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -241939,11 +242256,11 @@ webhooks: type: string enum: - reopen - alert: *887 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *888 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242145,10 +242462,10 @@ webhooks: enum: - fixed - open - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242226,7 +242543,7 @@ webhooks: type: string enum: - assigned - alert: &888 + alert: &889 type: object properties: number: *124 @@ -242341,10 +242658,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242422,11 +242739,11 @@ webhooks: type: string enum: - created - alert: *888 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *889 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242507,11 +242824,11 @@ webhooks: type: string enum: - created - alert: *888 - installation: *827 - location: *889 - organization: *828 - repository: *829 + alert: *889 + installation: *828 + location: *890 + organization: *829 + repository: *830 sender: *4 required: - location @@ -242749,11 +243066,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *888 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *889 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242831,11 +243148,11 @@ webhooks: type: string enum: - reopened - alert: *888 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *889 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242913,11 +243230,11 @@ webhooks: type: string enum: - resolved - alert: *888 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *889 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -242995,12 +243312,12 @@ webhooks: type: string enum: - unassigned - alert: *888 + alert: *889 assignee: *4 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -243078,11 +243395,11 @@ webhooks: type: string enum: - validated - alert: *888 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + alert: *889 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -243212,10 +243529,10 @@ webhooks: - organization - enterprise - - repository: *829 - enterprise: *826 - installation: *827 - organization: *828 + repository: *830 + enterprise: *827 + installation: *828 + organization: *829 sender: *4 required: - action @@ -243293,11 +243610,11 @@ webhooks: type: string enum: - published - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - security_advisory: &890 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + security_advisory: &891 description: The details of the security advisory, including summary, description, and severity. type: object @@ -243483,11 +243800,11 @@ webhooks: type: string enum: - updated - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 - security_advisory: *890 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 + security_advisory: *891 sender: *4 required: - action @@ -243560,10 +243877,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -243750,9 +244067,9 @@ webhooks: type: object properties: security_and_analysis: *404 - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: *445 sender: *4 required: @@ -243831,12 +244148,12 @@ webhooks: type: string enum: - cancelled - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: &891 + sponsorship: &892 type: object properties: created_at: @@ -244141,12 +244458,12 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: *891 + sponsorship: *892 required: - action - sponsorship @@ -244234,12 +244551,12 @@ webhooks: type: string required: - from - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: *891 + sponsorship: *892 required: - action - changes @@ -244316,17 +244633,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &892 + effective_date: &893 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: *891 + sponsorship: *892 required: - action - sponsorship @@ -244400,7 +244717,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &893 + changes: &894 type: object properties: tier: @@ -244444,13 +244761,13 @@ webhooks: - from required: - tier - effective_date: *892 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + effective_date: *893 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: *891 + sponsorship: *892 required: - action - changes @@ -244527,13 +244844,13 @@ webhooks: type: string enum: - tier_changed - changes: *893 - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + changes: *894 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - sponsorship: *891 + sponsorship: *892 required: - action - changes @@ -244607,10 +244924,10 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -244694,10 +245011,10 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -245131,15 +245448,15 @@ webhooks: type: - string - 'null' - enterprise: *826 + enterprise: *827 id: description: The unique identifier of the status. type: integer - installation: *827 + installation: *828 name: type: string - organization: *828 - repository: *829 + organization: *829 + repository: *830 sender: *4 sha: description: The Commit SHA. @@ -245255,9 +245572,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -245347,9 +245664,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -245439,9 +245756,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -245531,9 +245848,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *213 - installation: *827 - organization: *828 - repository: *829 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -245610,12 +245927,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - team: &894 + team: &895 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -245845,9 +246162,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: title: Repository description: A git repository @@ -246317,7 +246634,7 @@ webhooks: - topics - visibility sender: *4 - team: *894 + team: *895 required: - action - team @@ -246393,9 +246710,9 @@ webhooks: type: string enum: - created - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: title: Repository description: A git repository @@ -246865,7 +247182,7 @@ webhooks: - topics - visibility sender: *4 - team: *894 + team: *895 required: - action - team @@ -246942,9 +247259,9 @@ webhooks: type: string enum: - deleted - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: title: Repository description: A git repository @@ -247414,7 +247731,7 @@ webhooks: - topics - visibility sender: *4 - team: *894 + team: *895 required: - action - team @@ -247558,9 +247875,9 @@ webhooks: - from required: - permissions - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: title: Repository description: A git repository @@ -248030,7 +248347,7 @@ webhooks: - topics - visibility sender: *4 - team: *894 + team: *895 required: - action - changes @@ -248108,9 +248425,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *826 - installation: *827 - organization: *828 + enterprise: *827 + installation: *828 + organization: *829 repository: title: Repository description: A git repository @@ -248580,7 +248897,7 @@ webhooks: - topics - visibility sender: *4 - team: *894 + team: *895 required: - action - team @@ -248656,10 +248973,10 @@ webhooks: type: string enum: - started - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 required: - action @@ -248732,17 +249049,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *826 + enterprise: *827 inputs: type: - object - 'null' additionalProperties: true - installation: *827 - organization: *828 + installation: *828 + organization: *829 ref: type: string - repository: *829 + repository: *830 sender: *4 workflow: type: string @@ -248824,10 +249141,10 @@ webhooks: type: string enum: - completed - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 workflow_job: allOf: @@ -249162,10 +249479,10 @@ webhooks: type: string enum: - in_progress - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 workflow_job: allOf: @@ -249526,10 +249843,10 @@ webhooks: type: string enum: - queued - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 workflow_job: type: object @@ -249754,10 +250071,10 @@ webhooks: type: string enum: - waiting - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 workflow_job: type: object @@ -249984,12 +250301,12 @@ webhooks: type: string enum: - completed - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - workflow: *843 + workflow: *844 workflow_run: title: Workflow Run type: object @@ -251008,12 +251325,12 @@ webhooks: type: string enum: - in_progress - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - workflow: *843 + workflow: *844 workflow_run: title: Workflow Run type: object @@ -252017,12 +252334,12 @@ webhooks: type: string enum: - requested - enterprise: *826 - installation: *827 - organization: *828 - repository: *829 + enterprise: *827 + installation: *828 + organization: *829 + repository: *830 sender: *4 - workflow: *843 + workflow: *844 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index d3d5c2c64..36701c6ca 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -9147,6 +9147,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -27760,6 +27768,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -28813,6 +28829,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -80858,6 +80882,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -84268,6 +84300,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -85892,6 +85932,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -86302,6 +86535,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -102910,6 +103146,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -105559,6 +105803,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -113040,6 +113292,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -116450,6 +116710,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -118074,6 +118342,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -118484,6 +118945,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -121921,6 +122385,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -122200,6 +122667,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -123257,6 +123736,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -123536,6 +124018,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -133659,6 +134153,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -135447,6 +135949,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -138388,6 +138898,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -138667,6 +139180,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -141009,6 +141534,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -142062,6 +142595,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -144593,6 +145134,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -144872,6 +145416,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -146338,6 +146894,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -146617,6 +147176,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -161496,6 +162067,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -161775,6 +162349,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -164602,6 +165188,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -164881,6 +165470,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -175209,6 +175810,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -175488,6 +176092,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -178160,6 +178776,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -178439,6 +179058,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -181389,6 +182020,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -184799,6 +185438,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -186423,6 +187070,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -186833,6 +187673,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -201191,6 +202034,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -203884,6 +204735,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -204163,6 +205017,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -206254,6 +207120,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -206533,6 +207402,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -210279,6 +211160,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -211814,6 +212703,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -213376,6 +214273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -214694,6 +215599,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -214973,6 +215881,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -215150,6 +216070,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -219770,6 +220693,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -220049,6 +220975,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -221094,6 +222032,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -221373,6 +222314,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224444,6 +225397,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -224723,6 +225679,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -224900,6 +225868,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -226694,6 +227665,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -226973,6 +227947,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -227150,6 +228136,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -232723,6 +233712,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -235832,6 +236829,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -236977,6 +237982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -243303,6 +244316,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -246412,6 +247433,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -247557,6 +248586,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -259508,6 +260545,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -259787,6 +260827,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -259964,6 +261016,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -260780,6 +261835,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -261548,6 +262609,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -262848,6 +263917,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -263797,6 +264874,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -264212,6 +265297,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -281108,6 +282205,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -281387,6 +282487,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -289219,6 +290331,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -289498,6 +290613,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -289675,6 +290802,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -292859,6 +293989,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -293627,6 +294763,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -294927,6 +296071,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -295876,6 +297028,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -296291,6 +297451,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -296903,6 +298075,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -297868,6 +299043,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -298636,6 +299817,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -299936,6 +301125,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -300885,6 +302082,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -301300,6 +302505,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -308290,6 +309507,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -309352,6 +310577,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -312284,6 +313517,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -312563,6 +313799,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -313153,6 +314401,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -313432,6 +314683,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -315136,6 +316399,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -315415,6 +316681,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -316005,6 +317283,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -316284,6 +317565,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -318818,6 +320111,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -319097,6 +320393,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -319687,6 +320995,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -319966,6 +321277,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -326965,6 +328288,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -327244,6 +328570,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -327834,6 +329172,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -328113,6 +329454,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -366801,6 +368154,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -367080,6 +368436,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -368735,6 +370103,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -369014,6 +370385,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -370179,6 +371562,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -370458,6 +371844,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -371961,6 +373359,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -372240,6 +373641,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -387260,6 +388673,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -387539,6 +388955,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -389373,6 +390801,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -389652,6 +391083,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -391122,6 +392565,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -391401,6 +392847,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -394896,6 +396354,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -395175,6 +396636,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -403454,6 +404927,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -404599,6 +406080,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409761,6 +411250,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -410040,6 +411532,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -411134,6 +412638,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -411413,6 +412920,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -440301,6 +441820,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -443711,6 +445238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -445335,6 +446870,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -445745,6 +447473,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -449087,6 +450818,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -449366,6 +451100,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -450299,6 +452045,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -451067,6 +452819,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -452367,6 +454127,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -453316,6 +455084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -453731,6 +455507,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -465673,6 +467461,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -465952,6 +467743,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -467180,6 +468983,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -467459,6 +469265,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -470278,6 +472096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -473661,6 +475487,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475804,6 +477638,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -476738,6 +478765,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -477610,6 +479830,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -477800,6 +480213,1378 @@ } } }, + "/repos/{owner}/{repo}/issues/comments/{comment_id}/pin": { + "put": { + "summary": "Pin an issue comment", + "description": "You can use the REST API to pin comments on issues.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "tags": [ + "issues" + ], + "operationId": "issues/pin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "type": "integer", + "format": "int64", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repositories/42/issues/comments/1" + ] + }, + "body": { + "description": "Contents of the issue comment", + "type": "string", + "examples": [ + "What version of Safari were you using when you observed this bug?" + ] + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ], + "examples": [ + "OWNER" + ] + }, + "performed_via_github_app": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "type": "integer", + "examples": [ + 37 + ] + }, + "slug": { + "description": "The slug name of the GitHub app", + "type": "string", + "examples": [ + "probot-owners" + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDExOkludGVncmF0aW9uMQ==" + ] + }, + "client_id": { + "type": "string", + "examples": [ + "\"Iv1.25b5d1e65ffc4022\"" + ] + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "html_url", + "issue_url", + "user", + "url", + "created_at", + "updated_at" + ] + }, + "examples": { + "default": { + "value": { + "id": 1, + "node_id": "MDEyOklzc3VlQ29tbWVudDE=", + "url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1", + "html_url": "https://github.com/octocat/Hello-World/issues/1347#issuecomment-1", + "body": "Me too", + "user": { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2011-04-14T16:00:49Z", + "updated_at": "2011-04-14T16:00:49Z", + "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", + "author_association": "COLLABORATOR" + } + } + } + } + } + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + }, + "delete": { + "summary": "Unpin an issue comment", + "description": "You can use the REST API to unpin comments on issues.", + "tags": [ + "issues" + ], + "operationId": "issues/unpin-comment", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "comment_id", + "description": "The unique identifier of the comment.", + "in": "path", + "required": true, + "schema": { + "type": "integer", + "format": "int64" + } + } + ], + "responses": { + "204": { + "description": "Response" + }, + "401": { + "description": "Requires authentication", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "410": { + "description": "Gone", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "issues", + "subcategory": "comments" + } + } + }, "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": { "get": { "summary": "List reactions for an issue comment", @@ -481238,6 +485023,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -486223,6 +490016,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -491004,6 +494805,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -494370,6 +498179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -497736,6 +501553,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -500899,6 +504724,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -502861,6 +506694,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -503516,261 +507542,454 @@ "type", "url" ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": [ - "string", - "null" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/enterprises/octo-business" - ] - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": [ - "string", - "null" - ], - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "type": "integer", - "examples": [ - 42 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - ] - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "examples": [ - "Octo Business" - ] - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "examples": [ - "octo-business" - ] - }, - "created_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:01:12Z" - ] - }, - "updated_at": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "examples": [ - "2019-01-26T19:14:43Z" - ] - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": [ + "string", + "null" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/enterprises/octo-business" + ] + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": [ + "string", + "null" + ], + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "type": "integer", + "examples": [ + 42 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + ] + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "examples": [ + "Octo Business" + ] + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "examples": [ + "octo-business" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:01:12Z" + ] + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "examples": [ + "2019-01-26T19:14:43Z" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "type": "string", + "examples": [ + "Probot Owners" + ] + }, + "description": { + "type": [ + "string", + "null" + ], + "examples": [ + "The description of the app." + ] + }, + "external_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://example.com" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/apps/super-ci" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "updated_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2017-07-08T16:18:44-04:00" + ] + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "type": "array", + "items": { + "type": "string" + }, + "examples": [ + "label", + "deployment" + ] + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "type": "integer", + "examples": [ + 5 + ] + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + } + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] } ] - }, - "name": { - "description": "The name of the GitHub app", - "type": "string", - "examples": [ - "Probot Owners" - ] - }, - "description": { - "type": [ - "string", - "null" - ], - "examples": [ - "The description of the app." - ] - }, - "external_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://example.com" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/apps/super-ci" - ] - }, - "created_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "updated_at": { - "type": "string", - "format": "date-time", - "examples": [ - "2017-07-08T16:18:44-04:00" - ] - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "type": "array", - "items": { - "type": "string" - }, - "examples": [ - "label", - "deployment" - ] - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "type": "integer", - "examples": [ - 5 - ] } }, "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" + "pinned_at", + "pinned_by" ] } ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "pin": { - "anyOf": [ - { - "type": "null" - } - ] } }, "required": [ @@ -506065,6 +510284,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -509315,6 +513542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -512649,6 +516884,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -516005,6 +520248,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -532520,6 +536771,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -536923,6 +541182,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -540183,6 +544450,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -543411,6 +547686,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -546744,6 +551027,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -558368,6 +562659,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -560582,6 +565066,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -571187,6 +575679,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -571466,6 +575961,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -578110,6 +582617,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -579255,6 +583770,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -582878,6 +587401,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -584016,6 +588547,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -591104,6 +595643,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -592242,6 +596789,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -596133,6 +600688,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -597271,6 +601834,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -600014,6 +604585,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -600293,6 +604867,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -601763,6 +606349,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -602042,6 +606631,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -609383,6 +613984,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -610528,6 +615137,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -614237,6 +618854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -615382,6 +620007,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -659493,6 +664126,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -660261,6 +664900,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -661561,6 +666208,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -662510,6 +667165,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -662925,6 +667588,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -668824,6 +673499,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -669103,6 +673781,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -670279,6 +674969,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -671047,6 +675743,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -672347,6 +677051,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -673296,6 +678008,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -673711,6 +678431,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -674894,6 +679626,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -675173,6 +679908,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -687498,6 +692245,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -687777,6 +692527,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -689135,6 +693897,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -689414,6 +694179,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -691709,6 +696486,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -693651,6 +698436,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -699350,6 +704138,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -699629,6 +704420,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -699806,6 +704609,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -705304,6 +710110,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -705583,6 +710392,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -707608,6 +712429,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -707887,6 +712711,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -709357,6 +714193,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -709636,6 +714475,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -711415,6 +716266,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -711694,6 +716548,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -713520,6 +718386,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -713799,6 +718668,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -715441,6 +720322,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -715720,6 +720604,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -718269,6 +723165,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -719037,6 +723939,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -720337,6 +725247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -721286,6 +726204,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -721701,6 +726627,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -723815,6 +728753,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -724094,6 +729035,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -725824,6 +730777,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -726103,6 +731059,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -727568,6 +732536,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -727847,6 +732818,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -733519,6 +738502,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -736629,6 +741620,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -742071,6 +747070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743668,6 +748675,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745243,6 +750258,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -746720,6 +751743,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -746999,6 +752025,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -747176,6 +752214,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -748306,6 +753347,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -748585,6 +753629,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -749569,6 +754625,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -749848,6 +754907,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -752166,6 +757237,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -753501,6 +758580,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -754269,6 +759354,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -755569,6 +760662,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756518,6 +761619,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756933,6 +762042,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -758362,6 +763483,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -758641,6 +763765,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -761697,6 +766833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -762790,6 +767934,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -764202,6 +769354,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -764481,6 +769636,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -764658,6 +769825,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -768438,6 +773608,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -771547,6 +776725,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -772692,6 +777878,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777607,6 +782801,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -777886,6 +783083,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -780836,6 +786045,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -784246,6 +789463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -785870,6 +791095,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -786280,6 +791698,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -791762,6 +797183,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -795172,6 +800601,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -796796,6 +802233,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -797206,6 +802836,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -802698,6 +808331,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -806108,6 +811749,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -807732,6 +813381,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -808142,6 +813984,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -814927,6 +820772,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -815206,6 +821054,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -816251,6 +822111,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -816530,6 +822393,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -824958,6 +830833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -828067,6 +833950,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -829212,6 +835103,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840347,6 +846246,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -843757,6 +849664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -845381,6 +851296,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -845791,6 +851899,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -851269,6 +857380,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854679,6 +860798,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -856303,6 +862430,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -856713,6 +863033,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "forks_count": { "type": "integer" }, @@ -860079,6 +866402,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -860358,6 +866684,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -860535,6 +866873,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -861560,6 +867901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -862518,6 +868867,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -863503,6 +869860,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -863782,6 +870142,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -863959,6 +870331,9 @@ }, "secret_scanning_validity_checks": { "status": "disabled" + }, + "secret_scanning_delegated_alert_dismissal": { + "status": "disabled" } } } @@ -865269,6 +871644,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -867247,6 +873630,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -869225,6 +875616,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -871383,6 +877782,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873709,6 +880116,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875867,6 +882282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -878253,6 +884676,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -880639,6 +887070,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -883025,6 +889464,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885452,6 +891899,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888301,6 +894756,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -888580,6 +895038,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -890530,6 +897000,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893275,6 +899753,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -893554,6 +900035,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -895504,6 +901997,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -898249,6 +904750,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -898528,6 +905032,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -900478,6 +906994,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -903236,6 +909760,9 @@ "has_discussions": { "type": "boolean" }, + "has_pull_requests": { + "type": "boolean" + }, "archived": { "type": "boolean" }, @@ -903515,6 +910042,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -905465,6 +912004,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -908566,6 +915113,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -911356,6 +917911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -914140,6 +920703,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916610,6 +923181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -919207,6 +925786,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -921629,6 +928216,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -924137,6 +930732,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -926563,6 +933166,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928931,6 +935542,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -931395,6 +938014,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -933611,6 +940238,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935610,6 +942245,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -939757,6 +946400,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -941921,6 +948572,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944717,6 +951376,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -947512,6 +954179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -950307,6 +956982,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -953102,6 +959785,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -955897,6 +962588,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -958692,6 +965391,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -961487,6 +968194,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963518,6 +970233,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -965549,6 +972272,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -968184,6 +974915,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -972821,6 +979560,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -973959,6 +980706,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -975904,6 +982659,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978063,6 +984826,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -981184,6 +987955,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984243,6 +991022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -988762,6 +995549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992385,6 +999180,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -994922,6 +1001725,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997396,6 +1004207,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1000086,6 +1006905,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002777,6 +1009604,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005487,6 +1012322,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1007962,6 +1014805,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010435,6 +1017286,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1012935,6 +1019794,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1015451,6 +1022318,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017925,6 +1024800,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1020398,6 +1027281,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1022871,6 +1029762,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025133,6 +1032032,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1027336,6 +1034243,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1029912,6 +1036827,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032428,6 +1039351,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034902,6 +1041833,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1037375,6 +1044314,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1039354,6 +1046301,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041740,6 +1048695,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1044167,6 +1051130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1046553,6 +1053524,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1048939,6 +1055918,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1051366,6 +1058353,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1053752,6 +1060747,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1056138,6 +1063141,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058524,6 +1065535,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1060951,6 +1067970,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063378,6 +1070405,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1065764,6 +1072799,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1068150,6 +1075193,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1070536,6 +1077587,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1072963,6 +1080022,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1076323,6 +1083390,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1078615,6 +1085690,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1081640,6 +1088723,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084763,6 +1091854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1087791,6 +1094890,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1090846,6 +1097953,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094015,6 +1101130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1097150,6 +1104273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1099286,6 +1106417,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102314,6 +1109453,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103719,6 +1110866,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] }, @@ -1106631,6 +1113971,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1108129,6 +1115477,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1110940,6 +1118481,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112456,6 +1120005,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1115267,6 +1123009,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116766,6 +1124516,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1119584,6 +1127527,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1121082,6 +1129033,199 @@ "anyOf": [ { "type": "null" + }, + { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "examples": [ + "2011-04-14T16:00:49Z" + ] + }, + "pinned_by": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + } + ] + } + }, + "required": [ + "pinned_at", + "pinned_by" + ] } ] } @@ -1123900,6 +1132044,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1126800,6 +1134952,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129721,6 +1137881,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131329,6 +1139497,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1132581,6 +1140757,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1135480,6 +1143664,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1138401,6 +1146593,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1140009,6 +1148209,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1141261,6 +1149469,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144160,6 +1152376,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1145768,6 +1153992,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1148030,6 +1156262,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1149941,6 +1158181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1152840,6 +1161088,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1154448,6 +1162704,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1156710,6 +1164974,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1158621,6 +1166893,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1162159,6 +1170439,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1165819,6 +1174107,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1169250,6 +1177546,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1172875,6 +1181179,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1176383,6 +1184695,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179861,6 +1188181,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183300,6 +1191628,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1186923,6 +1195259,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189415,6 +1197759,11 @@ "description": "Whether the repository has discussions enabled.", "type": "boolean" }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -1192430,6 +1200779,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1195860,6 +1204217,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1199295,6 +1207660,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1201826,6 +1210199,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1204814,6 +1213192,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1208319,6 +1216705,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1211858,6 +1220252,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1215338,6 +1223740,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1218775,6 +1227185,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1222205,6 +1230623,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1225709,6 +1234135,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1227732,6 +1236166,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1229753,6 +1238195,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1231817,6 +1240267,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1234040,6 +1242498,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1236265,6 +1244731,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238487,6 +1246961,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1240704,6 +1249186,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1242925,6 +1251415,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245036,6 +1253534,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247151,6 +1255657,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1249232,6 +1257746,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1251312,6 +1259834,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1253527,6 +1262057,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255682,6 +1264220,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257705,6 +1266251,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1259812,6 +1268366,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261987,6 +1270549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1264158,6 +1272728,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1266330,6 +1274908,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1268544,6 +1277130,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1270716,6 +1279310,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1272795,6 +1281397,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1274874,6 +1283484,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1278936,6 +1287554,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1281061,6 +1289687,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1283206,6 +1291840,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285432,6 +1294074,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1287571,6 +1296221,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1290450,6 +1299108,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1293074,6 +1301740,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295199,6 +1303873,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1300558,6 +1309240,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1302893,6 +1311583,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1305040,6 +1313738,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1307195,6 +1315901,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309365,6 +1318079,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311645,6 +1320367,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1313795,6 +1322525,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1315826,6 +1324564,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1317861,6 +1326607,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1319909,6 +1328663,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321940,6 +1330702,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1324090,6 +1332860,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1326245,6 +1335023,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1328426,6 +1337212,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1330575,6 +1339369,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1345791,6 +1354593,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1347683,6 +1356493,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1348518,6 +1357333,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1350955,6 +1359775,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1352732,6 +1361560,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "has_pages": { "type": "boolean" }, @@ -1353574,6 +1362407,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1356013,6 +1364851,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357803,6 +1366649,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1358632,6 +1367483,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1361071,6 +1369927,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1364260,6 +1373124,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1365398,6 +1374270,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1367402,6 +1376282,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1370591,6 +1379479,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371729,6 +1380625,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373733,6 +1382637,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1375814,6 +1384726,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1376643,6 +1385560,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1379068,6 +1387990,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1380856,6 +1389786,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1381685,6 +1390620,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1384129,6 +1393069,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1387380,6 +1396328,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388518,6 +1397474,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1390522,6 +1399486,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1392311,6 +1401283,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1393140,6 +1402117,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1395567,6 +1404549,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1397402,6 +1406392,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1398237,6 +1407232,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1400675,6 +1409675,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1402466,6 +1411474,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1403301,6 +1412314,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1405738,6 +1414756,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1407819,6 +1416845,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1408648,6 +1417679,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1411073,6 +1420109,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1414261,6 +1423305,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415399,6 +1424451,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1417403,6 +1426463,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420592,6 +1429660,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1421730,6 +1430806,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1423734,6 +1432818,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1426923,6 +1436015,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428061,6 +1437161,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1430065,6 +1439173,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1432226,6 +1441342,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1433043,6 +1442164,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1435345,6 +1444471,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1437501,6 +1446635,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1438318,6 +1447457,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1440610,6 +1449754,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1442787,6 +1451939,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1443604,6 +1452761,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1445897,6 +1455059,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1447683,6 +1456853,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1448500,6 +1457675,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1450804,6 +1459984,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1455845,6 +1465033,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1457853,6 +1467049,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1458682,6 +1467883,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1461125,6 +1470331,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1462927,6 +1472141,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1463756,6 +1472975,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1466199,6 +1475423,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1468143,6 +1477375,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1468972,6 +1478209,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1471408,6 +1480650,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1473213,6 +1482463,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1474042,6 +1483297,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1476469,6 +1485729,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1478392,6 +1487660,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1479212,6 +1488485,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1481517,6 +1490795,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1483512,6 +1492798,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1484293,6 +1493584,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1486558,6 +1495854,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1488737,6 +1498041,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1489512,6 +1498821,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1491766,6 +1501080,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1493959,6 +1503281,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1494788,6 +1504115,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1497225,6 +1506557,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1499122,6 +1508462,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1499957,6 +1509302,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1502395,6 +1511745,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1504229,6 +1513587,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1505064,6 +1514427,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1507501,6 +1516869,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1509288,6 +1518664,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1510120,6 +1519501,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1512545,6 +1521931,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1514137,6 +1523531,11 @@ "type": "boolean", "default": false }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "type": "boolean", + "default": true + }, "homepage": { "type": [ "string", @@ -1516802,6 +1526201,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1519329,6 +1528736,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1521752,6 +1531167,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1524176,6 +1533599,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1526653,6 +1536084,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1529083,6 +1538522,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1531509,6 +1540956,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1533932,6 +1543387,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1536358,6 +1545821,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1538336,6 +1547807,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1542305,6 +1551784,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1546274,6 +1555761,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1548253,6 +1557748,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1550232,6 +1559735,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1552219,6 +1561730,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1554256,6 +1563775,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1556229,6 +1565756,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1558214,6 +1567749,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1560193,6 +1569736,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1562199,6 +1571750,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1564179,6 +1573738,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1567480,6 +1577047,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1570781,6 +1580356,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1577180,6 +1586763,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1579160,6 +1588751,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1581312,6 +1590911,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1583474,6 +1593081,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1585625,6 +1595240,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1587776,6 +1597399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1590767,6 +1600398,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1593590,6 +1603229,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1596671,6 +1606318,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1599670,6 +1609325,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1602493,6 +1612156,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1605316,6 +1614987,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1608307,6 +1617986,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1611130,6 +1620817,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1612954,6 +1622649,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1615148,6 +1624851,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1617351,6 +1627062,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1619554,6 +1629273,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1620767,6 +1630494,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } } @@ -1621583,6 +1631322,12 @@ true ] }, + "has_pull_requests": { + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "type": "boolean" }, @@ -1622351,6 +1632096,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1623651,6 +1633404,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1624600,6 +1634361,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1625015,6 +1634784,18 @@ ] } } + }, + "secret_scanning_delegated_alert_dismissal": { + "type": "object", + "properties": { + "status": { + "type": "string", + "enum": [ + "enabled", + "disabled" + ] + } + } } } }, @@ -1626466,6 +1636247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1628767,6 +1638556,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1631085,6 +1640882,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1633391,6 +1643196,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1635755,6 +1645568,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1638116,6 +1647937,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1640418,6 +1650247,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1642404,6 +1652241,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1644886,6 +1654731,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1647818,6 +1657671,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1649426,6 +1659287,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1651688,6 +1661557,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1653599,6 +1663476,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1656500,6 +1666385,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1658108,6 +1668001,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1660370,6 +1670271,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1662281,6 +1672190,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1665182,6 +1675099,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1666790,6 +1676715,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1669052,6 +1678985,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1670963,6 +1680904,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1673864,6 +1683813,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1675472,6 +1685429,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1677734,6 +1687699,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1679645,6 +1689618,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1681619,6 +1691600,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1690410,6 +1700399,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1692391,6 +1702388,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1694372,6 +1704377,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1697407,6 +1707420,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1700480,6 +1710501,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "examples": [ + true + ] + }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1703376,6 +1713405,14 @@ true ] }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "{"code":"deadline_exceeded","msg":"operation timed out"}