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 ca430e05e..bfc163337 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 @@ -54056,6 +54056,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -111365,6 +111416,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -115778,6 +115835,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -117410,6 +117473,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -119855,6 +119924,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -123336,6 +123411,79 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -261631,6 +261779,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -288609,7 +288763,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -288663,7 +288818,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -288702,7 +288858,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -290080,7 +290237,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -290117,7 +290275,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -295006,6 +295165,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", 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 15055fac6..8412aa07d 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 @@ -39154,6 +39154,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80804,6 +80840,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -83987,6 +84027,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85206,6 +85250,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -86889,6 +86937,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -89291,6 +89343,57 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -192020,6 +192123,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -214550,6 +214657,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -214592,6 +214700,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -214621,6 +214730,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -215660,6 +215770,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -215688,6 +215799,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -219982,6 +220094,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index ca430e05e..bfc163337 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -54056,6 +54056,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -111365,6 +111416,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -115778,6 +115835,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -117410,6 +117473,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -119855,6 +119924,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -123336,6 +123411,79 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -261631,6 +261779,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -288609,7 +288763,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -288663,7 +288818,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -288702,7 +288858,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -290080,7 +290237,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -290117,7 +290275,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -295006,6 +295165,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 15055fac6..8412aa07d 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -39154,6 +39154,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80804,6 +80840,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -83987,6 +84027,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85206,6 +85250,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -86889,6 +86937,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -89291,6 +89343,57 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -192020,6 +192123,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -214550,6 +214657,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -214592,6 +214700,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -214621,6 +214730,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -215660,6 +215770,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -215688,6 +215799,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -219982,6 +220094,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh 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 ca6168549..50233a3ad 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 @@ -208686,6 +208686,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -227761,6 +227767,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -266338,6 +266350,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -273301,6 +273319,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -279498,6 +279522,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -280210,6 +280240,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -280954,6 +280990,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -283151,6 +283193,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283208,7 +283256,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -283373,6 +283422,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283430,7 +283485,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -283884,6 +283940,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283926,7 +283988,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -309969,6 +310032,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -310028,7 +310097,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -310388,6 +310458,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -310448,7 +310524,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -311741,6 +311818,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -312053,6 +312136,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -381012,6 +381101,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -386580,6 +386675,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -424952,6 +425053,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -461582,6 +461689,280 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "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" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -492530,6 +492911,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -1263953,6 +1264340,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ 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 f0548c26d..41d3354a0 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 @@ -1054,7 +1054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &526 + - &527 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11210,7 +11210,7 @@ paths: url: type: string format: uri - user: &549 + user: &550 title: Public User description: Public User type: object @@ -15734,7 +15734,7 @@ paths: type: array items: *88 examples: - default: &566 + default: &567 value: - login: github id: 1 @@ -16970,7 +16970,7 @@ paths: type: array items: *57 examples: - default: &560 + default: &561 value: total_count: 1 repositories: @@ -17787,7 +17787,7 @@ paths: type: array items: *108 examples: - default: &552 + default: &553 value: total_count: 1 repositories: @@ -28185,7 +28185,7 @@ paths: parameters: - *89 - *182 - - &565 + - &566 name: repo_name description: repo_name parameter in: path @@ -29222,7 +29222,7 @@ paths: - nuget - container - *89 - - &567 + - &568 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -29263,7 +29263,7 @@ paths: default: *189 '403': *27 '401': *23 - '400': &569 + '400': &570 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34381,7 +34381,7 @@ paths: application/json: schema: type: array - items: &524 + items: &525 description: A repository security advisory. type: object properties: @@ -34700,7 +34700,7 @@ paths: - private_fork additionalProperties: false examples: - default: &525 + default: &526 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -35174,7 +35174,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &584 type: object properties: total_minutes_used: @@ -35244,7 +35244,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &584 + default: &585 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -35280,7 +35280,7 @@ paths: description: Response content: application/json: - schema: &585 + schema: &586 type: object properties: total_gigabytes_bandwidth_used: @@ -35298,7 +35298,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &586 + default: &587 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -35330,7 +35330,7 @@ paths: description: Response content: application/json: - schema: &587 + schema: &588 type: object properties: days_left_in_billing_cycle: @@ -35348,7 +35348,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &588 + default: &589 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -36352,7 +36352,7 @@ paths: - updated_at - url examples: - default: &539 + default: &540 value: - author: login: octocat @@ -36600,7 +36600,7 @@ paths: application/json: schema: *228 examples: - default: &540 + default: &541 value: author: login: octocat @@ -36791,7 +36791,7 @@ paths: - updated_at - url examples: - default: &541 + default: &542 value: - author: login: octocat @@ -37017,7 +37017,7 @@ paths: application/json: schema: *231 examples: - default: &542 + default: &543 value: author: login: octocat @@ -37635,7 +37635,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &543 + response-if-user-is-a-team-maintainer: &544 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -37700,7 +37700,7 @@ paths: application/json: schema: *238 examples: - response-if-users-membership-with-team-is-now-pending: &544 + response-if-users-membership-with-team-is-now-pending: &545 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -37843,7 +37843,7 @@ paths: - updated_at - permissions examples: - default: &545 + default: &546 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37920,7 +37920,7 @@ paths: application/json: schema: *239 examples: - default: &546 + default: &547 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -38124,7 +38124,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &547 + schema: &548 title: Team Repository description: A team's access to a repository. type: object @@ -38853,7 +38853,7 @@ paths: type: array items: *172 examples: - response-if-child-teams-exist: &548 + response-if-child-teams-exist: &549 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47600,6 +47600,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -50813,7 +50817,7 @@ paths: check. type: array items: *320 - deployment: &597 + deployment: &598 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -55739,7 +55743,7 @@ paths: type: array items: *358 examples: - default: &555 + default: &556 value: total_count: 2 machines: @@ -59070,7 +59074,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Status description: The status of a commit. type: object @@ -60536,6 +60540,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -60579,6 +60587,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -60627,6 +60636,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -60782,6 +60792,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *128 @@ -65475,6 +65486,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -65521,6 +65536,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -65615,6 +65631,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *128 x-github: @@ -66531,7 +66548,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &628 + last_response: &629 title: Hook Response type: object properties: @@ -67503,7 +67520,7 @@ paths: parameters: - *241 - *242 - - &578 + - &579 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -67937,7 +67954,7 @@ paths: type: array items: *428 examples: - default: &571 + default: &572 value: - id: 1 repository: @@ -71742,6 +71759,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -81761,7 +81782,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &649 + items: &650 type: object properties: type: @@ -82203,6 +82224,123 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *241 + - *242 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *60 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &524 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *524 + backfill_scans: + type: array + items: *524 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *524 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -82264,9 +82402,9 @@ paths: application/json: schema: type: array - items: *524 + items: *525 examples: - default: *525 + default: *526 '400': *14 '404': *6 x-github: @@ -82460,9 +82598,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: &527 + default: &528 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -82809,7 +82947,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -82958,15 +83096,15 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '200': description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *527 + default: *528 '403': *27 '404': *6 x-github: @@ -82992,7 +83130,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 requestBody: required: true content: @@ -83163,10 +83301,10 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *527 - add_credit: *527 + default: *528 + add_credit: *528 '403': *27 '404': *6 '422': @@ -83206,7 +83344,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': *94 '400': *14 @@ -83235,7 +83373,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': description: Response @@ -83376,7 +83514,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -83749,7 +83887,7 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: default: value: @@ -83839,7 +83977,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -83933,7 +84071,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &530 + schema: &531 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -84033,7 +84171,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default: value: @@ -84173,7 +84311,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Tag protection description: Tag protection type: object @@ -84254,7 +84392,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -84402,7 +84540,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &533 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -84414,7 +84552,7 @@ paths: required: - names examples: - default: &533 + default: &534 value: names: - octocat @@ -84469,9 +84607,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *533 + default: *534 '404': *6 '422': *7 x-github: @@ -84494,7 +84632,7 @@ paths: parameters: - *241 - *242 - - &534 + - &535 name: per description: The time frame to display results for. in: query @@ -84525,7 +84663,7 @@ paths: - 128 clones: type: array - items: &535 + items: &536 title: Traffic type: object properties: @@ -84773,7 +84911,7 @@ paths: parameters: - *241 - *242 - - *534 + - *535 responses: '200': description: Response @@ -84794,7 +84932,7 @@ paths: - 3782 views: type: array - items: *535 + items: *536 required: - uniques - count @@ -85564,7 +85702,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &536 + text_matches: &537 title: Search Result Text Matches type: array items: @@ -85727,7 +85865,7 @@ paths: enum: - author-date - committer-date - - &537 + - &538 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 @@ -85847,7 +85985,7 @@ paths: type: number node_id: type: string - text_matches: *536 + text_matches: *537 required: - sha - node_id @@ -86039,7 +86177,7 @@ paths: - interactions - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86155,7 +86293,7 @@ paths: - string - 'null' format: date-time - text_matches: *536 + text_matches: *537 pull_request: type: object properties: @@ -86377,7 +86515,7 @@ paths: enum: - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86422,7 +86560,7 @@ paths: - 'null' score: type: number - text_matches: *536 + text_matches: *537 required: - id - node_id @@ -86507,7 +86645,7 @@ paths: - forks - help-wanted-issues - updated - - *537 + - *538 - *17 - *18 responses: @@ -86744,7 +86882,7 @@ paths: - admin - pull - push - text_matches: *536 + text_matches: *537 temp_clone_token: type: string allow_merge_commit: @@ -87052,7 +87190,7 @@ paths: - string - 'null' format: uri - text_matches: *536 + text_matches: *537 related: type: - array @@ -87245,7 +87383,7 @@ paths: - followers - repositories - joined - - *537 + - *538 - *17 - *18 responses: @@ -87355,7 +87493,7 @@ paths: type: - boolean - 'null' - text_matches: *536 + text_matches: *537 blog: type: - string @@ -87437,7 +87575,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &538 + - &539 name: team_id description: The unique identifier of the team. in: path @@ -87478,7 +87616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *538 + - *539 requestBody: required: true content: @@ -87579,7 +87717,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *538 + - *539 responses: '204': description: Response @@ -87610,7 +87748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *538 + - *539 - *40 - *17 - *18 @@ -87623,7 +87761,7 @@ paths: type: array items: *228 examples: - default: *539 + default: *540 headers: Link: *37 x-github: @@ -87652,7 +87790,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *538 + - *539 requestBody: required: true content: @@ -87715,7 +87853,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *538 + - *539 - *230 responses: '200': @@ -87749,7 +87887,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *538 + - *539 - *230 requestBody: required: false @@ -87775,7 +87913,7 @@ paths: application/json: schema: *228 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87800,7 +87938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *538 + - *539 - *230 responses: '204': @@ -87830,7 +87968,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *538 + - *539 - *230 - *40 - *17 @@ -87844,7 +87982,7 @@ paths: type: array items: *231 examples: - default: *541 + default: *542 headers: Link: *37 x-github: @@ -87873,7 +88011,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 requestBody: required: true @@ -87925,7 +88063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 responses: @@ -87960,7 +88098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 requestBody: @@ -87986,7 +88124,7 @@ paths: application/json: schema: *231 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88011,7 +88149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 responses: @@ -88042,7 +88180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 - name: content @@ -88101,7 +88239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 requestBody: @@ -88163,7 +88301,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *538 + - *539 - *230 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -88221,7 +88359,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *538 + - *539 - *230 requestBody: required: true @@ -88280,7 +88418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88318,7 +88456,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *538 + - *539 - name: role description: Filters members returned by their role in the team. in: query @@ -88369,7 +88507,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88406,7 +88544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88446,7 +88584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88483,7 +88621,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 responses: '200': @@ -88492,7 +88630,7 @@ paths: application/json: schema: *238 examples: - response-if-user-is-a-team-maintainer: *543 + response-if-user-is-a-team-maintainer: *544 '404': *6 x-github: githubCloudOnly: false @@ -88525,7 +88663,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 requestBody: required: false @@ -88553,7 +88691,7 @@ paths: application/json: schema: *238 examples: - response-if-users-membership-with-team-is-now-pending: *544 + response-if-users-membership-with-team-is-now-pending: *545 '403': description: Forbidden if team synchronization is set up '422': @@ -88587,7 +88725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88617,7 +88755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88629,7 +88767,7 @@ paths: type: array items: *239 examples: - default: *545 + default: *546 headers: Link: *37 '404': *6 @@ -88656,7 +88794,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *538 + - *539 - *240 responses: '200': @@ -88665,7 +88803,7 @@ paths: application/json: schema: *239 examples: - default: *546 + default: *547 '404': description: Not Found if project is not managed by this team x-github: @@ -88690,7 +88828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *538 + - *539 - *240 requestBody: required: false @@ -88759,7 +88897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *538 + - *539 - *240 responses: '204': @@ -88787,7 +88925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88829,7 +88967,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *538 + - *539 - *241 - *242 responses: @@ -88837,7 +88975,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *547 + schema: *548 examples: alternative-response-with-extra-repository-information: value: @@ -88988,7 +89126,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *538 + - *539 - *241 - *242 requestBody: @@ -89040,7 +89178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *538 + - *539 - *241 - *242 responses: @@ -89067,7 +89205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -89079,7 +89217,7 @@ paths: type: array items: *172 examples: - response-if-child-teams-exist: *548 + response-if-child-teams-exist: *549 headers: Link: *37 '404': *6 @@ -89112,7 +89250,7 @@ paths: application/json: schema: oneOf: - - &550 + - &551 title: Private User description: Private User type: object @@ -89362,7 +89500,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *549 + - *550 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -89522,7 +89660,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -89920,7 +90058,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &552 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -90040,7 +90178,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -90186,7 +90324,7 @@ paths: type: array items: *108 examples: - default: *552 + default: *553 '401': *23 '403': *27 '404': *6 @@ -90453,7 +90591,7 @@ paths: description: Response content: application/json: - schema: &553 + schema: &554 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -90506,7 +90644,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &554 + default: &555 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -90551,9 +90689,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -90592,7 +90730,7 @@ paths: type: array items: *358 examples: - default: *555 + default: *556 '304': *35 '500': *39 '401': *23 @@ -91558,7 +91696,7 @@ paths: type: array items: *188 examples: - default: &568 + default: &569 value: - id: 197 name: hello_docker @@ -91659,7 +91797,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Email description: Email type: object @@ -91729,9 +91867,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: &570 + default: &571 value: - email: octocat@github.com verified: true @@ -91808,7 +91946,7 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: default: value: @@ -92066,7 +92204,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: GPG Key description: A unique encryption key type: object @@ -92211,7 +92349,7 @@ paths: - subkeys - revoked examples: - default: &581 + default: &582 value: - id: 3 name: Octocat's GPG Key @@ -92296,9 +92434,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: id: 3 name: Octocat's GPG Key @@ -92355,7 +92493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &559 + - &560 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -92367,9 +92505,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '304': *35 '403': *27 @@ -92392,7 +92530,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *559 + - *560 responses: '204': description: Response @@ -92583,7 +92721,7 @@ paths: type: array items: *57 examples: - default: *560 + default: *561 headers: Link: *37 '404': *6 @@ -92847,7 +92985,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Key description: Key type: object @@ -92945,9 +93083,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -92986,9 +93124,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 '304': *35 '403': *27 @@ -93044,7 +93182,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -93123,7 +93261,7 @@ paths: - account - plan examples: - default: &564 + default: &565 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -93185,9 +93323,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: *564 + default: *565 headers: Link: *37 '304': *35 @@ -94191,7 +94329,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *182 - - *565 + - *566 responses: '204': description: Response @@ -94264,7 +94402,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 '304': *35 @@ -94306,7 +94444,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *18 - *17 responses: @@ -94318,8 +94456,8 @@ paths: type: array items: *188 examples: - default: *568 - '400': *569 + default: *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94348,7 +94486,7 @@ paths: application/json: schema: *188 examples: - default: &582 + default: &583 value: id: 40201 name: octo-name @@ -94800,9 +94938,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: *570 + default: *571 headers: Link: *37 '304': *35 @@ -94915,7 +95053,7 @@ paths: type: array items: *57 examples: - default: &577 + default: &578 summary: Default response value: - id: 1296269 @@ -95273,7 +95411,7 @@ paths: type: array items: *428 examples: - default: *571 + default: *572 headers: Link: *37 '304': *35 @@ -95352,7 +95490,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Social account description: Social media account type: object @@ -95369,7 +95507,7 @@ paths: - provider - url examples: - default: &573 + default: &574 value: - provider: twitter url: https://twitter.com/github @@ -95432,9 +95570,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 '422': *15 '304': *35 '404': *6 @@ -95522,7 +95660,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -95542,7 +95680,7 @@ paths: - title - created_at examples: - default: &589 + default: &590 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95609,9 +95747,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95642,7 +95780,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: - - &576 + - &577 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -95654,9 +95792,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 '404': *6 '304': *35 '403': *27 @@ -95679,7 +95817,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: - - *576 + - *577 responses: '204': description: Response @@ -95708,7 +95846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &590 + - &591 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 @@ -95733,11 +95871,11 @@ paths: type: array items: *57 examples: - default-response: *577 + default-response: *578 application/vnd.github.v3.star+json: schema: type: array - items: &591 + items: &592 title: Starred Repository description: Starred Repository type: object @@ -96104,10 +96242,10 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: &579 + default-response: &580 summary: Default response value: login: octocat @@ -96142,7 +96280,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &580 + response-with-git-hub-plan-information: &581 summary: Response with GitHub plan information value: login: octocat @@ -96202,7 +96340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *578 + - *579 - *17 responses: '200': @@ -96249,11 +96387,11 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: *579 - response-with-git-hub-plan-information: *580 + default-response: *580 + response-with-git-hub-plan-information: *581 '404': *6 x-github: githubCloudOnly: false @@ -96417,7 +96555,7 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 x-github: @@ -96821,9 +96959,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *581 + default: *582 headers: Link: *37 x-github: @@ -97005,7 +97143,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 x-github: @@ -97044,7 +97182,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *121 - *18 - *17 @@ -97057,10 +97195,10 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 - '400': *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97090,7 +97228,7 @@ paths: application/json: schema: *188 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97683,9 +97821,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *584 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97713,9 +97851,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97743,9 +97881,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97773,9 +97911,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 headers: Link: *37 x-github: @@ -97805,9 +97943,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *589 + default: *590 headers: Link: *37 x-github: @@ -97832,7 +97970,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *121 - - *590 + - *591 - *40 - *17 - *18 @@ -97844,11 +97982,11 @@ paths: schema: anyOf: - type: array - items: *591 + items: *592 - type: array items: *57 examples: - default-response: *577 + default-response: *578 headers: Link: *37 x-github: @@ -98008,7 +98146,7 @@ webhooks: type: string enum: - disabled - enterprise: &592 + enterprise: &593 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -98077,7 +98215,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &593 + installation: &594 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -98098,7 +98236,7 @@ webhooks: required: - id - node_id - organization: &594 + organization: &595 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -98171,7 +98309,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &595 + repository: &596 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -99084,10 +99222,10 @@ webhooks: type: string enum: - enabled - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -99163,11 +99301,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: &596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: &597 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) @@ -99390,11 +99528,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: *596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: *597 sender: *4 required: - action @@ -99582,11 +99720,11 @@ webhooks: - everyone required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: *596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: *597 sender: *4 required: - action @@ -99670,7 +99808,7 @@ webhooks: type: string enum: - completed - check_run: &598 + check_run: &599 title: CheckRun description: A check performed on the code of a given code change type: object @@ -99783,7 +99921,7 @@ webhooks: - examples: - neutral - deployment: *597 + deployment: *598 details_url: type: string examples: @@ -99881,9 +100019,9 @@ webhooks: - output - app - pull_requests - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -100276,10 +100414,10 @@ webhooks: type: string enum: - created - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -100675,10 +100813,10 @@ webhooks: type: string enum: - requested_action - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 requested_action: description: The action requested by the user. type: object @@ -101083,10 +101221,10 @@ webhooks: type: string enum: - rerequested - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -102078,10 +102216,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -102766,10 +102904,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -103448,10 +103586,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -103758,20 +103896,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &599 + commit_oid: &600 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: *592 - installation: *593 - organization: *594 - ref: &600 + enterprise: *593 + installation: *594 + organization: *595 + ref: &601 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: *595 + repository: *596 sender: *4 required: - action @@ -104099,12 +104237,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104377,12 +104515,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104714,12 +104852,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104988,9 +105126,9 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -104998,7 +105136,7 @@ webhooks: type: - string - 'null' - repository: *595 + repository: *596 sender: *4 required: - action @@ -105230,12 +105368,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -105497,10 +105635,10 @@ webhooks: - updated_at - author_association - body - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -105581,18 +105719,18 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *594 - pusher_type: &601 + organization: *595 + pusher_type: &602 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &602 + ref: &603 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -105602,7 +105740,7 @@ webhooks: enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -105685,9 +105823,9 @@ webhooks: enum: - created definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105772,9 +105910,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105852,9 +105990,9 @@ webhooks: enum: - updated definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105931,10 +106069,10 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - repository: *595 - organization: *594 + enterprise: *593 + installation: *594 + repository: *596 + organization: *595 sender: *4 new_property_values: type: array @@ -106019,18 +106157,18 @@ webhooks: title: delete event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - pusher_type: *601 - ref: *602 + enterprise: *593 + installation: *594 + organization: *595 + pusher_type: *602 + ref: *603 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -106115,10 +106253,10 @@ webhooks: enum: - auto_dismissed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106203,10 +106341,10 @@ webhooks: enum: - auto_reopened alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106291,10 +106429,10 @@ webhooks: enum: - created alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106377,10 +106515,10 @@ webhooks: enum: - dismissed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106463,10 +106601,10 @@ webhooks: enum: - fixed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106550,10 +106688,10 @@ webhooks: enum: - reintroduced alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106636,10 +106774,10 @@ webhooks: enum: - reopened alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106716,9 +106854,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - key: &603 + enterprise: *593 + installation: *594 + key: &604 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -106756,8 +106894,8 @@ webhooks: - verified - created_at - read_only - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -106834,11 +106972,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - key: *603 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + key: *604 + organization: *595 + repository: *596 sender: *4 required: - action @@ -107410,12 +107548,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: &607 + workflow: &608 title: Workflow type: - object @@ -108157,9 +108295,9 @@ webhooks: pull_requests: type: array items: *471 - repository: *595 - organization: *594 - installation: *593 + repository: *596 + organization: *595 + installation: *594 sender: *4 responses: '200': @@ -108230,7 +108368,7 @@ webhooks: type: string enum: - approved - approver: &604 + approver: &605 type: object properties: avatar_url: @@ -108273,11 +108411,11 @@ webhooks: type: string comment: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - reviewers: &605 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + reviewers: &606 type: array items: type: object @@ -108358,7 +108496,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &606 + workflow_job_run: &607 type: object properties: conclusion: @@ -109104,18 +109242,18 @@ webhooks: type: string enum: - rejected - approver: *604 + approver: *605 comment: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - reviewers: *605 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + reviewers: *606 sender: *4 since: type: string - workflow_job_run: *606 + workflow_job_run: *607 workflow_job_runs: type: array items: @@ -109832,13 +109970,13 @@ webhooks: type: string enum: - requested - enterprise: *592 + enterprise: *593 environment: type: string - installation: *593 - organization: *594 - repository: *595 - requestor: &612 + installation: *594 + organization: *595 + repository: *596 + requestor: &613 title: User type: - object @@ -111781,12 +111919,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Deployment Workflow Run type: @@ -112477,7 +112615,7 @@ webhooks: type: string enum: - answered - answer: &610 + answer: &611 type: object properties: author_association: @@ -112637,7 +112775,7 @@ webhooks: - created_at - updated_at - body - discussion: &608 + discussion: &609 title: Discussion description: A Discussion in a repository. type: object @@ -112955,10 +113093,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113085,11 +113223,11 @@ webhooks: - from required: - category - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113172,11 +113310,11 @@ webhooks: type: string enum: - closed - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113258,7 +113396,7 @@ webhooks: type: string enum: - created - comment: &609 + comment: &610 type: object properties: author_association: @@ -113418,11 +113556,11 @@ webhooks: - updated_at - body - reactions - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113505,12 +113643,12 @@ webhooks: type: string enum: - deleted - comment: *609 - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + comment: *610 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113605,12 +113743,12 @@ webhooks: - from required: - body - comment: *609 - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + comment: *610 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113694,11 +113832,11 @@ webhooks: type: string enum: - created - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113780,11 +113918,11 @@ webhooks: type: string enum: - deleted - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113884,11 +114022,11 @@ webhooks: type: string required: - from - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113970,10 +114108,10 @@ webhooks: type: string enum: - labeled - discussion: *608 - enterprise: *592 - installation: *593 - label: &611 + discussion: *609 + enterprise: *593 + installation: *594 + label: &612 title: Label type: object properties: @@ -114006,8 +114144,8 @@ webhooks: - color - default - description - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114090,11 +114228,11 @@ webhooks: type: string enum: - locked - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114176,11 +114314,11 @@ webhooks: type: string enum: - pinned - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114262,11 +114400,11 @@ webhooks: type: string enum: - reopened - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114351,16 +114489,16 @@ webhooks: changes: type: object properties: - new_discussion: *608 - new_repository: *595 + new_discussion: *609 + new_repository: *596 required: - new_discussion - new_repository - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114443,10 +114581,10 @@ webhooks: type: string enum: - unanswered - discussion: *608 - old_answer: *610 - organization: *594 - repository: *595 + discussion: *609 + old_answer: *611 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114528,12 +114666,12 @@ webhooks: type: string enum: - unlabeled - discussion: *608 - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114616,11 +114754,11 @@ webhooks: type: string enum: - unlocked - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114702,11 +114840,11 @@ webhooks: type: string enum: - unpinned - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114779,7 +114917,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *592 + enterprise: *593 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -115457,9 +115595,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - forkee @@ -115605,9 +115743,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pages: description: The pages that were updated. type: array @@ -115645,7 +115783,7 @@ webhooks: - action - sha - html_url - repository: *595 + repository: *596 sender: *4 required: - pages @@ -115721,10 +115859,10 @@ webhooks: type: string enum: - created - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: &613 + organization: *595 + repositories: &614 description: An array of repository objects that the installation can access. type: array @@ -115750,8 +115888,8 @@ webhooks: - name - full_name - private - repository: *595 - requester: *612 + repository: *596 + requester: *613 sender: *4 required: - action @@ -115826,11 +115964,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -115907,11 +116045,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -115988,10 +116126,10 @@ webhooks: type: string enum: - added - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories_added: &614 + organization: *595 + repositories_added: &615 description: An array of repository objects, which were added to the installation. type: array @@ -116037,15 +116175,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *595 - repository_selection: &615 + repository: *596 + repository_selection: &616 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *612 + requester: *613 sender: *4 required: - action @@ -116124,10 +116262,10 @@ webhooks: type: string enum: - removed - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories_added: *614 + organization: *595 + repositories_added: *615 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -116154,9 +116292,9 @@ webhooks: - name - full_name - private - repository: *595 - repository_selection: *615 - requester: *612 + repository: *596 + repository_selection: *616 + requester: *613 sender: *4 required: - action @@ -116235,11 +116373,11 @@ webhooks: type: string enum: - suspend - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -116421,10 +116559,10 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 target_type: type: string @@ -116503,11 +116641,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -116755,8 +116893,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -117932,8 +118070,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -118013,7 +118151,7 @@ webhooks: type: string enum: - deleted - comment: &616 + comment: &617 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -118180,8 +118318,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -119355,8 +119493,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -119436,7 +119574,7 @@ webhooks: type: string enum: - edited - changes: &641 + changes: &642 description: The changes to the comment. type: object properties: @@ -119448,9 +119586,9 @@ webhooks: type: string required: - from - comment: *616 - enterprise: *592 - installation: *593 + comment: *617 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120625,8 +120763,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -120708,10 +120846,10 @@ webhooks: type: string enum: - assigned - assignee: *612 - enterprise: *592 - installation: *593 - issue: &619 + assignee: *613 + enterprise: *593 + installation: *594 + issue: &620 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -121641,8 +121779,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -121722,8 +121860,8 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -122801,8 +122939,8 @@ webhooks: required: - state - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -122881,8 +123019,8 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -123805,8 +123943,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -123885,8 +124023,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124813,7 +124951,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &617 + milestone: &618 title: Milestone description: A collection of related issues and pull requests. type: object @@ -124956,8 +125094,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -125056,8 +125194,8 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125987,9 +126125,9 @@ webhooks: - active_lock_reason - body - reactions - label: *611 - organization: *594 - repository: *595 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -126069,8 +126207,8 @@ webhooks: type: string enum: - labeled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126999,9 +127137,9 @@ webhooks: - active_lock_reason - body - reactions - label: *611 - organization: *594 - repository: *595 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -127081,8 +127219,8 @@ webhooks: type: string enum: - locked - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128013,8 +128151,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -128093,8 +128231,8 @@ webhooks: type: string enum: - milestoned - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129019,9 +129157,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *617 - organization: *594 - repository: *595 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -130507,8 +130645,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131437,8 +131575,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -131518,9 +131656,9 @@ webhooks: type: string enum: - pinned - enterprise: *592 - installation: *593 - issue: &618 + enterprise: *593 + installation: *594 + issue: &619 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132443,8 +132581,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -132523,8 +132661,8 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133454,8 +133592,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -134941,11 +135079,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *592 - installation: *593 - issue: *618 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *619 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135026,7 +135164,7 @@ webhooks: type: string enum: - unassigned - assignee: &644 + assignee: &645 title: User type: - object @@ -135098,11 +135236,11 @@ webhooks: required: - login - id - enterprise: *592 - installation: *593 - issue: *619 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *620 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135181,12 +135319,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *592 - installation: *593 - issue: *619 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *620 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135266,8 +135404,8 @@ webhooks: type: string enum: - unlocked - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136196,8 +136334,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136277,11 +136415,11 @@ webhooks: type: string enum: - unpinned - enterprise: *592 - installation: *593 - issue: *618 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *619 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136360,11 +136498,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136442,11 +136580,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136556,11 +136694,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136642,9 +136780,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: &620 + enterprise: *593 + installation: *594 + marketplace_purchase: &621 title: Marketplace Purchase type: object required: @@ -136732,8 +136870,8 @@ webhooks: type: integer unit_count: type: integer - organization: *594 - previous_marketplace_purchase: &621 + organization: *595 + previous_marketplace_purchase: &622 title: Marketplace Purchase type: object properties: @@ -136817,7 +136955,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -136897,10 +137035,10 @@ webhooks: - changed effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -136988,7 +137126,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137070,10 +137208,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137159,7 +137297,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137240,8 +137378,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 marketplace_purchase: title: Marketplace Purchase type: object @@ -137327,9 +137465,9 @@ webhooks: type: integer unit_count: type: integer - organization: *594 - previous_marketplace_purchase: *621 - repository: *595 + organization: *595 + previous_marketplace_purchase: *622 + repository: *596 sender: *4 required: - action @@ -137409,12 +137547,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 - previous_marketplace_purchase: *621 - repository: *595 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 + previous_marketplace_purchase: *622 + repository: *596 sender: *4 required: - action @@ -137516,11 +137654,11 @@ webhooks: type: string required: - to - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137622,11 +137760,11 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137705,11 +137843,11 @@ webhooks: type: string enum: - removed - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137787,11 +137925,11 @@ webhooks: type: string enum: - added - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 scope: description: The scope of the membership. Currently, can only be `team`. @@ -137869,7 +138007,7 @@ webhooks: required: - login - id - team: &622 + team: &623 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138062,11 +138200,11 @@ webhooks: type: string enum: - removed - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138145,7 +138283,7 @@ webhooks: required: - login - id - team: *622 + team: *623 required: - action - scope @@ -138227,8 +138365,8 @@ webhooks: type: string enum: - checks_requested - installation: *593 - merge_group: &623 + installation: *594 + merge_group: &624 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -138254,8 +138392,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138341,10 +138479,10 @@ webhooks: - merged - invalidated - dequeued - installation: *593 - merge_group: *623 - organization: *594 - repository: *595 + installation: *594 + merge_group: *624 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138417,7 +138555,7 @@ webhooks: type: string enum: - deleted - enterprise: *592 + enterprise: *593 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -138525,12 +138663,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *593 - organization: *594 + installation: *594 + organization: *595 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -138610,11 +138748,11 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138693,9 +138831,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - milestone: &624 + enterprise: *593 + installation: *594 + milestone: &625 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138837,8 +138975,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138917,11 +139055,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139031,11 +139169,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139115,11 +139253,11 @@ webhooks: type: string enum: - opened - enterprise: *592 - installation: *593 - milestone: *624 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *625 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139198,11 +139336,11 @@ webhooks: type: string enum: - blocked - blocked_user: *612 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + blocked_user: *613 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139281,11 +139419,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *612 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + blocked_user: *613 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139364,9 +139502,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - membership: &625 + enterprise: *593 + installation: *594 + membership: &626 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -139460,8 +139598,8 @@ webhooks: - role - organization_url - user - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139539,11 +139677,11 @@ webhooks: type: string enum: - member_added - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139622,8 +139760,8 @@ webhooks: type: string enum: - member_invited - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -139745,10 +139883,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 - user: *612 + user: *613 required: - action - invitation @@ -139826,11 +139964,11 @@ webhooks: type: string enum: - member_removed - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139917,11 +140055,11 @@ webhooks: properties: from: type: string - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139997,9 +140135,9 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 package: description: Information about the package. type: object @@ -140522,7 +140660,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &626 + items: &627 title: Ruby Gems metadata type: object properties: @@ -140619,7 +140757,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -140695,9 +140833,9 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 package: description: Information about the package. type: object @@ -141059,7 +141197,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 source_url: type: string format: uri @@ -141130,7 +141268,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -141311,12 +141449,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *592 + enterprise: *593 id: type: integer - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - id @@ -141396,7 +141534,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &627 + personal_access_token_request: &628 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -141546,10 +141684,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *592 - organization: *594 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141628,11 +141766,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *627 - enterprise: *592 - organization: *594 + personal_access_token_request: *628 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141710,11 +141848,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *627 - enterprise: *592 - organization: *594 + personal_access_token_request: *628 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141791,11 +141929,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *627 - organization: *594 - enterprise: *592 + personal_access_token_request: *628 + organization: *595 + enterprise: *593 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141899,7 +142037,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *628 + last_response: *629 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -141931,8 +142069,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 zen: description: Random string of GitHub zen. @@ -142177,10 +142315,10 @@ webhooks: - from required: - note - enterprise: *592 - installation: *593 - organization: *594 - project_card: &629 + enterprise: *593 + installation: *594 + organization: *595 + project_card: &630 title: Project Card type: object properties: @@ -142303,7 +142441,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -142384,11 +142522,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project_card: *629 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_card: *630 + repository: *596 sender: *4 required: - action @@ -142468,9 +142606,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 project_card: title: Project Card type: object @@ -142600,7 +142738,7 @@ webhooks: repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -142694,11 +142832,11 @@ webhooks: - from required: - note - enterprise: *592 - installation: *593 - organization: *594 - project_card: *629 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_card: *630 + repository: *596 sender: *4 required: - action @@ -142792,9 +142930,9 @@ webhooks: - from required: - column_id - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 project_card: allOf: - title: Project Card @@ -142991,7 +143129,7 @@ webhooks: type: string required: - after_id - repository: *595 + repository: *596 sender: *4 required: - action @@ -143071,10 +143209,10 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - organization: *594 - project: &631 + enterprise: *593 + installation: *594 + organization: *595 + project: &632 title: Project type: object properties: @@ -143201,7 +143339,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143281,10 +143419,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project_column: &630 + enterprise: *593 + installation: *594 + organization: *595 + project_column: &631 title: Project Column type: object properties: @@ -143324,7 +143462,7 @@ webhooks: - name - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143403,14 +143541,14 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -143499,11 +143637,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 + repository: *596 sender: *4 required: - action @@ -143583,11 +143721,11 @@ webhooks: type: string enum: - moved - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 + repository: *596 sender: *4 required: - action @@ -143667,11 +143805,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -143751,14 +143889,14 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - project: *631 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -143859,11 +143997,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -143942,11 +144080,11 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -144027,9 +144165,9 @@ webhooks: type: string enum: - closed - installation: *593 - organization: *594 - projects_v2: &632 + installation: *594 + organization: *595 + projects_v2: &633 title: Projects v2 Project description: A projects v2 project type: object @@ -144177,9 +144315,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144260,9 +144398,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144383,9 +144521,9 @@ webhooks: type: string to: type: string - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144468,7 +144606,7 @@ webhooks: type: string enum: - archived - changes: &636 + changes: &637 type: object properties: archived_at: @@ -144484,9 +144622,9 @@ webhooks: - string - 'null' format: date-time - installation: *593 - organization: *594 - projects_v2_item: &633 + installation: *594 + organization: *595 + projects_v2_item: &634 title: Projects v2 Item description: An item belonging to a project type: object @@ -144625,9 +144763,9 @@ webhooks: - 'null' to: type: string - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144709,9 +144847,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144792,9 +144930,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144899,7 +145037,7 @@ webhooks: oneOf: - type: string - type: integer - - &634 + - &635 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -144919,7 +145057,7 @@ webhooks: required: - id - name - - &635 + - &636 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -144948,8 +145086,8 @@ webhooks: oneOf: - type: string - type: integer - - *634 - *635 + - *636 type: - 'null' - string @@ -144972,9 +145110,9 @@ webhooks: - 'null' required: - body - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145071,9 +145209,9 @@ webhooks: type: - string - 'null' - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145156,10 +145294,10 @@ webhooks: type: string enum: - restored - changes: *636 - installation: *593 - organization: *594 - projects_v2_item: *633 + changes: *637 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145241,9 +145379,9 @@ webhooks: type: string enum: - reopened - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -145324,9 +145462,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2_status_update: &637 + installation: *594 + organization: *595 + projects_v2_status_update: &638 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -145461,9 +145599,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2_status_update: *637 + installation: *594 + organization: *595 + projects_v2_status_update: *638 sender: *4 required: - action @@ -145609,9 +145747,9 @@ webhooks: - string - 'null' format: date - installation: *593 - organization: *594 - projects_v2_status_update: *637 + installation: *594 + organization: *595 + projects_v2_status_update: *638 sender: *4 required: - action @@ -145682,10 +145820,10 @@ webhooks: title: public event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - repository @@ -145762,13 +145900,13 @@ webhooks: type: string enum: - assigned - assignee: *612 - enterprise: *592 - installation: *593 - number: &638 + assignee: *613 + enterprise: *593 + installation: *594 + number: &639 description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -148117,7 +148255,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -148199,11 +148337,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -150545,7 +150683,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -150627,11 +150765,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -152973,7 +153111,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -153055,11 +153193,11 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: &639 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: &640 allOf: - *471 - type: object @@ -153123,7 +153261,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *595 + repository: *596 sender: *4 required: - action @@ -153204,12 +153342,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -153289,11 +153427,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *592 + enterprise: *593 milestone: *370 - number: *638 - organization: *594 - pull_request: &640 + number: *639 + organization: *595 + pull_request: &641 title: Pull Request type: object properties: @@ -155620,7 +155758,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -155699,11 +155837,11 @@ webhooks: type: string enum: - dequeued - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -158049,7 +158187,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *595 + repository: *596 sender: *4 required: - action @@ -158173,12 +158311,12 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -158258,11 +158396,11 @@ webhooks: type: string enum: - enqueued - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -160593,7 +160731,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -160673,11 +160811,11 @@ webhooks: type: string enum: - labeled - enterprise: *592 - installation: *593 - label: *611 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + label: *612 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -163025,7 +163163,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -163106,10 +163244,10 @@ webhooks: type: string enum: - locked - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -165455,7 +165593,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -165535,12 +165673,12 @@ webhooks: type: string enum: - milestoned - enterprise: *592 + enterprise: *593 milestone: *370 - number: *638 - organization: *594 - pull_request: *640 - repository: *595 + number: *639 + organization: *595 + pull_request: *641 + repository: *596 sender: *4 required: - action @@ -165619,12 +165757,12 @@ webhooks: type: string enum: - opened - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -165705,12 +165843,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -165790,12 +165928,12 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -166170,9 +166308,9 @@ webhooks: - start_side - side - reactions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -168402,7 +168540,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -168482,7 +168620,7 @@ webhooks: type: string enum: - deleted - comment: &642 + comment: &643 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -168775,9 +168913,9 @@ webhooks: - start_side - side - reactions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -170995,7 +171133,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -171075,11 +171213,11 @@ webhooks: type: string enum: - edited - changes: *641 - comment: *642 - enterprise: *592 - installation: *593 - organization: *594 + changes: *642 + comment: *643 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -173300,7 +173438,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -173381,9 +173519,9 @@ webhooks: type: string enum: - dismissed - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -175616,7 +175754,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 review: description: The review that was affected. type: object @@ -175862,9 +176000,9 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -177978,8 +178116,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: &643 + repository: *596 + review: &644 description: The review that was affected. type: object properties: @@ -178212,12 +178350,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -180564,7 +180702,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -180650,12 +180788,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -183009,7 +183147,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183204,12 +183342,12 @@ webhooks: type: string enum: - review_requested - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -185558,7 +185696,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -185645,12 +185783,12 @@ webhooks: type: string enum: - review_requested - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -187990,7 +188128,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_team: title: Team description: Groups of organization members that gives permissions @@ -188174,9 +188312,9 @@ webhooks: type: string enum: - submitted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -190412,8 +190550,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: *643 + repository: *596 + review: *644 sender: *4 required: - action @@ -190493,9 +190631,9 @@ webhooks: type: string enum: - resolved - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -192626,7 +192764,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -193018,9 +193156,9 @@ webhooks: type: string enum: - unresolved - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -195134,7 +195272,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -195528,10 +195666,10 @@ webhooks: type: string before: type: string - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -197866,7 +198004,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -197948,11 +198086,11 @@ webhooks: type: string enum: - unassigned - assignee: *644 - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + assignee: *645 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -200302,7 +200440,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -200381,11 +200519,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *592 - installation: *593 - label: *611 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + label: *612 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -202724,7 +202862,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -202805,10 +202943,10 @@ webhooks: type: string enum: - unlocked - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -205137,7 +205275,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -205340,7 +205478,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *592 + enterprise: *593 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -205435,8 +205573,8 @@ webhooks: - url - author - committer - installation: *593 - organization: *594 + installation: *594 + organization: *595 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -206024,9 +206162,9 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 registry_package: type: object properties: @@ -206503,7 +206641,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -206559,7 +206697,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -206637,9 +206775,9 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 registry_package: type: object properties: @@ -206951,7 +207089,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -207001,7 +207139,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -207078,10 +207216,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - release: &645 + enterprise: *593 + installation: *594 + organization: *595 + release: &646 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -207397,7 +207535,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *595 + repository: *596 sender: *4 required: - action @@ -207474,11 +207612,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -207586,11 +207724,11 @@ webhooks: type: boolean required: - to - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -207668,9 +207806,9 @@ webhooks: type: string enum: - prereleased - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -207991,7 +208129,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208067,10 +208205,10 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - release: &646 + enterprise: *593 + installation: *594 + organization: *595 + release: &647 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -208388,7 +208526,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208464,11 +208602,11 @@ webhooks: type: string enum: - released - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -208544,11 +208682,11 @@ webhooks: type: string enum: - unpublished - enterprise: *592 - installation: *593 - organization: *594 - release: *646 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *647 + repository: *596 sender: *4 required: - action @@ -208624,11 +208762,11 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - repository_advisory: *524 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + repository_advisory: *525 sender: *4 required: - action @@ -208704,11 +208842,11 @@ webhooks: type: string enum: - reported - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - repository_advisory: *524 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + repository_advisory: *525 sender: *4 required: - action @@ -208784,10 +208922,10 @@ webhooks: type: string enum: - archived - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -208864,10 +209002,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -208945,10 +209083,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209033,10 +209171,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209151,10 +209289,10 @@ webhooks: - 'null' items: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209226,10 +209364,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 status: type: string @@ -209310,10 +209448,10 @@ webhooks: type: string enum: - privatized - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209390,10 +209528,10 @@ webhooks: type: string enum: - publicized - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209487,10 +209625,10 @@ webhooks: - name required: - repository - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209570,10 +209708,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 sender: *4 required: @@ -209652,10 +209790,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 sender: *4 required: @@ -209734,10 +209872,10 @@ webhooks: type: string enum: - edited - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 changes: type: object @@ -210045,10 +210183,10 @@ webhooks: - from required: - owner - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210126,10 +210264,10 @@ webhooks: type: string enum: - unarchived - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210207,7 +210345,7 @@ webhooks: type: string enum: - create - alert: &647 + alert: &648 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -210331,10 +210469,10 @@ webhooks: type: string enum: - open - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210544,10 +210682,10 @@ webhooks: type: string enum: - dismissed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210625,11 +210763,11 @@ webhooks: type: string enum: - reopen - alert: *647 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *648 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210831,10 +210969,10 @@ webhooks: enum: - fixed - open - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210912,7 +211050,7 @@ webhooks: type: string enum: - created - alert: &648 + alert: &649 type: object properties: number: *46 @@ -211016,10 +211154,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211100,11 +211238,11 @@ webhooks: type: string enum: - created - alert: *648 - installation: *593 - location: *649 - organization: *594 - repository: *595 + alert: *649 + installation: *594 + location: *650 + organization: *595 + repository: *596 sender: *4 required: - location @@ -211342,11 +211480,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211424,11 +211562,11 @@ webhooks: type: string enum: - reopened - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211506,11 +211644,11 @@ webhooks: type: string enum: - resolved - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211588,11 +211726,11 @@ webhooks: type: string enum: - validated - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211668,11 +211806,11 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - security_advisory: &650 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + security_advisory: &651 description: The details of the security advisory, including summary, description, and severity. type: object @@ -211858,11 +211996,11 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - security_advisory: *650 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + security_advisory: *651 sender: *4 required: - action @@ -211935,10 +212073,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -212125,9 +212263,9 @@ webhooks: type: object properties: security_and_analysis: *207 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: *252 sender: *4 required: @@ -212206,12 +212344,12 @@ webhooks: type: string enum: - cancelled - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: &651 + sponsorship: &652 type: object properties: created_at: @@ -212516,12 +212654,12 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - sponsorship @@ -212609,12 +212747,12 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212691,17 +212829,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &652 + effective_date: &653 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: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - sponsorship @@ -212775,7 +212913,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &653 + changes: &654 type: object properties: tier: @@ -212819,13 +212957,13 @@ webhooks: - from required: - tier - effective_date: *652 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + effective_date: *653 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212902,13 +213040,13 @@ webhooks: type: string enum: - tier_changed - changes: *653 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + changes: *654 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212982,10 +213120,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -213069,10 +213207,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -213375,6 +213513,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -213501,15 +213643,15 @@ webhooks: type: - string - 'null' - enterprise: *592 + enterprise: *593 id: description: The unique identifier of the status. type: integer - installation: *593 + installation: *594 name: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 sha: description: The Commit SHA. @@ -213625,9 +213767,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213717,9 +213859,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213809,9 +213951,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213901,9 +214043,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213980,12 +214122,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - team: &654 + team: &655 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -214178,9 +214320,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -214650,7 +214792,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -214726,9 +214868,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -215198,7 +215340,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215275,9 +215417,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -215747,7 +215889,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215891,9 +216033,9 @@ webhooks: - from required: - permissions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -216363,7 +216505,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - changes @@ -216441,9 +216583,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -216913,7 +217055,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -216989,10 +217131,10 @@ webhooks: type: string enum: - started - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -217065,17 +217207,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *592 + enterprise: *593 inputs: type: - object - 'null' additionalProperties: true - installation: *593 - organization: *594 + installation: *594 + organization: *595 ref: type: string - repository: *595 + repository: *596 sender: *4 workflow: type: string @@ -217157,10 +217299,10 @@ webhooks: type: string enum: - completed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: allOf: @@ -217495,10 +217637,10 @@ webhooks: type: string enum: - in_progress - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: allOf: @@ -217859,10 +218001,10 @@ webhooks: type: string enum: - queued - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: type: object @@ -218087,10 +218229,10 @@ webhooks: type: string enum: - waiting - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: type: object @@ -218317,12 +218459,12 @@ webhooks: type: string enum: - completed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Workflow Run type: object @@ -219341,12 +219483,12 @@ webhooks: type: string enum: - in_progress - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Workflow Run type: object @@ -220350,12 +220492,12 @@ webhooks: type: string enum: - requested - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 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 ca6168549..50233a3ad 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 @@ -208686,6 +208686,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -227761,6 +227767,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -266338,6 +266350,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -273301,6 +273319,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -279498,6 +279522,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -280210,6 +280240,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -280954,6 +280990,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -283151,6 +283193,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283208,7 +283256,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -283373,6 +283422,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283430,7 +283485,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -283884,6 +283940,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -283926,7 +283988,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -309969,6 +310032,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -310028,7 +310097,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -310388,6 +310458,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -310448,7 +310524,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -311741,6 +311818,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -312053,6 +312136,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -381012,6 +381101,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -386580,6 +386675,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -424952,6 +425053,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -461582,6 +461689,280 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "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" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -492530,6 +492911,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -1263953,6 +1264340,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ 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 f0548c26d..41d3354a0 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 @@ -1054,7 +1054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &526 + - &527 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11210,7 +11210,7 @@ paths: url: type: string format: uri - user: &549 + user: &550 title: Public User description: Public User type: object @@ -15734,7 +15734,7 @@ paths: type: array items: *88 examples: - default: &566 + default: &567 value: - login: github id: 1 @@ -16970,7 +16970,7 @@ paths: type: array items: *57 examples: - default: &560 + default: &561 value: total_count: 1 repositories: @@ -17787,7 +17787,7 @@ paths: type: array items: *108 examples: - default: &552 + default: &553 value: total_count: 1 repositories: @@ -28185,7 +28185,7 @@ paths: parameters: - *89 - *182 - - &565 + - &566 name: repo_name description: repo_name parameter in: path @@ -29222,7 +29222,7 @@ paths: - nuget - container - *89 - - &567 + - &568 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -29263,7 +29263,7 @@ paths: default: *189 '403': *27 '401': *23 - '400': &569 + '400': &570 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34381,7 +34381,7 @@ paths: application/json: schema: type: array - items: &524 + items: &525 description: A repository security advisory. type: object properties: @@ -34700,7 +34700,7 @@ paths: - private_fork additionalProperties: false examples: - default: &525 + default: &526 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -35174,7 +35174,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &584 type: object properties: total_minutes_used: @@ -35244,7 +35244,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &584 + default: &585 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -35280,7 +35280,7 @@ paths: description: Response content: application/json: - schema: &585 + schema: &586 type: object properties: total_gigabytes_bandwidth_used: @@ -35298,7 +35298,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &586 + default: &587 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -35330,7 +35330,7 @@ paths: description: Response content: application/json: - schema: &587 + schema: &588 type: object properties: days_left_in_billing_cycle: @@ -35348,7 +35348,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &588 + default: &589 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -36352,7 +36352,7 @@ paths: - updated_at - url examples: - default: &539 + default: &540 value: - author: login: octocat @@ -36600,7 +36600,7 @@ paths: application/json: schema: *228 examples: - default: &540 + default: &541 value: author: login: octocat @@ -36791,7 +36791,7 @@ paths: - updated_at - url examples: - default: &541 + default: &542 value: - author: login: octocat @@ -37017,7 +37017,7 @@ paths: application/json: schema: *231 examples: - default: &542 + default: &543 value: author: login: octocat @@ -37635,7 +37635,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &543 + response-if-user-is-a-team-maintainer: &544 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -37700,7 +37700,7 @@ paths: application/json: schema: *238 examples: - response-if-users-membership-with-team-is-now-pending: &544 + response-if-users-membership-with-team-is-now-pending: &545 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -37843,7 +37843,7 @@ paths: - updated_at - permissions examples: - default: &545 + default: &546 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37920,7 +37920,7 @@ paths: application/json: schema: *239 examples: - default: &546 + default: &547 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -38124,7 +38124,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &547 + schema: &548 title: Team Repository description: A team's access to a repository. type: object @@ -38853,7 +38853,7 @@ paths: type: array items: *172 examples: - response-if-child-teams-exist: &548 + response-if-child-teams-exist: &549 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47600,6 +47600,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -50813,7 +50817,7 @@ paths: check. type: array items: *320 - deployment: &597 + deployment: &598 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -55739,7 +55743,7 @@ paths: type: array items: *358 examples: - default: &555 + default: &556 value: total_count: 2 machines: @@ -59070,7 +59074,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Status description: The status of a commit. type: object @@ -60536,6 +60540,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -60579,6 +60587,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -60627,6 +60636,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -60782,6 +60792,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *128 @@ -65475,6 +65486,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -65521,6 +65536,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -65615,6 +65631,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *128 x-github: @@ -66531,7 +66548,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &628 + last_response: &629 title: Hook Response type: object properties: @@ -67503,7 +67520,7 @@ paths: parameters: - *241 - *242 - - &578 + - &579 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -67937,7 +67954,7 @@ paths: type: array items: *428 examples: - default: &571 + default: &572 value: - id: 1 repository: @@ -71742,6 +71759,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -81761,7 +81782,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &649 + items: &650 type: object properties: type: @@ -82203,6 +82224,123 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *241 + - *242 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *60 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &524 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *524 + backfill_scans: + type: array + items: *524 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *524 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -82264,9 +82402,9 @@ paths: application/json: schema: type: array - items: *524 + items: *525 examples: - default: *525 + default: *526 '400': *14 '404': *6 x-github: @@ -82460,9 +82598,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: &527 + default: &528 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -82809,7 +82947,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -82958,15 +83096,15 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '200': description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *527 + default: *528 '403': *27 '404': *6 x-github: @@ -82992,7 +83130,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 requestBody: required: true content: @@ -83163,10 +83301,10 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *527 - add_credit: *527 + default: *528 + add_credit: *528 '403': *27 '404': *6 '422': @@ -83206,7 +83344,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': *94 '400': *14 @@ -83235,7 +83373,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': description: Response @@ -83376,7 +83514,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -83749,7 +83887,7 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: default: value: @@ -83839,7 +83977,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -83933,7 +84071,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &530 + schema: &531 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -84033,7 +84171,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default: value: @@ -84173,7 +84311,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Tag protection description: Tag protection type: object @@ -84254,7 +84392,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -84402,7 +84540,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &533 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -84414,7 +84552,7 @@ paths: required: - names examples: - default: &533 + default: &534 value: names: - octocat @@ -84469,9 +84607,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *533 + default: *534 '404': *6 '422': *7 x-github: @@ -84494,7 +84632,7 @@ paths: parameters: - *241 - *242 - - &534 + - &535 name: per description: The time frame to display results for. in: query @@ -84525,7 +84663,7 @@ paths: - 128 clones: type: array - items: &535 + items: &536 title: Traffic type: object properties: @@ -84773,7 +84911,7 @@ paths: parameters: - *241 - *242 - - *534 + - *535 responses: '200': description: Response @@ -84794,7 +84932,7 @@ paths: - 3782 views: type: array - items: *535 + items: *536 required: - uniques - count @@ -85564,7 +85702,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &536 + text_matches: &537 title: Search Result Text Matches type: array items: @@ -85727,7 +85865,7 @@ paths: enum: - author-date - committer-date - - &537 + - &538 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 @@ -85847,7 +85985,7 @@ paths: type: number node_id: type: string - text_matches: *536 + text_matches: *537 required: - sha - node_id @@ -86039,7 +86177,7 @@ paths: - interactions - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86155,7 +86293,7 @@ paths: - string - 'null' format: date-time - text_matches: *536 + text_matches: *537 pull_request: type: object properties: @@ -86377,7 +86515,7 @@ paths: enum: - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86422,7 +86560,7 @@ paths: - 'null' score: type: number - text_matches: *536 + text_matches: *537 required: - id - node_id @@ -86507,7 +86645,7 @@ paths: - forks - help-wanted-issues - updated - - *537 + - *538 - *17 - *18 responses: @@ -86744,7 +86882,7 @@ paths: - admin - pull - push - text_matches: *536 + text_matches: *537 temp_clone_token: type: string allow_merge_commit: @@ -87052,7 +87190,7 @@ paths: - string - 'null' format: uri - text_matches: *536 + text_matches: *537 related: type: - array @@ -87245,7 +87383,7 @@ paths: - followers - repositories - joined - - *537 + - *538 - *17 - *18 responses: @@ -87355,7 +87493,7 @@ paths: type: - boolean - 'null' - text_matches: *536 + text_matches: *537 blog: type: - string @@ -87437,7 +87575,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &538 + - &539 name: team_id description: The unique identifier of the team. in: path @@ -87478,7 +87616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *538 + - *539 requestBody: required: true content: @@ -87579,7 +87717,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *538 + - *539 responses: '204': description: Response @@ -87610,7 +87748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *538 + - *539 - *40 - *17 - *18 @@ -87623,7 +87761,7 @@ paths: type: array items: *228 examples: - default: *539 + default: *540 headers: Link: *37 x-github: @@ -87652,7 +87790,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *538 + - *539 requestBody: required: true content: @@ -87715,7 +87853,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *538 + - *539 - *230 responses: '200': @@ -87749,7 +87887,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *538 + - *539 - *230 requestBody: required: false @@ -87775,7 +87913,7 @@ paths: application/json: schema: *228 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87800,7 +87938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *538 + - *539 - *230 responses: '204': @@ -87830,7 +87968,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *538 + - *539 - *230 - *40 - *17 @@ -87844,7 +87982,7 @@ paths: type: array items: *231 examples: - default: *541 + default: *542 headers: Link: *37 x-github: @@ -87873,7 +88011,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 requestBody: required: true @@ -87925,7 +88063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 responses: @@ -87960,7 +88098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 requestBody: @@ -87986,7 +88124,7 @@ paths: application/json: schema: *231 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88011,7 +88149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 responses: @@ -88042,7 +88180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 - name: content @@ -88101,7 +88239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *538 + - *539 - *230 - *233 requestBody: @@ -88163,7 +88301,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *538 + - *539 - *230 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -88221,7 +88359,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *538 + - *539 - *230 requestBody: required: true @@ -88280,7 +88418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88318,7 +88456,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *538 + - *539 - name: role description: Filters members returned by their role in the team. in: query @@ -88369,7 +88507,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88406,7 +88544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88446,7 +88584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88483,7 +88621,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 responses: '200': @@ -88492,7 +88630,7 @@ paths: application/json: schema: *238 examples: - response-if-user-is-a-team-maintainer: *543 + response-if-user-is-a-team-maintainer: *544 '404': *6 x-github: githubCloudOnly: false @@ -88525,7 +88663,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 requestBody: required: false @@ -88553,7 +88691,7 @@ paths: application/json: schema: *238 examples: - response-if-users-membership-with-team-is-now-pending: *544 + response-if-users-membership-with-team-is-now-pending: *545 '403': description: Forbidden if team synchronization is set up '422': @@ -88587,7 +88725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *538 + - *539 - *121 responses: '204': @@ -88617,7 +88755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88629,7 +88767,7 @@ paths: type: array items: *239 examples: - default: *545 + default: *546 headers: Link: *37 '404': *6 @@ -88656,7 +88794,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *538 + - *539 - *240 responses: '200': @@ -88665,7 +88803,7 @@ paths: application/json: schema: *239 examples: - default: *546 + default: *547 '404': description: Not Found if project is not managed by this team x-github: @@ -88690,7 +88828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *538 + - *539 - *240 requestBody: required: false @@ -88759,7 +88897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *538 + - *539 - *240 responses: '204': @@ -88787,7 +88925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -88829,7 +88967,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *538 + - *539 - *241 - *242 responses: @@ -88837,7 +88975,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *547 + schema: *548 examples: alternative-response-with-extra-repository-information: value: @@ -88988,7 +89126,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *538 + - *539 - *241 - *242 requestBody: @@ -89040,7 +89178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *538 + - *539 - *241 - *242 responses: @@ -89067,7 +89205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *538 + - *539 - *17 - *18 responses: @@ -89079,7 +89217,7 @@ paths: type: array items: *172 examples: - response-if-child-teams-exist: *548 + response-if-child-teams-exist: *549 headers: Link: *37 '404': *6 @@ -89112,7 +89250,7 @@ paths: application/json: schema: oneOf: - - &550 + - &551 title: Private User description: Private User type: object @@ -89362,7 +89500,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *549 + - *550 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -89522,7 +89660,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -89920,7 +90058,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &552 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -90040,7 +90178,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -90186,7 +90324,7 @@ paths: type: array items: *108 examples: - default: *552 + default: *553 '401': *23 '403': *27 '404': *6 @@ -90453,7 +90591,7 @@ paths: description: Response content: application/json: - schema: &553 + schema: &554 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -90506,7 +90644,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &554 + default: &555 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -90551,9 +90689,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -90592,7 +90730,7 @@ paths: type: array items: *358 examples: - default: *555 + default: *556 '304': *35 '500': *39 '401': *23 @@ -91558,7 +91696,7 @@ paths: type: array items: *188 examples: - default: &568 + default: &569 value: - id: 197 name: hello_docker @@ -91659,7 +91797,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Email description: Email type: object @@ -91729,9 +91867,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: &570 + default: &571 value: - email: octocat@github.com verified: true @@ -91808,7 +91946,7 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: default: value: @@ -92066,7 +92204,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: GPG Key description: A unique encryption key type: object @@ -92211,7 +92349,7 @@ paths: - subkeys - revoked examples: - default: &581 + default: &582 value: - id: 3 name: Octocat's GPG Key @@ -92296,9 +92434,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: id: 3 name: Octocat's GPG Key @@ -92355,7 +92493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &559 + - &560 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -92367,9 +92505,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '304': *35 '403': *27 @@ -92392,7 +92530,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *559 + - *560 responses: '204': description: Response @@ -92583,7 +92721,7 @@ paths: type: array items: *57 examples: - default: *560 + default: *561 headers: Link: *37 '404': *6 @@ -92847,7 +92985,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Key description: Key type: object @@ -92945,9 +93083,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -92986,9 +93124,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 '304': *35 '403': *27 @@ -93044,7 +93182,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -93123,7 +93261,7 @@ paths: - account - plan examples: - default: &564 + default: &565 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -93185,9 +93323,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: *564 + default: *565 headers: Link: *37 '304': *35 @@ -94191,7 +94329,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *182 - - *565 + - *566 responses: '204': description: Response @@ -94264,7 +94402,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 '304': *35 @@ -94306,7 +94444,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *18 - *17 responses: @@ -94318,8 +94456,8 @@ paths: type: array items: *188 examples: - default: *568 - '400': *569 + default: *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94348,7 +94486,7 @@ paths: application/json: schema: *188 examples: - default: &582 + default: &583 value: id: 40201 name: octo-name @@ -94800,9 +94938,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: *570 + default: *571 headers: Link: *37 '304': *35 @@ -94915,7 +95053,7 @@ paths: type: array items: *57 examples: - default: &577 + default: &578 summary: Default response value: - id: 1296269 @@ -95273,7 +95411,7 @@ paths: type: array items: *428 examples: - default: *571 + default: *572 headers: Link: *37 '304': *35 @@ -95352,7 +95490,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Social account description: Social media account type: object @@ -95369,7 +95507,7 @@ paths: - provider - url examples: - default: &573 + default: &574 value: - provider: twitter url: https://twitter.com/github @@ -95432,9 +95570,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 '422': *15 '304': *35 '404': *6 @@ -95522,7 +95660,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -95542,7 +95680,7 @@ paths: - title - created_at examples: - default: &589 + default: &590 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95609,9 +95747,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95642,7 +95780,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: - - &576 + - &577 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -95654,9 +95792,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 '404': *6 '304': *35 '403': *27 @@ -95679,7 +95817,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: - - *576 + - *577 responses: '204': description: Response @@ -95708,7 +95846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &590 + - &591 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 @@ -95733,11 +95871,11 @@ paths: type: array items: *57 examples: - default-response: *577 + default-response: *578 application/vnd.github.v3.star+json: schema: type: array - items: &591 + items: &592 title: Starred Repository description: Starred Repository type: object @@ -96104,10 +96242,10 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: &579 + default-response: &580 summary: Default response value: login: octocat @@ -96142,7 +96280,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &580 + response-with-git-hub-plan-information: &581 summary: Response with GitHub plan information value: login: octocat @@ -96202,7 +96340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *578 + - *579 - *17 responses: '200': @@ -96249,11 +96387,11 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: *579 - response-with-git-hub-plan-information: *580 + default-response: *580 + response-with-git-hub-plan-information: *581 '404': *6 x-github: githubCloudOnly: false @@ -96417,7 +96555,7 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 x-github: @@ -96821,9 +96959,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *581 + default: *582 headers: Link: *37 x-github: @@ -97005,7 +97143,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 x-github: @@ -97044,7 +97182,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *121 - *18 - *17 @@ -97057,10 +97195,10 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 - '400': *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97090,7 +97228,7 @@ paths: application/json: schema: *188 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97683,9 +97821,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *584 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97713,9 +97851,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97743,9 +97881,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97773,9 +97911,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 headers: Link: *37 x-github: @@ -97805,9 +97943,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *589 + default: *590 headers: Link: *37 x-github: @@ -97832,7 +97970,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *121 - - *590 + - *591 - *40 - *17 - *18 @@ -97844,11 +97982,11 @@ paths: schema: anyOf: - type: array - items: *591 + items: *592 - type: array items: *57 examples: - default-response: *577 + default-response: *578 headers: Link: *37 x-github: @@ -98008,7 +98146,7 @@ webhooks: type: string enum: - disabled - enterprise: &592 + enterprise: &593 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -98077,7 +98215,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &593 + installation: &594 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -98098,7 +98236,7 @@ webhooks: required: - id - node_id - organization: &594 + organization: &595 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -98171,7 +98309,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &595 + repository: &596 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -99084,10 +99222,10 @@ webhooks: type: string enum: - enabled - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -99163,11 +99301,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: &596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: &597 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) @@ -99390,11 +99528,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: *596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: *597 sender: *4 required: - action @@ -99582,11 +99720,11 @@ webhooks: - everyone required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - rule: *596 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + rule: *597 sender: *4 required: - action @@ -99670,7 +99808,7 @@ webhooks: type: string enum: - completed - check_run: &598 + check_run: &599 title: CheckRun description: A check performed on the code of a given code change type: object @@ -99783,7 +99921,7 @@ webhooks: - examples: - neutral - deployment: *597 + deployment: *598 details_url: type: string examples: @@ -99881,9 +100019,9 @@ webhooks: - output - app - pull_requests - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -100276,10 +100414,10 @@ webhooks: type: string enum: - created - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -100675,10 +100813,10 @@ webhooks: type: string enum: - requested_action - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 requested_action: description: The action requested by the user. type: object @@ -101083,10 +101221,10 @@ webhooks: type: string enum: - rerequested - check_run: *598 - installation: *593 - organization: *594 - repository: *595 + check_run: *599 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - check_run @@ -102078,10 +102216,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -102766,10 +102904,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -103448,10 +103586,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -103758,20 +103896,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &599 + commit_oid: &600 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: *592 - installation: *593 - organization: *594 - ref: &600 + enterprise: *593 + installation: *594 + organization: *595 + ref: &601 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: *595 + repository: *596 sender: *4 required: - action @@ -104099,12 +104237,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104377,12 +104515,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104714,12 +104852,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -104988,9 +105126,9 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -104998,7 +105136,7 @@ webhooks: type: - string - 'null' - repository: *595 + repository: *596 sender: *4 required: - action @@ -105230,12 +105368,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *599 - enterprise: *592 - installation: *593 - organization: *594 - ref: *600 - repository: *595 + commit_oid: *600 + enterprise: *593 + installation: *594 + organization: *595 + ref: *601 + repository: *596 sender: *4 required: - action @@ -105497,10 +105635,10 @@ webhooks: - updated_at - author_association - body - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -105581,18 +105719,18 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *594 - pusher_type: &601 + organization: *595 + pusher_type: &602 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &602 + ref: &603 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -105602,7 +105740,7 @@ webhooks: enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -105685,9 +105823,9 @@ webhooks: enum: - created definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105772,9 +105910,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105852,9 +105990,9 @@ webhooks: enum: - updated definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105931,10 +106069,10 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - repository: *595 - organization: *594 + enterprise: *593 + installation: *594 + repository: *596 + organization: *595 sender: *4 new_property_values: type: array @@ -106019,18 +106157,18 @@ webhooks: title: delete event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - pusher_type: *601 - ref: *602 + enterprise: *593 + installation: *594 + organization: *595 + pusher_type: *602 + ref: *603 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -106115,10 +106253,10 @@ webhooks: enum: - auto_dismissed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106203,10 +106341,10 @@ webhooks: enum: - auto_reopened alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106291,10 +106429,10 @@ webhooks: enum: - created alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106377,10 +106515,10 @@ webhooks: enum: - dismissed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106463,10 +106601,10 @@ webhooks: enum: - fixed alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106550,10 +106688,10 @@ webhooks: enum: - reintroduced alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106636,10 +106774,10 @@ webhooks: enum: - reopened alert: *384 - installation: *593 - organization: *594 - enterprise: *592 - repository: *595 + installation: *594 + organization: *595 + enterprise: *593 + repository: *596 sender: *4 required: - action @@ -106716,9 +106854,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - key: &603 + enterprise: *593 + installation: *594 + key: &604 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -106756,8 +106894,8 @@ webhooks: - verified - created_at - read_only - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -106834,11 +106972,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - key: *603 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + key: *604 + organization: *595 + repository: *596 sender: *4 required: - action @@ -107410,12 +107548,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: &607 + workflow: &608 title: Workflow type: - object @@ -108157,9 +108295,9 @@ webhooks: pull_requests: type: array items: *471 - repository: *595 - organization: *594 - installation: *593 + repository: *596 + organization: *595 + installation: *594 sender: *4 responses: '200': @@ -108230,7 +108368,7 @@ webhooks: type: string enum: - approved - approver: &604 + approver: &605 type: object properties: avatar_url: @@ -108273,11 +108411,11 @@ webhooks: type: string comment: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - reviewers: &605 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + reviewers: &606 type: array items: type: object @@ -108358,7 +108496,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &606 + workflow_job_run: &607 type: object properties: conclusion: @@ -109104,18 +109242,18 @@ webhooks: type: string enum: - rejected - approver: *604 + approver: *605 comment: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - reviewers: *605 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + reviewers: *606 sender: *4 since: type: string - workflow_job_run: *606 + workflow_job_run: *607 workflow_job_runs: type: array items: @@ -109832,13 +109970,13 @@ webhooks: type: string enum: - requested - enterprise: *592 + enterprise: *593 environment: type: string - installation: *593 - organization: *594 - repository: *595 - requestor: &612 + installation: *594 + organization: *595 + repository: *596 + requestor: &613 title: User type: - object @@ -111781,12 +111919,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Deployment Workflow Run type: @@ -112477,7 +112615,7 @@ webhooks: type: string enum: - answered - answer: &610 + answer: &611 type: object properties: author_association: @@ -112637,7 +112775,7 @@ webhooks: - created_at - updated_at - body - discussion: &608 + discussion: &609 title: Discussion description: A Discussion in a repository. type: object @@ -112955,10 +113093,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113085,11 +113223,11 @@ webhooks: - from required: - category - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113172,11 +113310,11 @@ webhooks: type: string enum: - closed - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113258,7 +113396,7 @@ webhooks: type: string enum: - created - comment: &609 + comment: &610 type: object properties: author_association: @@ -113418,11 +113556,11 @@ webhooks: - updated_at - body - reactions - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113505,12 +113643,12 @@ webhooks: type: string enum: - deleted - comment: *609 - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + comment: *610 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113605,12 +113743,12 @@ webhooks: - from required: - body - comment: *609 - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + comment: *610 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113694,11 +113832,11 @@ webhooks: type: string enum: - created - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113780,11 +113918,11 @@ webhooks: type: string enum: - deleted - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113884,11 +114022,11 @@ webhooks: type: string required: - from - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -113970,10 +114108,10 @@ webhooks: type: string enum: - labeled - discussion: *608 - enterprise: *592 - installation: *593 - label: &611 + discussion: *609 + enterprise: *593 + installation: *594 + label: &612 title: Label type: object properties: @@ -114006,8 +114144,8 @@ webhooks: - color - default - description - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114090,11 +114228,11 @@ webhooks: type: string enum: - locked - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114176,11 +114314,11 @@ webhooks: type: string enum: - pinned - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114262,11 +114400,11 @@ webhooks: type: string enum: - reopened - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114351,16 +114489,16 @@ webhooks: changes: type: object properties: - new_discussion: *608 - new_repository: *595 + new_discussion: *609 + new_repository: *596 required: - new_discussion - new_repository - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114443,10 +114581,10 @@ webhooks: type: string enum: - unanswered - discussion: *608 - old_answer: *610 - organization: *594 - repository: *595 + discussion: *609 + old_answer: *611 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114528,12 +114666,12 @@ webhooks: type: string enum: - unlabeled - discussion: *608 - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114616,11 +114754,11 @@ webhooks: type: string enum: - unlocked - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114702,11 +114840,11 @@ webhooks: type: string enum: - unpinned - discussion: *608 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + discussion: *609 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114779,7 +114917,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *592 + enterprise: *593 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -115457,9 +115595,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - forkee @@ -115605,9 +115743,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pages: description: The pages that were updated. type: array @@ -115645,7 +115783,7 @@ webhooks: - action - sha - html_url - repository: *595 + repository: *596 sender: *4 required: - pages @@ -115721,10 +115859,10 @@ webhooks: type: string enum: - created - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: &613 + organization: *595 + repositories: &614 description: An array of repository objects that the installation can access. type: array @@ -115750,8 +115888,8 @@ webhooks: - name - full_name - private - repository: *595 - requester: *612 + repository: *596 + requester: *613 sender: *4 required: - action @@ -115826,11 +115964,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -115907,11 +116045,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -115988,10 +116126,10 @@ webhooks: type: string enum: - added - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories_added: &614 + organization: *595 + repositories_added: &615 description: An array of repository objects, which were added to the installation. type: array @@ -116037,15 +116175,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *595 - repository_selection: &615 + repository: *596 + repository_selection: &616 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *612 + requester: *613 sender: *4 required: - action @@ -116124,10 +116262,10 @@ webhooks: type: string enum: - removed - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories_added: *614 + organization: *595 + repositories_added: *615 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -116154,9 +116292,9 @@ webhooks: - name - full_name - private - repository: *595 - repository_selection: *615 - requester: *612 + repository: *596 + repository_selection: *616 + requester: *613 sender: *4 required: - action @@ -116235,11 +116373,11 @@ webhooks: type: string enum: - suspend - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -116421,10 +116559,10 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 target_type: type: string @@ -116503,11 +116641,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *592 + enterprise: *593 installation: *20 - organization: *594 - repositories: *613 - repository: *595 + organization: *595 + repositories: *614 + repository: *596 requester: type: - 'null' @@ -116755,8 +116893,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -117932,8 +118070,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -118013,7 +118151,7 @@ webhooks: type: string enum: - deleted - comment: &616 + comment: &617 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -118180,8 +118318,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -119355,8 +119493,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -119436,7 +119574,7 @@ webhooks: type: string enum: - edited - changes: &641 + changes: &642 description: The changes to the comment. type: object properties: @@ -119448,9 +119586,9 @@ webhooks: type: string required: - from - comment: *616 - enterprise: *592 - installation: *593 + comment: *617 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120625,8 +120763,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -120708,10 +120846,10 @@ webhooks: type: string enum: - assigned - assignee: *612 - enterprise: *592 - installation: *593 - issue: &619 + assignee: *613 + enterprise: *593 + installation: *594 + issue: &620 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -121641,8 +121779,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -121722,8 +121860,8 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -122801,8 +122939,8 @@ webhooks: required: - state - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -122881,8 +123019,8 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -123805,8 +123943,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -123885,8 +124023,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124813,7 +124951,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &617 + milestone: &618 title: Milestone description: A collection of related issues and pull requests. type: object @@ -124956,8 +125094,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -125056,8 +125194,8 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125987,9 +126125,9 @@ webhooks: - active_lock_reason - body - reactions - label: *611 - organization: *594 - repository: *595 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -126069,8 +126207,8 @@ webhooks: type: string enum: - labeled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126999,9 +127137,9 @@ webhooks: - active_lock_reason - body - reactions - label: *611 - organization: *594 - repository: *595 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -127081,8 +127219,8 @@ webhooks: type: string enum: - locked - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128013,8 +128151,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -128093,8 +128231,8 @@ webhooks: type: string enum: - milestoned - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129019,9 +129157,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *617 - organization: *594 - repository: *595 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -130507,8 +130645,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131437,8 +131575,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -131518,9 +131656,9 @@ webhooks: type: string enum: - pinned - enterprise: *592 - installation: *593 - issue: &618 + enterprise: *593 + installation: *594 + issue: &619 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132443,8 +132581,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -132523,8 +132661,8 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133454,8 +133592,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -134941,11 +135079,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *592 - installation: *593 - issue: *618 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *619 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135026,7 +135164,7 @@ webhooks: type: string enum: - unassigned - assignee: &644 + assignee: &645 title: User type: - object @@ -135098,11 +135236,11 @@ webhooks: required: - login - id - enterprise: *592 - installation: *593 - issue: *619 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *620 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135181,12 +135319,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *592 - installation: *593 - issue: *619 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *620 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -135266,8 +135404,8 @@ webhooks: type: string enum: - unlocked - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136196,8 +136334,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136277,11 +136415,11 @@ webhooks: type: string enum: - unpinned - enterprise: *592 - installation: *593 - issue: *618 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + issue: *619 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136360,11 +136498,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136442,11 +136580,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136556,11 +136694,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - label: *611 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + label: *612 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136642,9 +136780,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: &620 + enterprise: *593 + installation: *594 + marketplace_purchase: &621 title: Marketplace Purchase type: object required: @@ -136732,8 +136870,8 @@ webhooks: type: integer unit_count: type: integer - organization: *594 - previous_marketplace_purchase: &621 + organization: *595 + previous_marketplace_purchase: &622 title: Marketplace Purchase type: object properties: @@ -136817,7 +136955,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -136897,10 +137035,10 @@ webhooks: - changed effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -136988,7 +137126,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137070,10 +137208,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137159,7 +137297,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137240,8 +137378,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 marketplace_purchase: title: Marketplace Purchase type: object @@ -137327,9 +137465,9 @@ webhooks: type: integer unit_count: type: integer - organization: *594 - previous_marketplace_purchase: *621 - repository: *595 + organization: *595 + previous_marketplace_purchase: *622 + repository: *596 sender: *4 required: - action @@ -137409,12 +137547,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *592 - installation: *593 - marketplace_purchase: *620 - organization: *594 - previous_marketplace_purchase: *621 - repository: *595 + enterprise: *593 + installation: *594 + marketplace_purchase: *621 + organization: *595 + previous_marketplace_purchase: *622 + repository: *596 sender: *4 required: - action @@ -137516,11 +137654,11 @@ webhooks: type: string required: - to - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137622,11 +137760,11 @@ webhooks: type: - string - 'null' - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137705,11 +137843,11 @@ webhooks: type: string enum: - removed - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 sender: *4 required: - action @@ -137787,11 +137925,11 @@ webhooks: type: string enum: - added - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 scope: description: The scope of the membership. Currently, can only be `team`. @@ -137869,7 +138007,7 @@ webhooks: required: - login - id - team: &622 + team: &623 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138062,11 +138200,11 @@ webhooks: type: string enum: - removed - enterprise: *592 - installation: *593 - member: *612 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + member: *613 + organization: *595 + repository: *596 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138145,7 +138283,7 @@ webhooks: required: - login - id - team: *622 + team: *623 required: - action - scope @@ -138227,8 +138365,8 @@ webhooks: type: string enum: - checks_requested - installation: *593 - merge_group: &623 + installation: *594 + merge_group: &624 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -138254,8 +138392,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138341,10 +138479,10 @@ webhooks: - merged - invalidated - dequeued - installation: *593 - merge_group: *623 - organization: *594 - repository: *595 + installation: *594 + merge_group: *624 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138417,7 +138555,7 @@ webhooks: type: string enum: - deleted - enterprise: *592 + enterprise: *593 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -138525,12 +138663,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *593 - organization: *594 + installation: *594 + organization: *595 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -138610,11 +138748,11 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138693,9 +138831,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - milestone: &624 + enterprise: *593 + installation: *594 + milestone: &625 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138837,8 +138975,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138917,11 +139055,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139031,11 +139169,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - milestone: *617 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *618 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139115,11 +139253,11 @@ webhooks: type: string enum: - opened - enterprise: *592 - installation: *593 - milestone: *624 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + milestone: *625 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139198,11 +139336,11 @@ webhooks: type: string enum: - blocked - blocked_user: *612 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + blocked_user: *613 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139281,11 +139419,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *612 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + blocked_user: *613 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139364,9 +139502,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - membership: &625 + enterprise: *593 + installation: *594 + membership: &626 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -139460,8 +139598,8 @@ webhooks: - role - organization_url - user - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139539,11 +139677,11 @@ webhooks: type: string enum: - member_added - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139622,8 +139760,8 @@ webhooks: type: string enum: - member_invited - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -139745,10 +139883,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 - user: *612 + user: *613 required: - action - invitation @@ -139826,11 +139964,11 @@ webhooks: type: string enum: - member_removed - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139917,11 +140055,11 @@ webhooks: properties: from: type: string - enterprise: *592 - installation: *593 - membership: *625 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + membership: *626 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139997,9 +140135,9 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 package: description: Information about the package. type: object @@ -140522,7 +140660,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &626 + items: &627 title: Ruby Gems metadata type: object properties: @@ -140619,7 +140757,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -140695,9 +140833,9 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 package: description: Information about the package. type: object @@ -141059,7 +141197,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 source_url: type: string format: uri @@ -141130,7 +141268,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -141311,12 +141449,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *592 + enterprise: *593 id: type: integer - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - id @@ -141396,7 +141534,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &627 + personal_access_token_request: &628 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -141546,10 +141684,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *592 - organization: *594 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141628,11 +141766,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *627 - enterprise: *592 - organization: *594 + personal_access_token_request: *628 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141710,11 +141848,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *627 - enterprise: *592 - organization: *594 + personal_access_token_request: *628 + enterprise: *593 + organization: *595 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141791,11 +141929,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *627 - organization: *594 - enterprise: *592 + personal_access_token_request: *628 + organization: *595 + enterprise: *593 sender: *4 - installation: *593 + installation: *594 required: - action - personal_access_token_request @@ -141899,7 +142037,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *628 + last_response: *629 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -141931,8 +142069,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 zen: description: Random string of GitHub zen. @@ -142177,10 +142315,10 @@ webhooks: - from required: - note - enterprise: *592 - installation: *593 - organization: *594 - project_card: &629 + enterprise: *593 + installation: *594 + organization: *595 + project_card: &630 title: Project Card type: object properties: @@ -142303,7 +142441,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -142384,11 +142522,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project_card: *629 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_card: *630 + repository: *596 sender: *4 required: - action @@ -142468,9 +142606,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 project_card: title: Project Card type: object @@ -142600,7 +142738,7 @@ webhooks: repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -142694,11 +142832,11 @@ webhooks: - from required: - note - enterprise: *592 - installation: *593 - organization: *594 - project_card: *629 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_card: *630 + repository: *596 sender: *4 required: - action @@ -142792,9 +142930,9 @@ webhooks: - from required: - column_id - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 project_card: allOf: - title: Project Card @@ -142991,7 +143129,7 @@ webhooks: type: string required: - after_id - repository: *595 + repository: *596 sender: *4 required: - action @@ -143071,10 +143209,10 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - organization: *594 - project: &631 + enterprise: *593 + installation: *594 + organization: *595 + project: &632 title: Project type: object properties: @@ -143201,7 +143339,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143281,10 +143419,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project_column: &630 + enterprise: *593 + installation: *594 + organization: *595 + project_column: &631 title: Project Column type: object properties: @@ -143324,7 +143462,7 @@ webhooks: - name - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143403,14 +143541,14 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -143499,11 +143637,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 + repository: *596 sender: *4 required: - action @@ -143583,11 +143721,11 @@ webhooks: type: string enum: - moved - enterprise: *592 - installation: *593 - organization: *594 - project_column: *630 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project_column: *631 + repository: *596 sender: *4 required: - action @@ -143667,11 +143805,11 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -143751,14 +143889,14 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - project: *631 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -143859,11 +143997,11 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -143942,11 +144080,11 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 - organization: *594 - project: *631 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + project: *632 + repository: *596 sender: *4 required: - action @@ -144027,9 +144165,9 @@ webhooks: type: string enum: - closed - installation: *593 - organization: *594 - projects_v2: &632 + installation: *594 + organization: *595 + projects_v2: &633 title: Projects v2 Project description: A projects v2 project type: object @@ -144177,9 +144315,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144260,9 +144398,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144383,9 +144521,9 @@ webhooks: type: string to: type: string - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -144468,7 +144606,7 @@ webhooks: type: string enum: - archived - changes: &636 + changes: &637 type: object properties: archived_at: @@ -144484,9 +144622,9 @@ webhooks: - string - 'null' format: date-time - installation: *593 - organization: *594 - projects_v2_item: &633 + installation: *594 + organization: *595 + projects_v2_item: &634 title: Projects v2 Item description: An item belonging to a project type: object @@ -144625,9 +144763,9 @@ webhooks: - 'null' to: type: string - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144709,9 +144847,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144792,9 +144930,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -144899,7 +145037,7 @@ webhooks: oneOf: - type: string - type: integer - - &634 + - &635 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -144919,7 +145057,7 @@ webhooks: required: - id - name - - &635 + - &636 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -144948,8 +145086,8 @@ webhooks: oneOf: - type: string - type: integer - - *634 - *635 + - *636 type: - 'null' - string @@ -144972,9 +145110,9 @@ webhooks: - 'null' required: - body - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145071,9 +145209,9 @@ webhooks: type: - string - 'null' - installation: *593 - organization: *594 - projects_v2_item: *633 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145156,10 +145294,10 @@ webhooks: type: string enum: - restored - changes: *636 - installation: *593 - organization: *594 - projects_v2_item: *633 + changes: *637 + installation: *594 + organization: *595 + projects_v2_item: *634 sender: *4 required: - action @@ -145241,9 +145379,9 @@ webhooks: type: string enum: - reopened - installation: *593 - organization: *594 - projects_v2: *632 + installation: *594 + organization: *595 + projects_v2: *633 sender: *4 required: - action @@ -145324,9 +145462,9 @@ webhooks: type: string enum: - created - installation: *593 - organization: *594 - projects_v2_status_update: &637 + installation: *594 + organization: *595 + projects_v2_status_update: &638 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -145461,9 +145599,9 @@ webhooks: type: string enum: - deleted - installation: *593 - organization: *594 - projects_v2_status_update: *637 + installation: *594 + organization: *595 + projects_v2_status_update: *638 sender: *4 required: - action @@ -145609,9 +145747,9 @@ webhooks: - string - 'null' format: date - installation: *593 - organization: *594 - projects_v2_status_update: *637 + installation: *594 + organization: *595 + projects_v2_status_update: *638 sender: *4 required: - action @@ -145682,10 +145820,10 @@ webhooks: title: public event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - repository @@ -145762,13 +145900,13 @@ webhooks: type: string enum: - assigned - assignee: *612 - enterprise: *592 - installation: *593 - number: &638 + assignee: *613 + enterprise: *593 + installation: *594 + number: &639 description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -148117,7 +148255,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -148199,11 +148337,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -150545,7 +150683,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -150627,11 +150765,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -152973,7 +153111,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -153055,11 +153193,11 @@ webhooks: type: string enum: - closed - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: &639 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: &640 allOf: - *471 - type: object @@ -153123,7 +153261,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *595 + repository: *596 sender: *4 required: - action @@ -153204,12 +153342,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -153289,11 +153427,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *592 + enterprise: *593 milestone: *370 - number: *638 - organization: *594 - pull_request: &640 + number: *639 + organization: *595 + pull_request: &641 title: Pull Request type: object properties: @@ -155620,7 +155758,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -155699,11 +155837,11 @@ webhooks: type: string enum: - dequeued - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -158049,7 +158187,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *595 + repository: *596 sender: *4 required: - action @@ -158173,12 +158311,12 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -158258,11 +158396,11 @@ webhooks: type: string enum: - enqueued - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -160593,7 +160731,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -160673,11 +160811,11 @@ webhooks: type: string enum: - labeled - enterprise: *592 - installation: *593 - label: *611 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + label: *612 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -163025,7 +163163,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -163106,10 +163244,10 @@ webhooks: type: string enum: - locked - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -165455,7 +165593,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -165535,12 +165673,12 @@ webhooks: type: string enum: - milestoned - enterprise: *592 + enterprise: *593 milestone: *370 - number: *638 - organization: *594 - pull_request: *640 - repository: *595 + number: *639 + organization: *595 + pull_request: *641 + repository: *596 sender: *4 required: - action @@ -165619,12 +165757,12 @@ webhooks: type: string enum: - opened - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -165705,12 +165843,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -165790,12 +165928,12 @@ webhooks: type: string enum: - reopened - enterprise: *592 - installation: *593 - number: *638 - organization: *594 - pull_request: *639 - repository: *595 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 + pull_request: *640 + repository: *596 sender: *4 required: - action @@ -166170,9 +166308,9 @@ webhooks: - start_side - side - reactions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -168402,7 +168540,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -168482,7 +168620,7 @@ webhooks: type: string enum: - deleted - comment: &642 + comment: &643 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -168775,9 +168913,9 @@ webhooks: - start_side - side - reactions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -170995,7 +171133,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -171075,11 +171213,11 @@ webhooks: type: string enum: - edited - changes: *641 - comment: *642 - enterprise: *592 - installation: *593 - organization: *594 + changes: *642 + comment: *643 + enterprise: *593 + installation: *594 + organization: *595 pull_request: type: object properties: @@ -173300,7 +173438,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -173381,9 +173519,9 @@ webhooks: type: string enum: - dismissed - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -175616,7 +175754,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 review: description: The review that was affected. type: object @@ -175862,9 +176000,9 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -177978,8 +178116,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: &643 + repository: *596 + review: &644 description: The review that was affected. type: object properties: @@ -178212,12 +178350,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -180564,7 +180702,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -180650,12 +180788,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -183009,7 +183147,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183204,12 +183342,12 @@ webhooks: type: string enum: - review_requested - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -185558,7 +185696,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -185645,12 +185783,12 @@ webhooks: type: string enum: - review_requested - enterprise: *592 - installation: *593 + enterprise: *593 + installation: *594 number: description: The pull request number. type: integer - organization: *594 + organization: *595 pull_request: title: Pull Request type: object @@ -187990,7 +188128,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_team: title: Team description: Groups of organization members that gives permissions @@ -188174,9 +188312,9 @@ webhooks: type: string enum: - submitted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -190412,8 +190550,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: *643 + repository: *596 + review: *644 sender: *4 required: - action @@ -190493,9 +190631,9 @@ webhooks: type: string enum: - resolved - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -192626,7 +192764,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -193018,9 +193156,9 @@ webhooks: type: string enum: - unresolved - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 pull_request: title: Simple Pull Request type: object @@ -195134,7 +195272,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -195528,10 +195666,10 @@ webhooks: type: string before: type: string - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -197866,7 +198004,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -197948,11 +198086,11 @@ webhooks: type: string enum: - unassigned - assignee: *644 - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + assignee: *645 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -200302,7 +200440,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -200381,11 +200519,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *592 - installation: *593 - label: *611 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + label: *612 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -202724,7 +202862,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -202805,10 +202943,10 @@ webhooks: type: string enum: - unlocked - enterprise: *592 - installation: *593 - number: *638 - organization: *594 + enterprise: *593 + installation: *594 + number: *639 + organization: *595 pull_request: title: Pull Request type: object @@ -205137,7 +205275,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -205340,7 +205478,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *592 + enterprise: *593 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -205435,8 +205573,8 @@ webhooks: - url - author - committer - installation: *593 - organization: *594 + installation: *594 + organization: *595 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -206024,9 +206162,9 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 registry_package: type: object properties: @@ -206503,7 +206641,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -206559,7 +206697,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -206637,9 +206775,9 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 registry_package: type: object properties: @@ -206951,7 +207089,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -207001,7 +207139,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -207078,10 +207216,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - release: &645 + enterprise: *593 + installation: *594 + organization: *595 + release: &646 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -207397,7 +207535,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *595 + repository: *596 sender: *4 required: - action @@ -207474,11 +207612,11 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -207586,11 +207724,11 @@ webhooks: type: boolean required: - to - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -207668,9 +207806,9 @@ webhooks: type: string enum: - prereleased - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -207991,7 +208129,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208067,10 +208205,10 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - release: &646 + enterprise: *593 + installation: *594 + organization: *595 + release: &647 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -208388,7 +208526,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208464,11 +208602,11 @@ webhooks: type: string enum: - released - enterprise: *592 - installation: *593 - organization: *594 - release: *645 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *646 + repository: *596 sender: *4 required: - action @@ -208544,11 +208682,11 @@ webhooks: type: string enum: - unpublished - enterprise: *592 - installation: *593 - organization: *594 - release: *646 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + release: *647 + repository: *596 sender: *4 required: - action @@ -208624,11 +208762,11 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - repository_advisory: *524 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + repository_advisory: *525 sender: *4 required: - action @@ -208704,11 +208842,11 @@ webhooks: type: string enum: - reported - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - repository_advisory: *524 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + repository_advisory: *525 sender: *4 required: - action @@ -208784,10 +208922,10 @@ webhooks: type: string enum: - archived - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -208864,10 +209002,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -208945,10 +209083,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209033,10 +209171,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209151,10 +209289,10 @@ webhooks: - 'null' items: type: string - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209226,10 +209364,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 status: type: string @@ -209310,10 +209448,10 @@ webhooks: type: string enum: - privatized - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209390,10 +209528,10 @@ webhooks: type: string enum: - publicized - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209487,10 +209625,10 @@ webhooks: - name required: - repository - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -209570,10 +209708,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 sender: *4 required: @@ -209652,10 +209790,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 sender: *4 required: @@ -209734,10 +209872,10 @@ webhooks: type: string enum: - edited - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 repository_ruleset: *214 changes: type: object @@ -210045,10 +210183,10 @@ webhooks: - from required: - owner - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210126,10 +210264,10 @@ webhooks: type: string enum: - unarchived - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210207,7 +210345,7 @@ webhooks: type: string enum: - create - alert: &647 + alert: &648 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -210331,10 +210469,10 @@ webhooks: type: string enum: - open - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210544,10 +210682,10 @@ webhooks: type: string enum: - dismissed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210625,11 +210763,11 @@ webhooks: type: string enum: - reopen - alert: *647 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *648 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210831,10 +210969,10 @@ webhooks: enum: - fixed - open - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -210912,7 +211050,7 @@ webhooks: type: string enum: - created - alert: &648 + alert: &649 type: object properties: number: *46 @@ -211016,10 +211154,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211100,11 +211238,11 @@ webhooks: type: string enum: - created - alert: *648 - installation: *593 - location: *649 - organization: *594 - repository: *595 + alert: *649 + installation: *594 + location: *650 + organization: *595 + repository: *596 sender: *4 required: - location @@ -211342,11 +211480,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211424,11 +211562,11 @@ webhooks: type: string enum: - reopened - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211506,11 +211644,11 @@ webhooks: type: string enum: - resolved - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211588,11 +211726,11 @@ webhooks: type: string enum: - validated - alert: *648 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + alert: *649 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -211668,11 +211806,11 @@ webhooks: type: string enum: - published - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - security_advisory: &650 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + security_advisory: &651 description: The details of the security advisory, including summary, description, and severity. type: object @@ -211858,11 +211996,11 @@ webhooks: type: string enum: - updated - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 - security_advisory: *650 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 + security_advisory: *651 sender: *4 required: - action @@ -211935,10 +212073,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -212125,9 +212263,9 @@ webhooks: type: object properties: security_and_analysis: *207 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: *252 sender: *4 required: @@ -212206,12 +212344,12 @@ webhooks: type: string enum: - cancelled - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: &651 + sponsorship: &652 type: object properties: created_at: @@ -212516,12 +212654,12 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - sponsorship @@ -212609,12 +212747,12 @@ webhooks: type: string required: - from - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212691,17 +212829,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &652 + effective_date: &653 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: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - sponsorship @@ -212775,7 +212913,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &653 + changes: &654 type: object properties: tier: @@ -212819,13 +212957,13 @@ webhooks: - from required: - tier - effective_date: *652 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + effective_date: *653 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212902,13 +213040,13 @@ webhooks: type: string enum: - tier_changed - changes: *653 - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + changes: *654 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - sponsorship: *651 + sponsorship: *652 required: - action - changes @@ -212982,10 +213120,10 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -213069,10 +213207,10 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -213375,6 +213513,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -213501,15 +213643,15 @@ webhooks: type: - string - 'null' - enterprise: *592 + enterprise: *593 id: description: The unique identifier of the status. type: integer - installation: *593 + installation: *594 name: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 sha: description: The Commit SHA. @@ -213625,9 +213767,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213717,9 +213859,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213809,9 +213951,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213901,9 +214043,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *72 - installation: *593 - organization: *594 - repository: *595 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -213980,12 +214122,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - team: &654 + team: &655 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -214178,9 +214320,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -214650,7 +214792,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -214726,9 +214868,9 @@ webhooks: type: string enum: - created - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -215198,7 +215340,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215275,9 +215417,9 @@ webhooks: type: string enum: - deleted - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -215747,7 +215889,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215891,9 +216033,9 @@ webhooks: - from required: - permissions - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -216363,7 +216505,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - changes @@ -216441,9 +216583,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 repository: title: Repository description: A git repository @@ -216913,7 +217055,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -216989,10 +217131,10 @@ webhooks: type: string enum: - started - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 required: - action @@ -217065,17 +217207,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *592 + enterprise: *593 inputs: type: - object - 'null' additionalProperties: true - installation: *593 - organization: *594 + installation: *594 + organization: *595 ref: type: string - repository: *595 + repository: *596 sender: *4 workflow: type: string @@ -217157,10 +217299,10 @@ webhooks: type: string enum: - completed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: allOf: @@ -217495,10 +217637,10 @@ webhooks: type: string enum: - in_progress - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: allOf: @@ -217859,10 +218001,10 @@ webhooks: type: string enum: - queued - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: type: object @@ -218087,10 +218229,10 @@ webhooks: type: string enum: - waiting - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 workflow_job: type: object @@ -218317,12 +218459,12 @@ webhooks: type: string enum: - completed - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Workflow Run type: object @@ -219341,12 +219483,12 @@ webhooks: type: string enum: - in_progress - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 workflow_run: title: Workflow Run type: object @@ -220350,12 +220492,12 @@ webhooks: type: string enum: - requested - enterprise: *592 - installation: *593 - organization: *594 - repository: *595 + enterprise: *593 + installation: *594 + organization: *595 + repository: *596 sender: *4 - workflow: *607 + workflow: *608 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 eaa4210d8..c12bd9f7e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -228122,6 +228122,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -247197,6 +247203,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -285870,6 +285882,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -292833,6 +292851,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -299054,6 +299078,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -299766,6 +299796,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -300510,6 +300546,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -302707,6 +302749,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -302764,7 +302812,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -302929,6 +302978,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -302986,7 +303041,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -303440,6 +303496,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -303482,7 +303544,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -329549,6 +329612,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -329608,7 +329677,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -329968,6 +330038,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -330028,7 +330104,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -331321,6 +331398,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -331633,6 +331716,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -400616,6 +400705,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -406287,6 +406382,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -444699,6 +444800,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -481335,6 +481442,280 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "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" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -523772,6 +524153,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -1318321,6 +1318708,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ 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 17be690e6..647928c44 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1062,7 +1062,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: - - &584 + - &585 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1734,7 +1734,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &594 + schema: &595 title: Scim Error description: Scim Error type: object @@ -15985,7 +15985,7 @@ paths: url: type: string format: uri - user: &633 + user: &634 title: Public User description: Public User type: object @@ -20519,7 +20519,7 @@ paths: type: array items: *50 examples: - default: &650 + default: &651 value: - login: github id: 1 @@ -21782,7 +21782,7 @@ paths: type: array items: *55 examples: - default: &644 + default: &645 value: total_count: 1 repositories: @@ -22550,7 +22550,7 @@ paths: type: array items: *152 examples: - default: &636 + default: &637 value: total_count: 1 repositories: @@ -33268,7 +33268,7 @@ paths: parameters: - *134 - *239 - - &649 + - &650 name: repo_name description: repo_name parameter in: path @@ -34592,7 +34592,7 @@ paths: - nuget - container - *134 - - &651 + - &652 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -34633,7 +34633,7 @@ paths: default: *245 '403': *27 '401': *23 - '400': &653 + '400': &654 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39786,7 +39786,7 @@ paths: application/json: schema: type: array - items: &582 + items: &583 description: A repository security advisory. type: object properties: @@ -40105,7 +40105,7 @@ paths: - private_fork additionalProperties: false examples: - default: &583 + default: &584 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -41778,7 +41778,7 @@ paths: - updated_at - url examples: - default: &623 + default: &624 value: - author: login: octocat @@ -42026,7 +42026,7 @@ paths: application/json: schema: *294 examples: - default: &624 + default: &625 value: author: login: octocat @@ -42217,7 +42217,7 @@ paths: - updated_at - url examples: - default: &625 + default: &626 value: - author: login: octocat @@ -42443,7 +42443,7 @@ paths: application/json: schema: *297 examples: - default: &626 + default: &627 value: author: login: octocat @@ -43159,7 +43159,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &627 + response-if-user-is-a-team-maintainer: &628 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -43224,7 +43224,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &628 + response-if-users-membership-with-team-is-now-pending: &629 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -43367,7 +43367,7 @@ paths: - updated_at - permissions examples: - default: &629 + default: &630 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -43444,7 +43444,7 @@ paths: application/json: schema: *309 examples: - default: &630 + default: &631 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -43648,7 +43648,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &631 + schema: &632 title: Team Repository description: A team's access to a repository. type: object @@ -44486,7 +44486,7 @@ paths: type: array items: *229 examples: - response-if-child-teams-exist: &632 + response-if-child-teams-exist: &633 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53256,6 +53256,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -56469,7 +56473,7 @@ paths: check. type: array items: *381 - deployment: &682 + deployment: &683 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61395,7 +61399,7 @@ paths: type: array items: *416 examples: - default: &639 + default: &640 value: total_count: 2 machines: @@ -64726,7 +64730,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Status description: The status of a commit. type: object @@ -66192,6 +66196,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -66235,6 +66243,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -66283,6 +66292,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -66438,6 +66448,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *139 @@ -71131,6 +71142,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -71177,6 +71192,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -71271,6 +71287,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *139 x-github: @@ -72187,7 +72204,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &713 + last_response: &714 title: Hook Response type: object properties: @@ -73159,7 +73176,7 @@ paths: parameters: - *311 - *312 - - &662 + - &663 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -73593,7 +73610,7 @@ paths: type: array items: *486 examples: - default: &655 + default: &656 value: - id: 1 repository: @@ -77398,6 +77415,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -87479,7 +87500,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &734 + items: &735 type: object properties: type: @@ -87921,6 +87942,123 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *311 + - *312 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *92 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &582 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *582 + backfill_scans: + type: array + items: *582 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *582 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -87982,9 +88120,9 @@ paths: application/json: schema: type: array - items: *582 + items: *583 examples: - default: *583 + default: *584 '400': *14 '404': *6 x-github: @@ -88178,9 +88316,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: &585 + default: &586 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -88527,7 +88665,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -88676,15 +88814,15 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '200': description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *585 + default: *586 '403': *27 '404': *6 x-github: @@ -88710,7 +88848,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 requestBody: required: true content: @@ -88881,10 +89019,10 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *585 - add_credit: *585 + default: *586 + add_credit: *586 '403': *27 '404': *6 '422': @@ -88924,7 +89062,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': *140 '400': *14 @@ -88953,7 +89091,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': description: Response @@ -89094,7 +89232,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -89467,7 +89605,7 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: default: value: @@ -89557,7 +89695,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -89651,7 +89789,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &588 + schema: &589 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -89751,7 +89889,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -89891,7 +90029,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Tag protection description: Tag protection type: object @@ -89972,7 +90110,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90120,7 +90258,7 @@ paths: description: Response content: application/json: - schema: &590 + schema: &591 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -90132,7 +90270,7 @@ paths: required: - names examples: - default: &591 + default: &592 value: names: - octocat @@ -90187,9 +90325,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *6 '422': *7 x-github: @@ -90212,7 +90350,7 @@ paths: parameters: - *311 - *312 - - &592 + - &593 name: per description: The time frame to display results for. in: query @@ -90243,7 +90381,7 @@ paths: - 128 clones: type: array - items: &593 + items: &594 title: Traffic type: object properties: @@ -90491,7 +90629,7 @@ paths: parameters: - *311 - *312 - - *592 + - *593 responses: '200': description: Response @@ -90512,7 +90650,7 @@ paths: - 3782 views: type: array - items: *593 + items: *594 required: - uniques - count @@ -91184,7 +91322,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &601 + - &602 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -91194,7 +91332,7 @@ paths: type: string examples: - members - - &606 + - &607 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -91206,7 +91344,7 @@ paths: format: int32 examples: - 1 - - &607 + - &608 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -91250,7 +91388,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &595 + items: &596 allOf: - type: object required: @@ -91332,7 +91470,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: &608 + meta: &609 type: object description: The metadata associated with the creation/updates to the user. @@ -91397,31 +91535,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &596 + '400': &597 description: Bad request content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '401': &597 + schema: *595 + '401': &598 description: Authorization failure - '403': &598 + '403': &599 description: Permission denied - '429': &599 + '429': &600 description: Too many requests content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '500': &600 + schema: *595 + '500': &601 description: Internal server error content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 + schema: *595 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91445,7 +91583,7 @@ paths: required: true content: application/json: - schema: &604 + schema: &605 type: object required: - schemas @@ -91505,9 +91643,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *595 + schema: *596 examples: - group: &602 + group: &603 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -91526,13 +91664,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': *596 - '401': *597 - '403': *598 - '409': &605 + '400': *597 + '401': *598 + '403': *599 + '409': &606 description: Duplicate record detected - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91549,7 +91687,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: - - &603 + - &604 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -91558,22 +91696,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *601 + - *602 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *595 + schema: *596 examples: - default: *602 - '400': *596 - '401': *597 - '403': *598 + default: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91592,13 +91730,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: - - *603 + - *604 - *38 requestBody: required: true content: application/json: - schema: *604 + schema: *605 examples: group: summary: Group @@ -91624,17 +91762,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *595 + schema: *596 examples: - group: *602 - groupWithMembers: *602 - '400': *596 - '401': *597 - '403': *598 + group: *603 + groupWithMembers: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91658,13 +91796,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: - - *603 + - *604 - *38 requestBody: required: true content: application/json: - schema: &615 + schema: &616 type: object required: - Operations @@ -91724,17 +91862,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *595 + schema: *596 examples: - updateGroup: *602 - addMembers: *602 - '400': *596 - '401': *597 - '403': *598 + updateGroup: *603 + addMembers: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91750,17 +91888,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: - - *603 + - *604 - *38 responses: '204': description: Group was deleted, no content - '400': *596 - '401': *597 - '403': *598 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91794,8 +91932,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *606 - *607 + - *608 - *38 responses: '200': @@ -91829,7 +91967,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &610 + items: &611 allOf: - type: object required: @@ -91921,7 +92059,7 @@ paths: address. examples: - true - roles: &609 + roles: &610 type: array description: The roles assigned to the user. items: @@ -91980,7 +92118,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *608 + meta: *609 startIndex: type: integer description: A starting index for the returned page @@ -92019,11 +92157,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *596 - '401': *597 - '403': *598 - '429': *599 - '500': *600 + '400': *597 + '401': *598 + '403': *599 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92047,7 +92185,7 @@ paths: required: true content: application/json: - schema: &613 + schema: &614 type: object required: - schemas @@ -92140,9 +92278,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *609 + roles: *610 examples: - user: &614 + user: &615 summary: User value: schemas: @@ -92189,9 +92327,9 @@ paths: description: User has been created content: application/scim+json: - schema: *610 + schema: *611 examples: - user: &611 + user: &612 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -92217,13 +92355,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: *611 - '400': *596 - '401': *597 - '403': *598 - '409': *605 - '429': *599 - '500': *600 + enterpriseOwner: *612 + '400': *597 + '401': *598 + '403': *599 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92240,7 +92378,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: - - &612 + - &613 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -92253,15 +92391,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *610 + schema: *611 examples: - default: *611 - '400': *596 - '401': *597 - '403': *598 + default: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92283,30 +92421,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: - - *612 + - *613 - *38 requestBody: required: true content: application/json: - schema: *613 + schema: *614 examples: - user: *614 + user: *615 responses: '200': description: User was updated content: application/scim+json: - schema: *610 + schema: *611 examples: - user: *611 - '400': *596 - '401': *597 - '403': *598 + user: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92341,13 +92479,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: - - *612 + - *613 - *38 requestBody: required: true content: application/json: - schema: *615 + schema: *616 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -92387,18 +92525,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *610 - examples: - userMultiValuedProperties: *611 - userSingleValuedProperties: *611 - disableUser: *611 - '400': *596 - '401': *597 - '403': *598 + schema: *611 + examples: + userMultiValuedProperties: *612 + userSingleValuedProperties: *612 + disableUser: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92418,17 +92556,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: - - *612 + - *613 - *38 responses: '204': description: User was deleted, no content - '400': *596 - '401': *597 - '403': *598 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92519,7 +92657,7 @@ paths: - 1 Resources: type: array - items: &616 + items: &617 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -92766,22 +92904,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': &617 + '404': &618 description: Resource not found content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '403': &618 + schema: *595 + '403': &619 description: Forbidden content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '400': *596 - '429': *599 + schema: *595 + '400': *597 + '429': *600 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -92807,9 +92945,9 @@ paths: description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: &619 + default: &620 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -92832,17 +92970,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': *617 - '403': *618 - '500': *600 + '404': *618 + '403': *619 + '500': *601 '409': description: Conflict content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '400': *596 + schema: *595 + '400': *597 requestBody: required: true content: @@ -92937,17 +93075,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 - '404': *617 - '403': *618 + default: *620 + '404': *618 + '403': *619 '304': *35 x-github: githubCloudOnly: true @@ -92971,18 +93109,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 + default: *620 '304': *35 - '404': *617 - '403': *618 + '404': *618 + '403': *619 requestBody: required: true content: @@ -93093,19 +93231,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 + default: *620 '304': *35 - '404': *617 - '403': *618 - '400': *596 + '404': *618 + '403': *619 + '400': *597 '429': description: Response content: @@ -93201,12 +93339,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *134 - - *612 + - *613 responses: '204': description: Response - '404': *617 - '403': *618 + '404': *618 + '403': *619 '304': *35 x-github: githubCloudOnly: true @@ -93340,7 +93478,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &620 + text_matches: &621 title: Search Result Text Matches type: array items: @@ -93504,7 +93642,7 @@ paths: enum: - author-date - committer-date - - &621 + - &622 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 @@ -93624,7 +93762,7 @@ paths: type: number node_id: type: string - text_matches: *620 + text_matches: *621 required: - sha - node_id @@ -93817,7 +93955,7 @@ paths: - interactions - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -93933,7 +94071,7 @@ paths: - string - 'null' format: date-time - text_matches: *620 + text_matches: *621 pull_request: type: object properties: @@ -94155,7 +94293,7 @@ paths: enum: - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -94200,7 +94338,7 @@ paths: - 'null' score: type: number - text_matches: *620 + text_matches: *621 required: - id - node_id @@ -94286,7 +94424,7 @@ paths: - forks - help-wanted-issues - updated - - *621 + - *622 - *17 - *18 responses: @@ -94523,7 +94661,7 @@ paths: - admin - pull - push - text_matches: *620 + text_matches: *621 temp_clone_token: type: string allow_merge_commit: @@ -94832,7 +94970,7 @@ paths: - string - 'null' format: uri - text_matches: *620 + text_matches: *621 related: type: - array @@ -95027,7 +95165,7 @@ paths: - followers - repositories - joined - - *621 + - *622 - *17 - *18 responses: @@ -95137,7 +95275,7 @@ paths: type: - boolean - 'null' - text_matches: *620 + text_matches: *621 blog: type: - string @@ -95219,7 +95357,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &622 + - &623 name: team_id description: The unique identifier of the team. in: path @@ -95260,7 +95398,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *622 + - *623 requestBody: required: true content: @@ -95361,7 +95499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *622 + - *623 responses: '204': description: Response @@ -95392,7 +95530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *622 + - *623 - *76 - *17 - *18 @@ -95405,7 +95543,7 @@ paths: type: array items: *294 examples: - default: *623 + default: *624 headers: Link: *37 x-github: @@ -95434,7 +95572,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *622 + - *623 requestBody: required: true content: @@ -95497,7 +95635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *622 + - *623 - *296 responses: '200': @@ -95531,7 +95669,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *622 + - *623 - *296 requestBody: required: false @@ -95557,7 +95695,7 @@ paths: application/json: schema: *294 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95582,7 +95720,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *622 + - *623 - *296 responses: '204': @@ -95612,7 +95750,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *622 + - *623 - *296 - *76 - *17 @@ -95626,7 +95764,7 @@ paths: type: array items: *297 examples: - default: *625 + default: *626 headers: Link: *37 x-github: @@ -95655,7 +95793,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 requestBody: required: true @@ -95707,7 +95845,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 responses: @@ -95742,7 +95880,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 requestBody: @@ -95768,7 +95906,7 @@ paths: application/json: schema: *297 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95793,7 +95931,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 responses: @@ -95824,7 +95962,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 - name: content @@ -95883,7 +96021,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 requestBody: @@ -95945,7 +96083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *622 + - *623 - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -96003,7 +96141,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *622 + - *623 - *296 requestBody: required: true @@ -96062,7 +96200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96100,7 +96238,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *622 + - *623 - name: role description: Filters members returned by their role in the team. in: query @@ -96151,7 +96289,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96188,7 +96326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96228,7 +96366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96265,7 +96403,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: - - *622 + - *623 - *174 responses: '200': @@ -96274,7 +96412,7 @@ paths: application/json: schema: *308 examples: - response-if-user-is-a-team-maintainer: *627 + response-if-user-is-a-team-maintainer: *628 '404': *6 x-github: githubCloudOnly: false @@ -96307,7 +96445,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: - - *622 + - *623 - *174 requestBody: required: false @@ -96335,7 +96473,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *628 + response-if-users-membership-with-team-is-now-pending: *629 '403': description: Forbidden if team synchronization is set up '422': @@ -96369,7 +96507,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: - - *622 + - *623 - *174 responses: '204': @@ -96399,7 +96537,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96411,7 +96549,7 @@ paths: type: array items: *309 examples: - default: *629 + default: *630 headers: Link: *37 '404': *6 @@ -96438,7 +96576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *622 + - *623 - *310 responses: '200': @@ -96447,7 +96585,7 @@ paths: application/json: schema: *309 examples: - default: *630 + default: *631 '404': description: Not Found if project is not managed by this team x-github: @@ -96472,7 +96610,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *622 + - *623 - *310 requestBody: required: false @@ -96541,7 +96679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *622 + - *623 - *310 responses: '204': @@ -96569,7 +96707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96611,7 +96749,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: - - *622 + - *623 - *311 - *312 responses: @@ -96619,7 +96757,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *631 + schema: *632 examples: alternative-response-with-extra-repository-information: value: @@ -96770,7 +96908,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: - - *622 + - *623 - *311 - *312 requestBody: @@ -96822,7 +96960,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: - - *622 + - *623 - *311 - *312 responses: @@ -96853,7 +96991,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: - - *622 + - *623 responses: '200': description: Response @@ -96888,7 +97026,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: - - *622 + - *623 requestBody: required: true content: @@ -96980,7 +97118,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96992,7 +97130,7 @@ paths: type: array items: *229 examples: - response-if-child-teams-exist: *632 + response-if-child-teams-exist: *633 headers: Link: *37 '404': *6 @@ -97025,7 +97163,7 @@ paths: application/json: schema: oneOf: - - &634 + - &635 title: Private User description: Private User type: object @@ -97275,7 +97413,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *633 + - *634 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97435,7 +97573,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -97833,7 +97971,7 @@ paths: type: integer secrets: type: array - items: &635 + items: &636 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97953,7 +98091,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -98099,7 +98237,7 @@ paths: type: array items: *152 examples: - default: *636 + default: *637 '401': *23 '403': *27 '404': *6 @@ -98366,7 +98504,7 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98419,7 +98557,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &638 + default: &639 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98464,9 +98602,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -98505,7 +98643,7 @@ paths: type: array items: *416 examples: - default: *639 + default: *640 '304': *35 '500': *80 '401': *23 @@ -99471,7 +99609,7 @@ paths: type: array items: *244 examples: - default: &652 + default: &653 value: - id: 197 name: hello_docker @@ -99572,7 +99710,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Email description: Email type: object @@ -99642,9 +99780,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: &654 + default: &655 value: - email: octocat@github.com verified: true @@ -99721,7 +99859,7 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: default: value: @@ -99979,7 +100117,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: GPG Key description: A unique encryption key type: object @@ -100124,7 +100262,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -100209,9 +100347,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: &642 + default: &643 value: id: 3 name: Octocat's GPG Key @@ -100268,7 +100406,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: - - &643 + - &644 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100280,9 +100418,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '304': *35 '403': *27 @@ -100305,7 +100443,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: - - *643 + - *644 responses: '204': description: Response @@ -100496,7 +100634,7 @@ paths: type: array items: *55 examples: - default: *644 + default: *645 headers: Link: *37 '404': *6 @@ -100760,7 +100898,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -100858,9 +100996,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100899,9 +101037,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -100957,7 +101095,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101036,7 +101174,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101098,9 +101236,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *37 '304': *35 @@ -102104,7 +102242,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *239 - - *649 + - *650 responses: '204': description: Response @@ -102177,7 +102315,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 '304': *35 @@ -102219,7 +102357,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *18 - *17 responses: @@ -102231,8 +102369,8 @@ paths: type: array items: *244 examples: - default: *652 - '400': *653 + default: *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102261,7 +102399,7 @@ paths: application/json: schema: *244 examples: - default: &666 + default: &667 value: id: 40201 name: octo-name @@ -102713,9 +102851,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: *654 + default: *655 headers: Link: *37 '304': *35 @@ -102828,7 +102966,7 @@ paths: type: array items: *55 examples: - default: &661 + default: &662 summary: Default response value: - id: 1296269 @@ -103186,7 +103324,7 @@ paths: type: array items: *486 examples: - default: *655 + default: *656 headers: Link: *37 '304': *35 @@ -103265,7 +103403,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Social account description: Social media account type: object @@ -103282,7 +103420,7 @@ paths: - provider - url examples: - default: &657 + default: &658 value: - provider: twitter url: https://twitter.com/github @@ -103345,9 +103483,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 '422': *15 '304': *35 '404': *6 @@ -103435,7 +103573,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103455,7 +103593,7 @@ paths: - title - created_at examples: - default: &667 + default: &668 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103522,9 +103660,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103555,7 +103693,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: - - &660 + - &661 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103567,9 +103705,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -103592,7 +103730,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: - - *660 + - *661 responses: '204': description: Response @@ -103621,7 +103759,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: - - &668 + - &669 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 @@ -103646,11 +103784,11 @@ paths: type: array items: *55 examples: - default-response: *661 + default-response: *662 application/vnd.github.v3.star+json: schema: type: array - items: &669 + items: &670 title: Starred Repository description: Starred Repository type: object @@ -104017,10 +104155,10 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: &663 + default-response: &664 summary: Default response value: login: octocat @@ -104055,7 +104193,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &664 + response-with-git-hub-plan-information: &665 summary: Response with GitHub plan information value: login: octocat @@ -104115,7 +104253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *662 + - *663 - *17 responses: '200': @@ -104162,11 +104300,11 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: *663 - response-with-git-hub-plan-information: *664 + default-response: *664 + response-with-git-hub-plan-information: *665 '404': *6 x-github: githubCloudOnly: false @@ -104330,7 +104468,7 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 x-github: @@ -104734,9 +104872,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *665 + default: *666 headers: Link: *37 x-github: @@ -104918,7 +105056,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 x-github: @@ -104957,7 +105095,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *174 - *18 - *17 @@ -104970,10 +105108,10 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 - '400': *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105003,7 +105141,7 @@ paths: application/json: schema: *244 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105686,9 +105824,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 headers: Link: *37 x-github: @@ -105718,9 +105856,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *667 + default: *668 headers: Link: *37 x-github: @@ -105745,7 +105883,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *174 - - *668 + - *669 - *76 - *17 - *18 @@ -105757,11 +105895,11 @@ paths: schema: anyOf: - type: array - items: *669 + items: *670 - type: array items: *55 examples: - default-response: *661 + default-response: *662 headers: Link: *37 x-github: @@ -105921,7 +106059,7 @@ webhooks: type: string enum: - disabled - enterprise: &670 + enterprise: &671 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -105990,7 +106128,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &671 + installation: &672 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106011,7 +106149,7 @@ webhooks: required: - id - node_id - organization: &672 + organization: &673 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106084,7 +106222,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &673 + repository: &674 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -106997,10 +107135,10 @@ webhooks: type: string enum: - enabled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -107076,11 +107214,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: &674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: &675 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) @@ -107303,11 +107441,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: *674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: *675 sender: *4 required: - action @@ -107495,11 +107633,11 @@ webhooks: - everyone required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: *674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: *675 sender: *4 required: - action @@ -107572,7 +107710,7 @@ webhooks: required: true content: application/json: - schema: &677 + schema: &678 title: Exemption request cancellation event type: object properties: @@ -107580,11 +107718,11 @@ webhooks: type: string enum: - cancelled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: &675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: &676 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -107738,7 +107876,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &676 + items: &677 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -107844,7 +107982,7 @@ webhooks: required: true content: application/json: - schema: &678 + schema: &679 title: Exemption request completed event type: object properties: @@ -107852,11 +107990,11 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 sender: *4 required: - action @@ -107928,7 +108066,7 @@ webhooks: required: true content: application/json: - schema: &679 + schema: &680 title: Exemption request created event type: object properties: @@ -107936,11 +108074,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 sender: *4 required: - action @@ -108012,7 +108150,7 @@ webhooks: required: true content: application/json: - schema: &680 + schema: &681 title: Exemption response dismissed event type: object properties: @@ -108020,12 +108158,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 - exemption_response: *676 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 + exemption_response: *677 sender: *4 required: - action @@ -108099,7 +108237,7 @@ webhooks: required: true content: application/json: - schema: &681 + schema: &682 title: Exemption response submitted event type: object properties: @@ -108107,12 +108245,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 - exemption_response: *676 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 + exemption_response: *677 sender: *4 required: - action @@ -108185,7 +108323,7 @@ webhooks: required: true content: application/json: - schema: *677 + schema: *678 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108252,7 +108390,7 @@ webhooks: required: true content: application/json: - schema: *678 + schema: *679 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108319,7 +108457,7 @@ webhooks: required: true content: application/json: - schema: *679 + schema: *680 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108386,7 +108524,7 @@ webhooks: required: true content: application/json: - schema: *680 + schema: *681 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108454,7 +108592,7 @@ webhooks: required: true content: application/json: - schema: *681 + schema: *682 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108532,7 +108670,7 @@ webhooks: type: string enum: - completed - check_run: &683 + check_run: &684 title: CheckRun description: A check performed on the code of a given code change type: object @@ -108645,7 +108783,7 @@ webhooks: - examples: - neutral - deployment: *682 + deployment: *683 details_url: type: string examples: @@ -108743,9 +108881,9 @@ webhooks: - output - app - pull_requests - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -109138,10 +109276,10 @@ webhooks: type: string enum: - created - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -109537,10 +109675,10 @@ webhooks: type: string enum: - requested_action - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 requested_action: description: The action requested by the user. type: object @@ -109945,10 +110083,10 @@ webhooks: type: string enum: - rerequested - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -110940,10 +111078,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -111628,10 +111766,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -112310,10 +112448,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -112620,20 +112758,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &684 + commit_oid: &685 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: *670 - installation: *671 - organization: *672 - ref: &685 + enterprise: *671 + installation: *672 + organization: *673 + ref: &686 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: *673 + repository: *674 sender: *4 required: - action @@ -112961,12 +113099,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113239,12 +113377,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113576,12 +113714,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113850,9 +113988,9 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -113860,7 +113998,7 @@ webhooks: type: - string - 'null' - repository: *673 + repository: *674 sender: *4 required: - action @@ -114092,12 +114230,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -114359,10 +114497,10 @@ webhooks: - updated_at - author_association - body - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -114443,18 +114581,18 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *672 - pusher_type: &686 + organization: *673 + pusher_type: &687 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &687 + ref: &688 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -114464,7 +114602,7 @@ webhooks: enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114547,9 +114685,9 @@ webhooks: enum: - created definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114634,9 +114772,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114714,9 +114852,9 @@ webhooks: enum: - updated definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114793,10 +114931,10 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - repository: *673 - organization: *672 + enterprise: *671 + installation: *672 + repository: *674 + organization: *673 sender: *4 new_property_values: type: array @@ -114881,18 +115019,18 @@ webhooks: title: delete event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - pusher_type: *686 - ref: *687 + enterprise: *671 + installation: *672 + organization: *673 + pusher_type: *687 + ref: *688 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114977,10 +115115,10 @@ webhooks: enum: - auto_dismissed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115065,10 +115203,10 @@ webhooks: enum: - auto_reopened alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115153,10 +115291,10 @@ webhooks: enum: - created alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115239,10 +115377,10 @@ webhooks: enum: - dismissed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115325,10 +115463,10 @@ webhooks: enum: - fixed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115412,10 +115550,10 @@ webhooks: enum: - reintroduced alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115498,10 +115636,10 @@ webhooks: enum: - reopened alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115578,9 +115716,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - key: &688 + enterprise: *671 + installation: *672 + key: &689 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115618,8 +115756,8 @@ webhooks: - verified - created_at - read_only - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -115696,11 +115834,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - key: *688 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + key: *689 + organization: *673 + repository: *674 sender: *4 required: - action @@ -116272,12 +116410,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: &692 + workflow: &693 title: Workflow type: - object @@ -117019,9 +117157,9 @@ webhooks: pull_requests: type: array items: *529 - repository: *673 - organization: *672 - installation: *671 + repository: *674 + organization: *673 + installation: *672 sender: *4 responses: '200': @@ -117092,7 +117230,7 @@ webhooks: type: string enum: - approved - approver: &689 + approver: &690 type: object properties: avatar_url: @@ -117135,11 +117273,11 @@ webhooks: type: string comment: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - reviewers: &690 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + reviewers: &691 type: array items: type: object @@ -117220,7 +117358,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &691 + workflow_job_run: &692 type: object properties: conclusion: @@ -117966,18 +118104,18 @@ webhooks: type: string enum: - rejected - approver: *689 + approver: *690 comment: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - reviewers: *690 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + reviewers: *691 sender: *4 since: type: string - workflow_job_run: *691 + workflow_job_run: *692 workflow_job_runs: type: array items: @@ -118694,13 +118832,13 @@ webhooks: type: string enum: - requested - enterprise: *670 + enterprise: *671 environment: type: string - installation: *671 - organization: *672 - repository: *673 - requestor: &697 + installation: *672 + organization: *673 + repository: *674 + requestor: &698 title: User type: - object @@ -120643,12 +120781,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Deployment Workflow Run type: @@ -121339,7 +121477,7 @@ webhooks: type: string enum: - answered - answer: &695 + answer: &696 type: object properties: author_association: @@ -121499,7 +121637,7 @@ webhooks: - created_at - updated_at - body - discussion: &693 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -121817,10 +121955,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -121947,11 +122085,11 @@ webhooks: - from required: - category - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122034,11 +122172,11 @@ webhooks: type: string enum: - closed - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122120,7 +122258,7 @@ webhooks: type: string enum: - created - comment: &694 + comment: &695 type: object properties: author_association: @@ -122280,11 +122418,11 @@ webhooks: - updated_at - body - reactions - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122367,12 +122505,12 @@ webhooks: type: string enum: - deleted - comment: *694 - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + comment: *695 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122467,12 +122605,12 @@ webhooks: - from required: - body - comment: *694 - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + comment: *695 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122556,11 +122694,11 @@ webhooks: type: string enum: - created - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122642,11 +122780,11 @@ webhooks: type: string enum: - deleted - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122746,11 +122884,11 @@ webhooks: type: string required: - from - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122832,10 +122970,10 @@ webhooks: type: string enum: - labeled - discussion: *693 - enterprise: *670 - installation: *671 - label: &696 + discussion: *694 + enterprise: *671 + installation: *672 + label: &697 title: Label type: object properties: @@ -122868,8 +123006,8 @@ webhooks: - color - default - description - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122952,11 +123090,11 @@ webhooks: type: string enum: - locked - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123038,11 +123176,11 @@ webhooks: type: string enum: - pinned - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123124,11 +123262,11 @@ webhooks: type: string enum: - reopened - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123213,16 +123351,16 @@ webhooks: changes: type: object properties: - new_discussion: *693 - new_repository: *673 + new_discussion: *694 + new_repository: *674 required: - new_discussion - new_repository - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123305,10 +123443,10 @@ webhooks: type: string enum: - unanswered - discussion: *693 - old_answer: *695 - organization: *672 - repository: *673 + discussion: *694 + old_answer: *696 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123390,12 +123528,12 @@ webhooks: type: string enum: - unlabeled - discussion: *693 - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123478,11 +123616,11 @@ webhooks: type: string enum: - unlocked - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123564,11 +123702,11 @@ webhooks: type: string enum: - unpinned - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123641,7 +123779,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *670 + enterprise: *671 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -124319,9 +124457,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - forkee @@ -124467,9 +124605,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pages: description: The pages that were updated. type: array @@ -124507,7 +124645,7 @@ webhooks: - action - sha - html_url - repository: *673 + repository: *674 sender: *4 required: - pages @@ -124583,10 +124721,10 @@ webhooks: type: string enum: - created - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: &698 + organization: *673 + repositories: &699 description: An array of repository objects that the installation can access. type: array @@ -124612,8 +124750,8 @@ webhooks: - name - full_name - private - repository: *673 - requester: *697 + repository: *674 + requester: *698 sender: *4 required: - action @@ -124688,11 +124826,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -124769,11 +124907,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -124850,10 +124988,10 @@ webhooks: type: string enum: - added - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories_added: &699 + organization: *673 + repositories_added: &700 description: An array of repository objects, which were added to the installation. type: array @@ -124899,15 +125037,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *673 - repository_selection: &700 + repository: *674 + repository_selection: &701 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *697 + requester: *698 sender: *4 required: - action @@ -124986,10 +125124,10 @@ webhooks: type: string enum: - removed - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories_added: *699 + organization: *673 + repositories_added: *700 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125016,9 +125154,9 @@ webhooks: - name - full_name - private - repository: *673 - repository_selection: *700 - requester: *697 + repository: *674 + repository_selection: *701 + requester: *698 sender: *4 required: - action @@ -125097,11 +125235,11 @@ webhooks: type: string enum: - suspend - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -125284,10 +125422,10 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 target_type: type: string @@ -125366,11 +125504,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -125618,8 +125756,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -126795,8 +126933,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -126876,7 +127014,7 @@ webhooks: type: string enum: - deleted - comment: &701 + comment: &702 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -127043,8 +127181,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -128218,8 +128356,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -128299,7 +128437,7 @@ webhooks: type: string enum: - edited - changes: &726 + changes: &727 description: The changes to the comment. type: object properties: @@ -128311,9 +128449,9 @@ webhooks: type: string required: - from - comment: *701 - enterprise: *670 - installation: *671 + comment: *702 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -129488,8 +129626,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -129571,10 +129709,10 @@ webhooks: type: string enum: - assigned - assignee: *697 - enterprise: *670 - installation: *671 - issue: &704 + assignee: *698 + enterprise: *671 + installation: *672 + issue: &705 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -130504,8 +130642,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -130585,8 +130723,8 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -131664,8 +131802,8 @@ webhooks: required: - state - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -131744,8 +131882,8 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -132668,8 +132806,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -132748,8 +132886,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -133676,7 +133814,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &702 + milestone: &703 title: Milestone description: A collection of related issues and pull requests. type: object @@ -133819,8 +133957,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -133919,8 +134057,8 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -134850,9 +134988,9 @@ webhooks: - active_lock_reason - body - reactions - label: *696 - organization: *672 - repository: *673 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -134932,8 +135070,8 @@ webhooks: type: string enum: - labeled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -135862,9 +136000,9 @@ webhooks: - active_lock_reason - body - reactions - label: *696 - organization: *672 - repository: *673 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -135944,8 +136082,8 @@ webhooks: type: string enum: - locked - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136876,8 +137014,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -136956,8 +137094,8 @@ webhooks: type: string enum: - milestoned - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137882,9 +138020,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *702 - organization: *672 - repository: *673 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -139370,8 +139508,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140300,8 +140438,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -140381,9 +140519,9 @@ webhooks: type: string enum: - pinned - enterprise: *670 - installation: *671 - issue: &703 + enterprise: *671 + installation: *672 + issue: &704 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -141306,8 +141444,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -141386,8 +141524,8 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142317,8 +142455,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143804,11 +143942,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *670 - installation: *671 - issue: *703 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *704 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143889,7 +144027,7 @@ webhooks: type: string enum: - unassigned - assignee: &729 + assignee: &730 title: User type: - object @@ -143961,11 +144099,11 @@ webhooks: required: - login - id - enterprise: *670 - installation: *671 - issue: *704 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *705 + organization: *673 + repository: *674 sender: *4 required: - action @@ -144044,12 +144182,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *670 - installation: *671 - issue: *704 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *705 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -144129,8 +144267,8 @@ webhooks: type: string enum: - unlocked - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145059,8 +145197,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145140,11 +145278,11 @@ webhooks: type: string enum: - unpinned - enterprise: *670 - installation: *671 - issue: *703 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *704 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145223,11 +145361,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145305,11 +145443,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145419,11 +145557,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145505,9 +145643,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: &705 + enterprise: *671 + installation: *672 + marketplace_purchase: &706 title: Marketplace Purchase type: object required: @@ -145595,8 +145733,8 @@ webhooks: type: integer unit_count: type: integer - organization: *672 - previous_marketplace_purchase: &706 + organization: *673 + previous_marketplace_purchase: &707 title: Marketplace Purchase type: object properties: @@ -145680,7 +145818,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145760,10 +145898,10 @@ webhooks: - changed effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145851,7 +145989,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145933,10 +146071,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -146022,7 +146160,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -146103,8 +146241,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 marketplace_purchase: title: Marketplace Purchase type: object @@ -146190,9 +146328,9 @@ webhooks: type: integer unit_count: type: integer - organization: *672 - previous_marketplace_purchase: *706 - repository: *673 + organization: *673 + previous_marketplace_purchase: *707 + repository: *674 sender: *4 required: - action @@ -146272,12 +146410,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 - previous_marketplace_purchase: *706 - repository: *673 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 + previous_marketplace_purchase: *707 + repository: *674 sender: *4 required: - action @@ -146379,11 +146517,11 @@ webhooks: type: string required: - to - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146485,11 +146623,11 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146568,11 +146706,11 @@ webhooks: type: string enum: - removed - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146650,11 +146788,11 @@ webhooks: type: string enum: - added - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146732,7 +146870,7 @@ webhooks: required: - login - id - team: &707 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146925,11 +147063,11 @@ webhooks: type: string enum: - removed - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 scope: description: The scope of the membership. Currently, can only be `team`. @@ -147008,7 +147146,7 @@ webhooks: required: - login - id - team: *707 + team: *708 required: - action - scope @@ -147090,8 +147228,8 @@ webhooks: type: string enum: - checks_requested - installation: *671 - merge_group: &708 + installation: *672 + merge_group: &709 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -147117,8 +147255,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147204,10 +147342,10 @@ webhooks: - merged - invalidated - dequeued - installation: *671 - merge_group: *708 - organization: *672 - repository: *673 + installation: *672 + merge_group: *709 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147280,7 +147418,7 @@ webhooks: type: string enum: - deleted - enterprise: *670 + enterprise: *671 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -147388,12 +147526,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *671 - organization: *672 + installation: *672 + organization: *673 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -147473,11 +147611,11 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147556,9 +147694,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - milestone: &709 + enterprise: *671 + installation: *672 + milestone: &710 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147700,8 +147838,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147780,11 +147918,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147894,11 +148032,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147978,11 +148116,11 @@ webhooks: type: string enum: - opened - enterprise: *670 - installation: *671 - milestone: *709 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *710 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148061,11 +148199,11 @@ webhooks: type: string enum: - blocked - blocked_user: *697 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + blocked_user: *698 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148144,11 +148282,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *697 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + blocked_user: *698 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148227,9 +148365,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - membership: &710 + enterprise: *671 + installation: *672 + membership: &711 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -148323,8 +148461,8 @@ webhooks: - role - organization_url - user - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148402,11 +148540,11 @@ webhooks: type: string enum: - member_added - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148485,8 +148623,8 @@ webhooks: type: string enum: - member_invited - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -148608,10 +148746,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 - user: *697 + user: *698 required: - action - invitation @@ -148689,11 +148827,11 @@ webhooks: type: string enum: - member_removed - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148780,11 +148918,11 @@ webhooks: properties: from: type: string - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148860,9 +148998,9 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 package: description: Information about the package. type: object @@ -149385,7 +149523,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &711 + items: &712 title: Ruby Gems metadata type: object properties: @@ -149482,7 +149620,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -149558,9 +149696,9 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 package: description: Information about the package. type: object @@ -149922,7 +150060,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 source_url: type: string format: uri @@ -149993,7 +150131,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -150174,12 +150312,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *670 + enterprise: *671 id: type: integer - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - id @@ -150259,7 +150397,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &712 + personal_access_token_request: &713 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -150409,10 +150547,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *670 - organization: *672 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150491,11 +150629,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *712 - enterprise: *670 - organization: *672 + personal_access_token_request: *713 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150573,11 +150711,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *712 - enterprise: *670 - organization: *672 + personal_access_token_request: *713 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150654,11 +150792,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *712 - organization: *672 - enterprise: *670 + personal_access_token_request: *713 + organization: *673 + enterprise: *671 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150762,7 +150900,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *713 + last_response: *714 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -150794,8 +150932,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 zen: description: Random string of GitHub zen. @@ -151040,10 +151178,10 @@ webhooks: - from required: - note - enterprise: *670 - installation: *671 - organization: *672 - project_card: &714 + enterprise: *671 + installation: *672 + organization: *673 + project_card: &715 title: Project Card type: object properties: @@ -151166,7 +151304,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -151247,11 +151385,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project_card: *714 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_card: *715 + repository: *674 sender: *4 required: - action @@ -151331,9 +151469,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 project_card: title: Project Card type: object @@ -151463,7 +151601,7 @@ webhooks: repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -151557,11 +151695,11 @@ webhooks: - from required: - note - enterprise: *670 - installation: *671 - organization: *672 - project_card: *714 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_card: *715 + repository: *674 sender: *4 required: - action @@ -151655,9 +151793,9 @@ webhooks: - from required: - column_id - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 project_card: allOf: - title: Project Card @@ -151854,7 +151992,7 @@ webhooks: type: string required: - after_id - repository: *673 + repository: *674 sender: *4 required: - action @@ -151934,10 +152072,10 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - organization: *672 - project: &716 + enterprise: *671 + installation: *672 + organization: *673 + project: &717 title: Project type: object properties: @@ -152064,7 +152202,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152144,10 +152282,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project_column: &715 + enterprise: *671 + installation: *672 + organization: *673 + project_column: &716 title: Project Column type: object properties: @@ -152187,7 +152325,7 @@ webhooks: - name - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152266,14 +152404,14 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -152362,11 +152500,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 + repository: *674 sender: *4 required: - action @@ -152446,11 +152584,11 @@ webhooks: type: string enum: - moved - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 + repository: *674 sender: *4 required: - action @@ -152530,11 +152668,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152614,14 +152752,14 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - project: *716 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -152722,11 +152860,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152805,11 +152943,11 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152890,9 +153028,9 @@ webhooks: type: string enum: - closed - installation: *671 - organization: *672 - projects_v2: &717 + installation: *672 + organization: *673 + projects_v2: &718 title: Projects v2 Project description: A projects v2 project type: object @@ -153040,9 +153178,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153123,9 +153261,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153246,9 +153384,9 @@ webhooks: type: string to: type: string - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153331,7 +153469,7 @@ webhooks: type: string enum: - archived - changes: &721 + changes: &722 type: object properties: archived_at: @@ -153347,9 +153485,9 @@ webhooks: - string - 'null' format: date-time - installation: *671 - organization: *672 - projects_v2_item: &718 + installation: *672 + organization: *673 + projects_v2_item: &719 title: Projects v2 Item description: An item belonging to a project type: object @@ -153488,9 +153626,9 @@ webhooks: - 'null' to: type: string - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153572,9 +153710,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153655,9 +153793,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153762,7 +153900,7 @@ webhooks: oneOf: - type: string - type: integer - - &719 + - &720 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -153782,7 +153920,7 @@ webhooks: required: - id - name - - &720 + - &721 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153811,8 +153949,8 @@ webhooks: oneOf: - type: string - type: integer - - *719 - *720 + - *721 type: - 'null' - string @@ -153835,9 +153973,9 @@ webhooks: - 'null' required: - body - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153934,9 +154072,9 @@ webhooks: type: - string - 'null' - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -154019,10 +154157,10 @@ webhooks: type: string enum: - restored - changes: *721 - installation: *671 - organization: *672 - projects_v2_item: *718 + changes: *722 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -154104,9 +154242,9 @@ webhooks: type: string enum: - reopened - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -154187,9 +154325,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2_status_update: &722 + installation: *672 + organization: *673 + projects_v2_status_update: &723 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -154324,9 +154462,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2_status_update: *722 + installation: *672 + organization: *673 + projects_v2_status_update: *723 sender: *4 required: - action @@ -154472,9 +154610,9 @@ webhooks: - string - 'null' format: date - installation: *671 - organization: *672 - projects_v2_status_update: *722 + installation: *672 + organization: *673 + projects_v2_status_update: *723 sender: *4 required: - action @@ -154545,10 +154683,10 @@ webhooks: title: public event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - repository @@ -154625,13 +154763,13 @@ webhooks: type: string enum: - assigned - assignee: *697 - enterprise: *670 - installation: *671 - number: &723 + assignee: *698 + enterprise: *671 + installation: *672 + number: &724 description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -156980,7 +157118,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -157062,11 +157200,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -159408,7 +159546,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -159490,11 +159628,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -161836,7 +161974,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -161918,11 +162056,11 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: &724 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: &725 allOf: - *529 - type: object @@ -161986,7 +162124,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *673 + repository: *674 sender: *4 required: - action @@ -162067,12 +162205,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -162152,11 +162290,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *670 + enterprise: *671 milestone: *428 - number: *723 - organization: *672 - pull_request: &725 + number: *724 + organization: *673 + pull_request: &726 title: Pull Request type: object properties: @@ -164483,7 +164621,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -164562,11 +164700,11 @@ webhooks: type: string enum: - dequeued - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -166912,7 +167050,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *673 + repository: *674 sender: *4 required: - action @@ -167036,12 +167174,12 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -167121,11 +167259,11 @@ webhooks: type: string enum: - enqueued - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -169456,7 +169594,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -169536,11 +169674,11 @@ webhooks: type: string enum: - labeled - enterprise: *670 - installation: *671 - label: *696 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + label: *697 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -171888,7 +172026,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -171969,10 +172107,10 @@ webhooks: type: string enum: - locked - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -174318,7 +174456,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -174398,12 +174536,12 @@ webhooks: type: string enum: - milestoned - enterprise: *670 + enterprise: *671 milestone: *428 - number: *723 - organization: *672 - pull_request: *725 - repository: *673 + number: *724 + organization: *673 + pull_request: *726 + repository: *674 sender: *4 required: - action @@ -174482,12 +174620,12 @@ webhooks: type: string enum: - opened - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -174568,12 +174706,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -174653,12 +174791,12 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -175033,9 +175171,9 @@ webhooks: - start_side - side - reactions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -177265,7 +177403,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -177345,7 +177483,7 @@ webhooks: type: string enum: - deleted - comment: &727 + comment: &728 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. @@ -177638,9 +177776,9 @@ webhooks: - start_side - side - reactions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -179858,7 +179996,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -179938,11 +180076,11 @@ webhooks: type: string enum: - edited - changes: *726 - comment: *727 - enterprise: *670 - installation: *671 - organization: *672 + changes: *727 + comment: *728 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -182163,7 +182301,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -182244,9 +182382,9 @@ webhooks: type: string enum: - dismissed - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -184479,7 +184617,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 review: description: The review that was affected. type: object @@ -184725,9 +184863,9 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -186841,8 +186979,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: &728 + repository: *674 + review: &729 description: The review that was affected. type: object properties: @@ -187075,12 +187213,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -189427,7 +189565,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -189513,12 +189651,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -191872,7 +192010,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_team: title: Team description: Groups of organization members that gives permissions @@ -192067,12 +192205,12 @@ webhooks: type: string enum: - review_requested - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -194421,7 +194559,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -194508,12 +194646,12 @@ webhooks: type: string enum: - review_requested - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -196853,7 +196991,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_team: title: Team description: Groups of organization members that gives permissions @@ -197037,9 +197175,9 @@ webhooks: type: string enum: - submitted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -199275,8 +199413,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: *728 + repository: *674 + review: *729 sender: *4 required: - action @@ -199356,9 +199494,9 @@ webhooks: type: string enum: - resolved - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -201489,7 +201627,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -201881,9 +202019,9 @@ webhooks: type: string enum: - unresolved - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -203997,7 +204135,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -204391,10 +204529,10 @@ webhooks: type: string before: type: string - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -206729,7 +206867,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -206811,11 +206949,11 @@ webhooks: type: string enum: - unassigned - assignee: *729 - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + assignee: *730 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -209165,7 +209303,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -209244,11 +209382,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *670 - installation: *671 - label: *696 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + label: *697 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -211587,7 +211725,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -211668,10 +211806,10 @@ webhooks: type: string enum: - unlocked - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -214000,7 +214138,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -214203,7 +214341,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *670 + enterprise: *671 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -214298,8 +214436,8 @@ webhooks: - url - author - committer - installation: *671 - organization: *672 + installation: *672 + organization: *673 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -214887,9 +215025,9 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 registry_package: type: object properties: @@ -215366,7 +215504,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215422,7 +215560,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215500,9 +215638,9 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 registry_package: type: object properties: @@ -215814,7 +215952,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215864,7 +216002,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215941,10 +216079,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - release: &730 + enterprise: *671 + installation: *672 + organization: *673 + release: &731 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -216260,7 +216398,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *673 + repository: *674 sender: *4 required: - action @@ -216337,11 +216475,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -216449,11 +216587,11 @@ webhooks: type: boolean required: - to - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -216531,9 +216669,9 @@ webhooks: type: string enum: - prereleased - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -216854,7 +216992,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -216930,10 +217068,10 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - release: &731 + enterprise: *671 + installation: *672 + organization: *673 + release: &732 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -217251,7 +217389,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -217327,11 +217465,11 @@ webhooks: type: string enum: - released - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -217407,11 +217545,11 @@ webhooks: type: string enum: - unpublished - enterprise: *670 - installation: *671 - organization: *672 - release: *731 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *732 + repository: *674 sender: *4 required: - action @@ -217487,11 +217625,11 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - repository_advisory: *582 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + repository_advisory: *583 sender: *4 required: - action @@ -217567,11 +217705,11 @@ webhooks: type: string enum: - reported - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - repository_advisory: *582 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + repository_advisory: *583 sender: *4 required: - action @@ -217647,10 +217785,10 @@ webhooks: type: string enum: - archived - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217727,10 +217865,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217808,10 +217946,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217896,10 +218034,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218014,10 +218152,10 @@ webhooks: - 'null' items: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218089,10 +218227,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 status: type: string @@ -218173,10 +218311,10 @@ webhooks: type: string enum: - privatized - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218253,10 +218391,10 @@ webhooks: type: string enum: - publicized - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218350,10 +218488,10 @@ webhooks: - name required: - repository - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218433,10 +218571,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 sender: *4 required: @@ -218515,10 +218653,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 sender: *4 required: @@ -218597,10 +218735,10 @@ webhooks: type: string enum: - edited - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 changes: type: object @@ -218908,10 +219046,10 @@ webhooks: - from required: - owner - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218989,10 +219127,10 @@ webhooks: type: string enum: - unarchived - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219070,7 +219208,7 @@ webhooks: type: string enum: - create - alert: &732 + alert: &733 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -219194,10 +219332,10 @@ webhooks: type: string enum: - open - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219407,10 +219545,10 @@ webhooks: type: string enum: - dismissed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219488,11 +219626,11 @@ webhooks: type: string enum: - reopen - alert: *732 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *733 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219694,10 +219832,10 @@ webhooks: enum: - fixed - open - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219775,7 +219913,7 @@ webhooks: type: string enum: - created - alert: &733 + alert: &734 type: object properties: number: *81 @@ -219879,10 +220017,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219963,11 +220101,11 @@ webhooks: type: string enum: - created - alert: *733 - installation: *671 - location: *734 - organization: *672 - repository: *673 + alert: *734 + installation: *672 + location: *735 + organization: *673 + repository: *674 sender: *4 required: - location @@ -220205,11 +220343,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220287,11 +220425,11 @@ webhooks: type: string enum: - reopened - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220369,11 +220507,11 @@ webhooks: type: string enum: - resolved - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220451,11 +220589,11 @@ webhooks: type: string enum: - validated - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220531,11 +220669,11 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - security_advisory: &735 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + security_advisory: &736 description: The details of the security advisory, including summary, description, and severity. type: object @@ -220721,11 +220859,11 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - security_advisory: *735 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + security_advisory: *736 sender: *4 required: - action @@ -220798,10 +220936,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -220988,9 +221126,9 @@ webhooks: type: object properties: security_and_analysis: *263 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: *324 sender: *4 required: @@ -221069,12 +221207,12 @@ webhooks: type: string enum: - cancelled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: &736 + sponsorship: &737 type: object properties: created_at: @@ -221379,12 +221517,12 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - sponsorship @@ -221472,12 +221610,12 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221554,17 +221692,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &737 + effective_date: &738 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: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - sponsorship @@ -221638,7 +221776,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &738 + changes: &739 type: object properties: tier: @@ -221682,13 +221820,13 @@ webhooks: - from required: - tier - effective_date: *737 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + effective_date: *738 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221765,13 +221903,13 @@ webhooks: type: string enum: - tier_changed - changes: *738 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + changes: *739 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221845,10 +221983,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -221932,10 +222070,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -222238,6 +222376,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -222364,15 +222506,15 @@ webhooks: type: - string - 'null' - enterprise: *670 + enterprise: *671 id: description: The unique identifier of the status. type: integer - installation: *671 + installation: *672 name: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 sha: description: The Commit SHA. @@ -222488,9 +222630,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222580,9 +222722,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222672,9 +222814,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222764,9 +222906,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222843,12 +222985,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - team: &739 + team: &740 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -223041,9 +223183,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -223513,7 +223655,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -223589,9 +223731,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -224061,7 +224203,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224138,9 +224280,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -224610,7 +224752,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224754,9 +224896,9 @@ webhooks: - from required: - permissions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -225226,7 +225368,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - changes @@ -225304,9 +225446,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -225776,7 +225918,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -225852,10 +225994,10 @@ webhooks: type: string enum: - started - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -225928,17 +226070,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *670 + enterprise: *671 inputs: type: - object - 'null' additionalProperties: true - installation: *671 - organization: *672 + installation: *672 + organization: *673 ref: type: string - repository: *673 + repository: *674 sender: *4 workflow: type: string @@ -226020,10 +226162,10 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: allOf: @@ -226358,10 +226500,10 @@ webhooks: type: string enum: - in_progress - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: allOf: @@ -226722,10 +226864,10 @@ webhooks: type: string enum: - queued - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: type: object @@ -226950,10 +227092,10 @@ webhooks: type: string enum: - waiting - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: type: object @@ -227180,12 +227322,12 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -228204,12 +228346,12 @@ webhooks: type: string enum: - in_progress - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -229213,12 +229355,12 @@ webhooks: type: string enum: - requested - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 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 eaa4210d8..c12bd9f7e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -228122,6 +228122,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -247197,6 +247203,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -285870,6 +285882,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -292833,6 +292851,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -299054,6 +299078,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -299766,6 +299796,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -300510,6 +300546,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -302707,6 +302749,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -302764,7 +302812,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -302929,6 +302978,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -302986,7 +303041,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -303440,6 +303496,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -303482,7 +303544,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -329549,6 +329612,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -329608,7 +329677,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -329968,6 +330038,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -330028,7 +330104,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -331321,6 +331398,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -331633,6 +331716,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -400616,6 +400705,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -406287,6 +406382,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -444699,6 +444800,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -481335,6 +481442,280 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "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" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -523772,6 +524153,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -1318321,6 +1318708,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 17be690e6..647928c44 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -1062,7 +1062,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: - - &584 + - &585 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1734,7 +1734,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &594 + schema: &595 title: Scim Error description: Scim Error type: object @@ -15985,7 +15985,7 @@ paths: url: type: string format: uri - user: &633 + user: &634 title: Public User description: Public User type: object @@ -20519,7 +20519,7 @@ paths: type: array items: *50 examples: - default: &650 + default: &651 value: - login: github id: 1 @@ -21782,7 +21782,7 @@ paths: type: array items: *55 examples: - default: &644 + default: &645 value: total_count: 1 repositories: @@ -22550,7 +22550,7 @@ paths: type: array items: *152 examples: - default: &636 + default: &637 value: total_count: 1 repositories: @@ -33268,7 +33268,7 @@ paths: parameters: - *134 - *239 - - &649 + - &650 name: repo_name description: repo_name parameter in: path @@ -34592,7 +34592,7 @@ paths: - nuget - container - *134 - - &651 + - &652 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -34633,7 +34633,7 @@ paths: default: *245 '403': *27 '401': *23 - '400': &653 + '400': &654 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39786,7 +39786,7 @@ paths: application/json: schema: type: array - items: &582 + items: &583 description: A repository security advisory. type: object properties: @@ -40105,7 +40105,7 @@ paths: - private_fork additionalProperties: false examples: - default: &583 + default: &584 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -41778,7 +41778,7 @@ paths: - updated_at - url examples: - default: &623 + default: &624 value: - author: login: octocat @@ -42026,7 +42026,7 @@ paths: application/json: schema: *294 examples: - default: &624 + default: &625 value: author: login: octocat @@ -42217,7 +42217,7 @@ paths: - updated_at - url examples: - default: &625 + default: &626 value: - author: login: octocat @@ -42443,7 +42443,7 @@ paths: application/json: schema: *297 examples: - default: &626 + default: &627 value: author: login: octocat @@ -43159,7 +43159,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &627 + response-if-user-is-a-team-maintainer: &628 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -43224,7 +43224,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &628 + response-if-users-membership-with-team-is-now-pending: &629 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -43367,7 +43367,7 @@ paths: - updated_at - permissions examples: - default: &629 + default: &630 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -43444,7 +43444,7 @@ paths: application/json: schema: *309 examples: - default: &630 + default: &631 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -43648,7 +43648,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &631 + schema: &632 title: Team Repository description: A team's access to a repository. type: object @@ -44486,7 +44486,7 @@ paths: type: array items: *229 examples: - response-if-child-teams-exist: &632 + response-if-child-teams-exist: &633 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53256,6 +53256,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -56469,7 +56473,7 @@ paths: check. type: array items: *381 - deployment: &682 + deployment: &683 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61395,7 +61399,7 @@ paths: type: array items: *416 examples: - default: &639 + default: &640 value: total_count: 2 machines: @@ -64726,7 +64730,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Status description: The status of a commit. type: object @@ -66192,6 +66196,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -66235,6 +66243,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -66283,6 +66292,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -66438,6 +66448,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *139 @@ -71131,6 +71142,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -71177,6 +71192,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -71271,6 +71287,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *139 x-github: @@ -72187,7 +72204,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &713 + last_response: &714 title: Hook Response type: object properties: @@ -73159,7 +73176,7 @@ paths: parameters: - *311 - *312 - - &662 + - &663 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -73593,7 +73610,7 @@ paths: type: array items: *486 examples: - default: &655 + default: &656 value: - id: 1 repository: @@ -77398,6 +77415,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -87479,7 +87500,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &734 + items: &735 type: object properties: type: @@ -87921,6 +87942,123 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *311 + - *312 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *92 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &582 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *582 + backfill_scans: + type: array + items: *582 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *582 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -87982,9 +88120,9 @@ paths: application/json: schema: type: array - items: *582 + items: *583 examples: - default: *583 + default: *584 '400': *14 '404': *6 x-github: @@ -88178,9 +88316,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: &585 + default: &586 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -88527,7 +88665,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -88676,15 +88814,15 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '200': description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *585 + default: *586 '403': *27 '404': *6 x-github: @@ -88710,7 +88848,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 requestBody: required: true content: @@ -88881,10 +89019,10 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *585 - add_credit: *585 + default: *586 + add_credit: *586 '403': *27 '404': *6 '422': @@ -88924,7 +89062,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': *140 '400': *14 @@ -88953,7 +89091,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': description: Response @@ -89094,7 +89232,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -89467,7 +89605,7 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: default: value: @@ -89557,7 +89695,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -89651,7 +89789,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &588 + schema: &589 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -89751,7 +89889,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -89891,7 +90029,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Tag protection description: Tag protection type: object @@ -89972,7 +90110,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90120,7 +90258,7 @@ paths: description: Response content: application/json: - schema: &590 + schema: &591 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -90132,7 +90270,7 @@ paths: required: - names examples: - default: &591 + default: &592 value: names: - octocat @@ -90187,9 +90325,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *6 '422': *7 x-github: @@ -90212,7 +90350,7 @@ paths: parameters: - *311 - *312 - - &592 + - &593 name: per description: The time frame to display results for. in: query @@ -90243,7 +90381,7 @@ paths: - 128 clones: type: array - items: &593 + items: &594 title: Traffic type: object properties: @@ -90491,7 +90629,7 @@ paths: parameters: - *311 - *312 - - *592 + - *593 responses: '200': description: Response @@ -90512,7 +90650,7 @@ paths: - 3782 views: type: array - items: *593 + items: *594 required: - uniques - count @@ -91184,7 +91322,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &601 + - &602 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -91194,7 +91332,7 @@ paths: type: string examples: - members - - &606 + - &607 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -91206,7 +91344,7 @@ paths: format: int32 examples: - 1 - - &607 + - &608 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -91250,7 +91388,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &595 + items: &596 allOf: - type: object required: @@ -91332,7 +91470,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: &608 + meta: &609 type: object description: The metadata associated with the creation/updates to the user. @@ -91397,31 +91535,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &596 + '400': &597 description: Bad request content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '401': &597 + schema: *595 + '401': &598 description: Authorization failure - '403': &598 + '403': &599 description: Permission denied - '429': &599 + '429': &600 description: Too many requests content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '500': &600 + schema: *595 + '500': &601 description: Internal server error content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 + schema: *595 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91445,7 +91583,7 @@ paths: required: true content: application/json: - schema: &604 + schema: &605 type: object required: - schemas @@ -91505,9 +91643,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *595 + schema: *596 examples: - group: &602 + group: &603 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -91526,13 +91664,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': *596 - '401': *597 - '403': *598 - '409': &605 + '400': *597 + '401': *598 + '403': *599 + '409': &606 description: Duplicate record detected - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91549,7 +91687,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: - - &603 + - &604 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -91558,22 +91696,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *601 + - *602 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *595 + schema: *596 examples: - default: *602 - '400': *596 - '401': *597 - '403': *598 + default: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91592,13 +91730,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: - - *603 + - *604 - *38 requestBody: required: true content: application/json: - schema: *604 + schema: *605 examples: group: summary: Group @@ -91624,17 +91762,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *595 + schema: *596 examples: - group: *602 - groupWithMembers: *602 - '400': *596 - '401': *597 - '403': *598 + group: *603 + groupWithMembers: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91658,13 +91796,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: - - *603 + - *604 - *38 requestBody: required: true content: application/json: - schema: &615 + schema: &616 type: object required: - Operations @@ -91724,17 +91862,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *595 + schema: *596 examples: - updateGroup: *602 - addMembers: *602 - '400': *596 - '401': *597 - '403': *598 + updateGroup: *603 + addMembers: *603 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91750,17 +91888,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: - - *603 + - *604 - *38 responses: '204': description: Group was deleted, no content - '400': *596 - '401': *597 - '403': *598 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91794,8 +91932,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *606 - *607 + - *608 - *38 responses: '200': @@ -91829,7 +91967,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &610 + items: &611 allOf: - type: object required: @@ -91921,7 +92059,7 @@ paths: address. examples: - true - roles: &609 + roles: &610 type: array description: The roles assigned to the user. items: @@ -91980,7 +92118,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *608 + meta: *609 startIndex: type: integer description: A starting index for the returned page @@ -92019,11 +92157,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *596 - '401': *597 - '403': *598 - '429': *599 - '500': *600 + '400': *597 + '401': *598 + '403': *599 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92047,7 +92185,7 @@ paths: required: true content: application/json: - schema: &613 + schema: &614 type: object required: - schemas @@ -92140,9 +92278,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *609 + roles: *610 examples: - user: &614 + user: &615 summary: User value: schemas: @@ -92189,9 +92327,9 @@ paths: description: User has been created content: application/scim+json: - schema: *610 + schema: *611 examples: - user: &611 + user: &612 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -92217,13 +92355,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: *611 - '400': *596 - '401': *597 - '403': *598 - '409': *605 - '429': *599 - '500': *600 + enterpriseOwner: *612 + '400': *597 + '401': *598 + '403': *599 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92240,7 +92378,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: - - &612 + - &613 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -92253,15 +92391,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *610 + schema: *611 examples: - default: *611 - '400': *596 - '401': *597 - '403': *598 + default: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92283,30 +92421,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: - - *612 + - *613 - *38 requestBody: required: true content: application/json: - schema: *613 + schema: *614 examples: - user: *614 + user: *615 responses: '200': description: User was updated content: application/scim+json: - schema: *610 + schema: *611 examples: - user: *611 - '400': *596 - '401': *597 - '403': *598 + user: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92341,13 +92479,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: - - *612 + - *613 - *38 requestBody: required: true content: application/json: - schema: *615 + schema: *616 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -92387,18 +92525,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *610 - examples: - userMultiValuedProperties: *611 - userSingleValuedProperties: *611 - disableUser: *611 - '400': *596 - '401': *597 - '403': *598 + schema: *611 + examples: + userMultiValuedProperties: *612 + userSingleValuedProperties: *612 + disableUser: *612 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '409': *605 - '429': *599 - '500': *600 + '409': *606 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92418,17 +92556,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: - - *612 + - *613 - *38 responses: '204': description: User was deleted, no content - '400': *596 - '401': *597 - '403': *598 + '400': *597 + '401': *598 + '403': *599 '404': *6 - '429': *599 - '500': *600 + '429': *600 + '500': *601 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -92519,7 +92657,7 @@ paths: - 1 Resources: type: array - items: &616 + items: &617 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -92766,22 +92904,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': &617 + '404': &618 description: Resource not found content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '403': &618 + schema: *595 + '403': &619 description: Forbidden content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '400': *596 - '429': *599 + schema: *595 + '400': *597 + '429': *600 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -92807,9 +92945,9 @@ paths: description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: &619 + default: &620 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -92832,17 +92970,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': *617 - '403': *618 - '500': *600 + '404': *618 + '403': *619 + '500': *601 '409': description: Conflict content: application/json: - schema: *594 + schema: *595 application/scim+json: - schema: *594 - '400': *596 + schema: *595 + '400': *597 requestBody: required: true content: @@ -92937,17 +93075,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 - '404': *617 - '403': *618 + default: *620 + '404': *618 + '403': *619 '304': *35 x-github: githubCloudOnly: true @@ -92971,18 +93109,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 + default: *620 '304': *35 - '404': *617 - '403': *618 + '404': *618 + '403': *619 requestBody: required: true content: @@ -93093,19 +93231,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *134 - - *612 + - *613 responses: '200': description: Response content: application/scim+json: - schema: *616 + schema: *617 examples: - default: *619 + default: *620 '304': *35 - '404': *617 - '403': *618 - '400': *596 + '404': *618 + '403': *619 + '400': *597 '429': description: Response content: @@ -93201,12 +93339,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *134 - - *612 + - *613 responses: '204': description: Response - '404': *617 - '403': *618 + '404': *618 + '403': *619 '304': *35 x-github: githubCloudOnly: true @@ -93340,7 +93478,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &620 + text_matches: &621 title: Search Result Text Matches type: array items: @@ -93504,7 +93642,7 @@ paths: enum: - author-date - committer-date - - &621 + - &622 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 @@ -93624,7 +93762,7 @@ paths: type: number node_id: type: string - text_matches: *620 + text_matches: *621 required: - sha - node_id @@ -93817,7 +93955,7 @@ paths: - interactions - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -93933,7 +94071,7 @@ paths: - string - 'null' format: date-time - text_matches: *620 + text_matches: *621 pull_request: type: object properties: @@ -94155,7 +94293,7 @@ paths: enum: - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -94200,7 +94338,7 @@ paths: - 'null' score: type: number - text_matches: *620 + text_matches: *621 required: - id - node_id @@ -94286,7 +94424,7 @@ paths: - forks - help-wanted-issues - updated - - *621 + - *622 - *17 - *18 responses: @@ -94523,7 +94661,7 @@ paths: - admin - pull - push - text_matches: *620 + text_matches: *621 temp_clone_token: type: string allow_merge_commit: @@ -94832,7 +94970,7 @@ paths: - string - 'null' format: uri - text_matches: *620 + text_matches: *621 related: type: - array @@ -95027,7 +95165,7 @@ paths: - followers - repositories - joined - - *621 + - *622 - *17 - *18 responses: @@ -95137,7 +95275,7 @@ paths: type: - boolean - 'null' - text_matches: *620 + text_matches: *621 blog: type: - string @@ -95219,7 +95357,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &622 + - &623 name: team_id description: The unique identifier of the team. in: path @@ -95260,7 +95398,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *622 + - *623 requestBody: required: true content: @@ -95361,7 +95499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *622 + - *623 responses: '204': description: Response @@ -95392,7 +95530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *622 + - *623 - *76 - *17 - *18 @@ -95405,7 +95543,7 @@ paths: type: array items: *294 examples: - default: *623 + default: *624 headers: Link: *37 x-github: @@ -95434,7 +95572,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *622 + - *623 requestBody: required: true content: @@ -95497,7 +95635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *622 + - *623 - *296 responses: '200': @@ -95531,7 +95669,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *622 + - *623 - *296 requestBody: required: false @@ -95557,7 +95695,7 @@ paths: application/json: schema: *294 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95582,7 +95720,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *622 + - *623 - *296 responses: '204': @@ -95612,7 +95750,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *622 + - *623 - *296 - *76 - *17 @@ -95626,7 +95764,7 @@ paths: type: array items: *297 examples: - default: *625 + default: *626 headers: Link: *37 x-github: @@ -95655,7 +95793,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 requestBody: required: true @@ -95707,7 +95845,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 responses: @@ -95742,7 +95880,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 requestBody: @@ -95768,7 +95906,7 @@ paths: application/json: schema: *297 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95793,7 +95931,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 responses: @@ -95824,7 +95962,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 - name: content @@ -95883,7 +96021,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *622 + - *623 - *296 - *299 requestBody: @@ -95945,7 +96083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *622 + - *623 - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -96003,7 +96141,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *622 + - *623 - *296 requestBody: required: true @@ -96062,7 +96200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96100,7 +96238,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *622 + - *623 - name: role description: Filters members returned by their role in the team. in: query @@ -96151,7 +96289,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96188,7 +96326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96228,7 +96366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *622 + - *623 - *174 responses: '204': @@ -96265,7 +96403,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: - - *622 + - *623 - *174 responses: '200': @@ -96274,7 +96412,7 @@ paths: application/json: schema: *308 examples: - response-if-user-is-a-team-maintainer: *627 + response-if-user-is-a-team-maintainer: *628 '404': *6 x-github: githubCloudOnly: false @@ -96307,7 +96445,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: - - *622 + - *623 - *174 requestBody: required: false @@ -96335,7 +96473,7 @@ paths: application/json: schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *628 + response-if-users-membership-with-team-is-now-pending: *629 '403': description: Forbidden if team synchronization is set up '422': @@ -96369,7 +96507,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: - - *622 + - *623 - *174 responses: '204': @@ -96399,7 +96537,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96411,7 +96549,7 @@ paths: type: array items: *309 examples: - default: *629 + default: *630 headers: Link: *37 '404': *6 @@ -96438,7 +96576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *622 + - *623 - *310 responses: '200': @@ -96447,7 +96585,7 @@ paths: application/json: schema: *309 examples: - default: *630 + default: *631 '404': description: Not Found if project is not managed by this team x-github: @@ -96472,7 +96610,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *622 + - *623 - *310 requestBody: required: false @@ -96541,7 +96679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *622 + - *623 - *310 responses: '204': @@ -96569,7 +96707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96611,7 +96749,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: - - *622 + - *623 - *311 - *312 responses: @@ -96619,7 +96757,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *631 + schema: *632 examples: alternative-response-with-extra-repository-information: value: @@ -96770,7 +96908,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: - - *622 + - *623 - *311 - *312 requestBody: @@ -96822,7 +96960,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: - - *622 + - *623 - *311 - *312 responses: @@ -96853,7 +96991,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: - - *622 + - *623 responses: '200': description: Response @@ -96888,7 +97026,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: - - *622 + - *623 requestBody: required: true content: @@ -96980,7 +97118,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *622 + - *623 - *17 - *18 responses: @@ -96992,7 +97130,7 @@ paths: type: array items: *229 examples: - response-if-child-teams-exist: *632 + response-if-child-teams-exist: *633 headers: Link: *37 '404': *6 @@ -97025,7 +97163,7 @@ paths: application/json: schema: oneOf: - - &634 + - &635 title: Private User description: Private User type: object @@ -97275,7 +97413,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *633 + - *634 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97435,7 +97573,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -97833,7 +97971,7 @@ paths: type: integer secrets: type: array - items: &635 + items: &636 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97953,7 +98091,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -98099,7 +98237,7 @@ paths: type: array items: *152 examples: - default: *636 + default: *637 '401': *23 '403': *27 '404': *6 @@ -98366,7 +98504,7 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98419,7 +98557,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &638 + default: &639 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98464,9 +98602,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -98505,7 +98643,7 @@ paths: type: array items: *416 examples: - default: *639 + default: *640 '304': *35 '500': *80 '401': *23 @@ -99471,7 +99609,7 @@ paths: type: array items: *244 examples: - default: &652 + default: &653 value: - id: 197 name: hello_docker @@ -99572,7 +99710,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Email description: Email type: object @@ -99642,9 +99780,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: &654 + default: &655 value: - email: octocat@github.com verified: true @@ -99721,7 +99859,7 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: default: value: @@ -99979,7 +100117,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: GPG Key description: A unique encryption key type: object @@ -100124,7 +100262,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -100209,9 +100347,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: &642 + default: &643 value: id: 3 name: Octocat's GPG Key @@ -100268,7 +100406,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: - - &643 + - &644 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100280,9 +100418,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '304': *35 '403': *27 @@ -100305,7 +100443,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: - - *643 + - *644 responses: '204': description: Response @@ -100496,7 +100634,7 @@ paths: type: array items: *55 examples: - default: *644 + default: *645 headers: Link: *37 '404': *6 @@ -100760,7 +100898,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -100858,9 +100996,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100899,9 +101037,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -100957,7 +101095,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101036,7 +101174,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101098,9 +101236,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *37 '304': *35 @@ -102104,7 +102242,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *239 - - *649 + - *650 responses: '204': description: Response @@ -102177,7 +102315,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 '304': *35 @@ -102219,7 +102357,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *18 - *17 responses: @@ -102231,8 +102369,8 @@ paths: type: array items: *244 examples: - default: *652 - '400': *653 + default: *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102261,7 +102399,7 @@ paths: application/json: schema: *244 examples: - default: &666 + default: &667 value: id: 40201 name: octo-name @@ -102713,9 +102851,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: *654 + default: *655 headers: Link: *37 '304': *35 @@ -102828,7 +102966,7 @@ paths: type: array items: *55 examples: - default: &661 + default: &662 summary: Default response value: - id: 1296269 @@ -103186,7 +103324,7 @@ paths: type: array items: *486 examples: - default: *655 + default: *656 headers: Link: *37 '304': *35 @@ -103265,7 +103403,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Social account description: Social media account type: object @@ -103282,7 +103420,7 @@ paths: - provider - url examples: - default: &657 + default: &658 value: - provider: twitter url: https://twitter.com/github @@ -103345,9 +103483,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 '422': *15 '304': *35 '404': *6 @@ -103435,7 +103573,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103455,7 +103593,7 @@ paths: - title - created_at examples: - default: &667 + default: &668 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103522,9 +103660,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103555,7 +103693,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: - - &660 + - &661 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103567,9 +103705,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -103592,7 +103730,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: - - *660 + - *661 responses: '204': description: Response @@ -103621,7 +103759,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: - - &668 + - &669 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 @@ -103646,11 +103784,11 @@ paths: type: array items: *55 examples: - default-response: *661 + default-response: *662 application/vnd.github.v3.star+json: schema: type: array - items: &669 + items: &670 title: Starred Repository description: Starred Repository type: object @@ -104017,10 +104155,10 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: &663 + default-response: &664 summary: Default response value: login: octocat @@ -104055,7 +104193,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &664 + response-with-git-hub-plan-information: &665 summary: Response with GitHub plan information value: login: octocat @@ -104115,7 +104253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *662 + - *663 - *17 responses: '200': @@ -104162,11 +104300,11 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: *663 - response-with-git-hub-plan-information: *664 + default-response: *664 + response-with-git-hub-plan-information: *665 '404': *6 x-github: githubCloudOnly: false @@ -104330,7 +104468,7 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 x-github: @@ -104734,9 +104872,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *665 + default: *666 headers: Link: *37 x-github: @@ -104918,7 +105056,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 x-github: @@ -104957,7 +105095,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *174 - *18 - *17 @@ -104970,10 +105108,10 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 - '400': *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105003,7 +105141,7 @@ paths: application/json: schema: *244 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105686,9 +105824,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 headers: Link: *37 x-github: @@ -105718,9 +105856,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *667 + default: *668 headers: Link: *37 x-github: @@ -105745,7 +105883,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *174 - - *668 + - *669 - *76 - *17 - *18 @@ -105757,11 +105895,11 @@ paths: schema: anyOf: - type: array - items: *669 + items: *670 - type: array items: *55 examples: - default-response: *661 + default-response: *662 headers: Link: *37 x-github: @@ -105921,7 +106059,7 @@ webhooks: type: string enum: - disabled - enterprise: &670 + enterprise: &671 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -105990,7 +106128,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &671 + installation: &672 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106011,7 +106149,7 @@ webhooks: required: - id - node_id - organization: &672 + organization: &673 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106084,7 +106222,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &673 + repository: &674 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -106997,10 +107135,10 @@ webhooks: type: string enum: - enabled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -107076,11 +107214,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: &674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: &675 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) @@ -107303,11 +107441,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: *674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: *675 sender: *4 required: - action @@ -107495,11 +107633,11 @@ webhooks: - everyone required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - rule: *674 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + rule: *675 sender: *4 required: - action @@ -107572,7 +107710,7 @@ webhooks: required: true content: application/json: - schema: &677 + schema: &678 title: Exemption request cancellation event type: object properties: @@ -107580,11 +107718,11 @@ webhooks: type: string enum: - cancelled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: &675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: &676 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -107738,7 +107876,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &676 + items: &677 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -107844,7 +107982,7 @@ webhooks: required: true content: application/json: - schema: &678 + schema: &679 title: Exemption request completed event type: object properties: @@ -107852,11 +107990,11 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 sender: *4 required: - action @@ -107928,7 +108066,7 @@ webhooks: required: true content: application/json: - schema: &679 + schema: &680 title: Exemption request created event type: object properties: @@ -107936,11 +108074,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 sender: *4 required: - action @@ -108012,7 +108150,7 @@ webhooks: required: true content: application/json: - schema: &680 + schema: &681 title: Exemption response dismissed event type: object properties: @@ -108020,12 +108158,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 - exemption_response: *676 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 + exemption_response: *677 sender: *4 required: - action @@ -108099,7 +108237,7 @@ webhooks: required: true content: application/json: - schema: &681 + schema: &682 title: Exemption response submitted event type: object properties: @@ -108107,12 +108245,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - exemption_request: *675 - exemption_response: *676 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + exemption_request: *676 + exemption_response: *677 sender: *4 required: - action @@ -108185,7 +108323,7 @@ webhooks: required: true content: application/json: - schema: *677 + schema: *678 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108252,7 +108390,7 @@ webhooks: required: true content: application/json: - schema: *678 + schema: *679 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108319,7 +108457,7 @@ webhooks: required: true content: application/json: - schema: *679 + schema: *680 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108386,7 +108524,7 @@ webhooks: required: true content: application/json: - schema: *680 + schema: *681 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108454,7 +108592,7 @@ webhooks: required: true content: application/json: - schema: *681 + schema: *682 responses: '200': description: Return a 200 status to indicate that the data was received @@ -108532,7 +108670,7 @@ webhooks: type: string enum: - completed - check_run: &683 + check_run: &684 title: CheckRun description: A check performed on the code of a given code change type: object @@ -108645,7 +108783,7 @@ webhooks: - examples: - neutral - deployment: *682 + deployment: *683 details_url: type: string examples: @@ -108743,9 +108881,9 @@ webhooks: - output - app - pull_requests - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -109138,10 +109276,10 @@ webhooks: type: string enum: - created - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -109537,10 +109675,10 @@ webhooks: type: string enum: - requested_action - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 requested_action: description: The action requested by the user. type: object @@ -109945,10 +110083,10 @@ webhooks: type: string enum: - rerequested - check_run: *683 - installation: *671 - organization: *672 - repository: *673 + check_run: *684 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - check_run @@ -110940,10 +111078,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -111628,10 +111766,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -112310,10 +112448,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -112620,20 +112758,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &684 + commit_oid: &685 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: *670 - installation: *671 - organization: *672 - ref: &685 + enterprise: *671 + installation: *672 + organization: *673 + ref: &686 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: *673 + repository: *674 sender: *4 required: - action @@ -112961,12 +113099,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113239,12 +113377,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113576,12 +113714,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -113850,9 +113988,9 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -113860,7 +113998,7 @@ webhooks: type: - string - 'null' - repository: *673 + repository: *674 sender: *4 required: - action @@ -114092,12 +114230,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *684 - enterprise: *670 - installation: *671 - organization: *672 - ref: *685 - repository: *673 + commit_oid: *685 + enterprise: *671 + installation: *672 + organization: *673 + ref: *686 + repository: *674 sender: *4 required: - action @@ -114359,10 +114497,10 @@ webhooks: - updated_at - author_association - body - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -114443,18 +114581,18 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *672 - pusher_type: &686 + organization: *673 + pusher_type: &687 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &687 + ref: &688 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -114464,7 +114602,7 @@ webhooks: enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114547,9 +114685,9 @@ webhooks: enum: - created definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114634,9 +114772,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114714,9 +114852,9 @@ webhooks: enum: - updated definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114793,10 +114931,10 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - repository: *673 - organization: *672 + enterprise: *671 + installation: *672 + repository: *674 + organization: *673 sender: *4 new_property_values: type: array @@ -114881,18 +115019,18 @@ webhooks: title: delete event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - pusher_type: *686 - ref: *687 + enterprise: *671 + installation: *672 + organization: *673 + pusher_type: *687 + ref: *688 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114977,10 +115115,10 @@ webhooks: enum: - auto_dismissed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115065,10 +115203,10 @@ webhooks: enum: - auto_reopened alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115153,10 +115291,10 @@ webhooks: enum: - created alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115239,10 +115377,10 @@ webhooks: enum: - dismissed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115325,10 +115463,10 @@ webhooks: enum: - fixed alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115412,10 +115550,10 @@ webhooks: enum: - reintroduced alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115498,10 +115636,10 @@ webhooks: enum: - reopened alert: *442 - installation: *671 - organization: *672 - enterprise: *670 - repository: *673 + installation: *672 + organization: *673 + enterprise: *671 + repository: *674 sender: *4 required: - action @@ -115578,9 +115716,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - key: &688 + enterprise: *671 + installation: *672 + key: &689 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115618,8 +115756,8 @@ webhooks: - verified - created_at - read_only - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -115696,11 +115834,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - key: *688 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + key: *689 + organization: *673 + repository: *674 sender: *4 required: - action @@ -116272,12 +116410,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: &692 + workflow: &693 title: Workflow type: - object @@ -117019,9 +117157,9 @@ webhooks: pull_requests: type: array items: *529 - repository: *673 - organization: *672 - installation: *671 + repository: *674 + organization: *673 + installation: *672 sender: *4 responses: '200': @@ -117092,7 +117230,7 @@ webhooks: type: string enum: - approved - approver: &689 + approver: &690 type: object properties: avatar_url: @@ -117135,11 +117273,11 @@ webhooks: type: string comment: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - reviewers: &690 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + reviewers: &691 type: array items: type: object @@ -117220,7 +117358,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &691 + workflow_job_run: &692 type: object properties: conclusion: @@ -117966,18 +118104,18 @@ webhooks: type: string enum: - rejected - approver: *689 + approver: *690 comment: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - reviewers: *690 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + reviewers: *691 sender: *4 since: type: string - workflow_job_run: *691 + workflow_job_run: *692 workflow_job_runs: type: array items: @@ -118694,13 +118832,13 @@ webhooks: type: string enum: - requested - enterprise: *670 + enterprise: *671 environment: type: string - installation: *671 - organization: *672 - repository: *673 - requestor: &697 + installation: *672 + organization: *673 + repository: *674 + requestor: &698 title: User type: - object @@ -120643,12 +120781,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Deployment Workflow Run type: @@ -121339,7 +121477,7 @@ webhooks: type: string enum: - answered - answer: &695 + answer: &696 type: object properties: author_association: @@ -121499,7 +121637,7 @@ webhooks: - created_at - updated_at - body - discussion: &693 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -121817,10 +121955,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -121947,11 +122085,11 @@ webhooks: - from required: - category - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122034,11 +122172,11 @@ webhooks: type: string enum: - closed - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122120,7 +122258,7 @@ webhooks: type: string enum: - created - comment: &694 + comment: &695 type: object properties: author_association: @@ -122280,11 +122418,11 @@ webhooks: - updated_at - body - reactions - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122367,12 +122505,12 @@ webhooks: type: string enum: - deleted - comment: *694 - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + comment: *695 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122467,12 +122605,12 @@ webhooks: - from required: - body - comment: *694 - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + comment: *695 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122556,11 +122694,11 @@ webhooks: type: string enum: - created - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122642,11 +122780,11 @@ webhooks: type: string enum: - deleted - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122746,11 +122884,11 @@ webhooks: type: string required: - from - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122832,10 +122970,10 @@ webhooks: type: string enum: - labeled - discussion: *693 - enterprise: *670 - installation: *671 - label: &696 + discussion: *694 + enterprise: *671 + installation: *672 + label: &697 title: Label type: object properties: @@ -122868,8 +123006,8 @@ webhooks: - color - default - description - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122952,11 +123090,11 @@ webhooks: type: string enum: - locked - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123038,11 +123176,11 @@ webhooks: type: string enum: - pinned - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123124,11 +123262,11 @@ webhooks: type: string enum: - reopened - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123213,16 +123351,16 @@ webhooks: changes: type: object properties: - new_discussion: *693 - new_repository: *673 + new_discussion: *694 + new_repository: *674 required: - new_discussion - new_repository - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123305,10 +123443,10 @@ webhooks: type: string enum: - unanswered - discussion: *693 - old_answer: *695 - organization: *672 - repository: *673 + discussion: *694 + old_answer: *696 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123390,12 +123528,12 @@ webhooks: type: string enum: - unlabeled - discussion: *693 - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123478,11 +123616,11 @@ webhooks: type: string enum: - unlocked - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123564,11 +123702,11 @@ webhooks: type: string enum: - unpinned - discussion: *693 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + discussion: *694 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -123641,7 +123779,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *670 + enterprise: *671 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -124319,9 +124457,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - forkee @@ -124467,9 +124605,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pages: description: The pages that were updated. type: array @@ -124507,7 +124645,7 @@ webhooks: - action - sha - html_url - repository: *673 + repository: *674 sender: *4 required: - pages @@ -124583,10 +124721,10 @@ webhooks: type: string enum: - created - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: &698 + organization: *673 + repositories: &699 description: An array of repository objects that the installation can access. type: array @@ -124612,8 +124750,8 @@ webhooks: - name - full_name - private - repository: *673 - requester: *697 + repository: *674 + requester: *698 sender: *4 required: - action @@ -124688,11 +124826,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -124769,11 +124907,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -124850,10 +124988,10 @@ webhooks: type: string enum: - added - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories_added: &699 + organization: *673 + repositories_added: &700 description: An array of repository objects, which were added to the installation. type: array @@ -124899,15 +125037,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *673 - repository_selection: &700 + repository: *674 + repository_selection: &701 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *697 + requester: *698 sender: *4 required: - action @@ -124986,10 +125124,10 @@ webhooks: type: string enum: - removed - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories_added: *699 + organization: *673 + repositories_added: *700 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125016,9 +125154,9 @@ webhooks: - name - full_name - private - repository: *673 - repository_selection: *700 - requester: *697 + repository: *674 + repository_selection: *701 + requester: *698 sender: *4 required: - action @@ -125097,11 +125235,11 @@ webhooks: type: string enum: - suspend - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -125284,10 +125422,10 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 target_type: type: string @@ -125366,11 +125504,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *670 + enterprise: *671 installation: *20 - organization: *672 - repositories: *698 - repository: *673 + organization: *673 + repositories: *699 + repository: *674 requester: type: - 'null' @@ -125618,8 +125756,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -126795,8 +126933,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -126876,7 +127014,7 @@ webhooks: type: string enum: - deleted - comment: &701 + comment: &702 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -127043,8 +127181,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -128218,8 +128356,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -128299,7 +128437,7 @@ webhooks: type: string enum: - edited - changes: &726 + changes: &727 description: The changes to the comment. type: object properties: @@ -128311,9 +128449,9 @@ webhooks: type: string required: - from - comment: *701 - enterprise: *670 - installation: *671 + comment: *702 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -129488,8 +129626,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -129571,10 +129709,10 @@ webhooks: type: string enum: - assigned - assignee: *697 - enterprise: *670 - installation: *671 - issue: &704 + assignee: *698 + enterprise: *671 + installation: *672 + issue: &705 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -130504,8 +130642,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -130585,8 +130723,8 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -131664,8 +131802,8 @@ webhooks: required: - state - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -131744,8 +131882,8 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -132668,8 +132806,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -132748,8 +132886,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -133676,7 +133814,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &702 + milestone: &703 title: Milestone description: A collection of related issues and pull requests. type: object @@ -133819,8 +133957,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -133919,8 +134057,8 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -134850,9 +134988,9 @@ webhooks: - active_lock_reason - body - reactions - label: *696 - organization: *672 - repository: *673 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -134932,8 +135070,8 @@ webhooks: type: string enum: - labeled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -135862,9 +136000,9 @@ webhooks: - active_lock_reason - body - reactions - label: *696 - organization: *672 - repository: *673 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -135944,8 +136082,8 @@ webhooks: type: string enum: - locked - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136876,8 +137014,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -136956,8 +137094,8 @@ webhooks: type: string enum: - milestoned - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137882,9 +138020,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *702 - organization: *672 - repository: *673 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -139370,8 +139508,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140300,8 +140438,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -140381,9 +140519,9 @@ webhooks: type: string enum: - pinned - enterprise: *670 - installation: *671 - issue: &703 + enterprise: *671 + installation: *672 + issue: &704 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -141306,8 +141444,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -141386,8 +141524,8 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142317,8 +142455,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143804,11 +143942,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *670 - installation: *671 - issue: *703 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *704 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143889,7 +144027,7 @@ webhooks: type: string enum: - unassigned - assignee: &729 + assignee: &730 title: User type: - object @@ -143961,11 +144099,11 @@ webhooks: required: - login - id - enterprise: *670 - installation: *671 - issue: *704 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *705 + organization: *673 + repository: *674 sender: *4 required: - action @@ -144044,12 +144182,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *670 - installation: *671 - issue: *704 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *705 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -144129,8 +144267,8 @@ webhooks: type: string enum: - unlocked - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145059,8 +145197,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145140,11 +145278,11 @@ webhooks: type: string enum: - unpinned - enterprise: *670 - installation: *671 - issue: *703 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + issue: *704 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145223,11 +145361,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145305,11 +145443,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145419,11 +145557,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - label: *696 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + label: *697 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145505,9 +145643,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: &705 + enterprise: *671 + installation: *672 + marketplace_purchase: &706 title: Marketplace Purchase type: object required: @@ -145595,8 +145733,8 @@ webhooks: type: integer unit_count: type: integer - organization: *672 - previous_marketplace_purchase: &706 + organization: *673 + previous_marketplace_purchase: &707 title: Marketplace Purchase type: object properties: @@ -145680,7 +145818,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145760,10 +145898,10 @@ webhooks: - changed effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145851,7 +145989,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145933,10 +146071,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -146022,7 +146160,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -146103,8 +146241,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 marketplace_purchase: title: Marketplace Purchase type: object @@ -146190,9 +146328,9 @@ webhooks: type: integer unit_count: type: integer - organization: *672 - previous_marketplace_purchase: *706 - repository: *673 + organization: *673 + previous_marketplace_purchase: *707 + repository: *674 sender: *4 required: - action @@ -146272,12 +146410,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *670 - installation: *671 - marketplace_purchase: *705 - organization: *672 - previous_marketplace_purchase: *706 - repository: *673 + enterprise: *671 + installation: *672 + marketplace_purchase: *706 + organization: *673 + previous_marketplace_purchase: *707 + repository: *674 sender: *4 required: - action @@ -146379,11 +146517,11 @@ webhooks: type: string required: - to - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146485,11 +146623,11 @@ webhooks: type: - string - 'null' - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146568,11 +146706,11 @@ webhooks: type: string enum: - removed - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 sender: *4 required: - action @@ -146650,11 +146788,11 @@ webhooks: type: string enum: - added - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146732,7 +146870,7 @@ webhooks: required: - login - id - team: &707 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146925,11 +147063,11 @@ webhooks: type: string enum: - removed - enterprise: *670 - installation: *671 - member: *697 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + member: *698 + organization: *673 + repository: *674 scope: description: The scope of the membership. Currently, can only be `team`. @@ -147008,7 +147146,7 @@ webhooks: required: - login - id - team: *707 + team: *708 required: - action - scope @@ -147090,8 +147228,8 @@ webhooks: type: string enum: - checks_requested - installation: *671 - merge_group: &708 + installation: *672 + merge_group: &709 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -147117,8 +147255,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147204,10 +147342,10 @@ webhooks: - merged - invalidated - dequeued - installation: *671 - merge_group: *708 - organization: *672 - repository: *673 + installation: *672 + merge_group: *709 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147280,7 +147418,7 @@ webhooks: type: string enum: - deleted - enterprise: *670 + enterprise: *671 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -147388,12 +147526,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *671 - organization: *672 + installation: *672 + organization: *673 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -147473,11 +147611,11 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147556,9 +147694,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - milestone: &709 + enterprise: *671 + installation: *672 + milestone: &710 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147700,8 +147838,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147780,11 +147918,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147894,11 +148032,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - milestone: *702 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *703 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147978,11 +148116,11 @@ webhooks: type: string enum: - opened - enterprise: *670 - installation: *671 - milestone: *709 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + milestone: *710 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148061,11 +148199,11 @@ webhooks: type: string enum: - blocked - blocked_user: *697 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + blocked_user: *698 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148144,11 +148282,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *697 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + blocked_user: *698 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148227,9 +148365,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - membership: &710 + enterprise: *671 + installation: *672 + membership: &711 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -148323,8 +148461,8 @@ webhooks: - role - organization_url - user - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148402,11 +148540,11 @@ webhooks: type: string enum: - member_added - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148485,8 +148623,8 @@ webhooks: type: string enum: - member_invited - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -148608,10 +148746,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 - user: *697 + user: *698 required: - action - invitation @@ -148689,11 +148827,11 @@ webhooks: type: string enum: - member_removed - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148780,11 +148918,11 @@ webhooks: properties: from: type: string - enterprise: *670 - installation: *671 - membership: *710 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + membership: *711 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148860,9 +148998,9 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 package: description: Information about the package. type: object @@ -149385,7 +149523,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &711 + items: &712 title: Ruby Gems metadata type: object properties: @@ -149482,7 +149620,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -149558,9 +149696,9 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 package: description: Information about the package. type: object @@ -149922,7 +150060,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 source_url: type: string format: uri @@ -149993,7 +150131,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -150174,12 +150312,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *670 + enterprise: *671 id: type: integer - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - id @@ -150259,7 +150397,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &712 + personal_access_token_request: &713 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -150409,10 +150547,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *670 - organization: *672 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150491,11 +150629,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *712 - enterprise: *670 - organization: *672 + personal_access_token_request: *713 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150573,11 +150711,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *712 - enterprise: *670 - organization: *672 + personal_access_token_request: *713 + enterprise: *671 + organization: *673 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150654,11 +150792,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *712 - organization: *672 - enterprise: *670 + personal_access_token_request: *713 + organization: *673 + enterprise: *671 sender: *4 - installation: *671 + installation: *672 required: - action - personal_access_token_request @@ -150762,7 +150900,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *713 + last_response: *714 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -150794,8 +150932,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 zen: description: Random string of GitHub zen. @@ -151040,10 +151178,10 @@ webhooks: - from required: - note - enterprise: *670 - installation: *671 - organization: *672 - project_card: &714 + enterprise: *671 + installation: *672 + organization: *673 + project_card: &715 title: Project Card type: object properties: @@ -151166,7 +151304,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -151247,11 +151385,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project_card: *714 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_card: *715 + repository: *674 sender: *4 required: - action @@ -151331,9 +151469,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 project_card: title: Project Card type: object @@ -151463,7 +151601,7 @@ webhooks: repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -151557,11 +151695,11 @@ webhooks: - from required: - note - enterprise: *670 - installation: *671 - organization: *672 - project_card: *714 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_card: *715 + repository: *674 sender: *4 required: - action @@ -151655,9 +151793,9 @@ webhooks: - from required: - column_id - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 project_card: allOf: - title: Project Card @@ -151854,7 +151992,7 @@ webhooks: type: string required: - after_id - repository: *673 + repository: *674 sender: *4 required: - action @@ -151934,10 +152072,10 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - organization: *672 - project: &716 + enterprise: *671 + installation: *672 + organization: *673 + project: &717 title: Project type: object properties: @@ -152064,7 +152202,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152144,10 +152282,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project_column: &715 + enterprise: *671 + installation: *672 + organization: *673 + project_column: &716 title: Project Column type: object properties: @@ -152187,7 +152325,7 @@ webhooks: - name - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152266,14 +152404,14 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -152362,11 +152500,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 + repository: *674 sender: *4 required: - action @@ -152446,11 +152584,11 @@ webhooks: type: string enum: - moved - enterprise: *670 - installation: *671 - organization: *672 - project_column: *715 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project_column: *716 + repository: *674 sender: *4 required: - action @@ -152530,11 +152668,11 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152614,14 +152752,14 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - project: *716 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -152722,11 +152860,11 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152805,11 +152943,11 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 - organization: *672 - project: *716 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + project: *717 + repository: *674 sender: *4 required: - action @@ -152890,9 +153028,9 @@ webhooks: type: string enum: - closed - installation: *671 - organization: *672 - projects_v2: &717 + installation: *672 + organization: *673 + projects_v2: &718 title: Projects v2 Project description: A projects v2 project type: object @@ -153040,9 +153178,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153123,9 +153261,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153246,9 +153384,9 @@ webhooks: type: string to: type: string - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -153331,7 +153469,7 @@ webhooks: type: string enum: - archived - changes: &721 + changes: &722 type: object properties: archived_at: @@ -153347,9 +153485,9 @@ webhooks: - string - 'null' format: date-time - installation: *671 - organization: *672 - projects_v2_item: &718 + installation: *672 + organization: *673 + projects_v2_item: &719 title: Projects v2 Item description: An item belonging to a project type: object @@ -153488,9 +153626,9 @@ webhooks: - 'null' to: type: string - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153572,9 +153710,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153655,9 +153793,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153762,7 +153900,7 @@ webhooks: oneOf: - type: string - type: integer - - &719 + - &720 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -153782,7 +153920,7 @@ webhooks: required: - id - name - - &720 + - &721 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153811,8 +153949,8 @@ webhooks: oneOf: - type: string - type: integer - - *719 - *720 + - *721 type: - 'null' - string @@ -153835,9 +153973,9 @@ webhooks: - 'null' required: - body - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -153934,9 +154072,9 @@ webhooks: type: - string - 'null' - installation: *671 - organization: *672 - projects_v2_item: *718 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -154019,10 +154157,10 @@ webhooks: type: string enum: - restored - changes: *721 - installation: *671 - organization: *672 - projects_v2_item: *718 + changes: *722 + installation: *672 + organization: *673 + projects_v2_item: *719 sender: *4 required: - action @@ -154104,9 +154242,9 @@ webhooks: type: string enum: - reopened - installation: *671 - organization: *672 - projects_v2: *717 + installation: *672 + organization: *673 + projects_v2: *718 sender: *4 required: - action @@ -154187,9 +154325,9 @@ webhooks: type: string enum: - created - installation: *671 - organization: *672 - projects_v2_status_update: &722 + installation: *672 + organization: *673 + projects_v2_status_update: &723 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -154324,9 +154462,9 @@ webhooks: type: string enum: - deleted - installation: *671 - organization: *672 - projects_v2_status_update: *722 + installation: *672 + organization: *673 + projects_v2_status_update: *723 sender: *4 required: - action @@ -154472,9 +154610,9 @@ webhooks: - string - 'null' format: date - installation: *671 - organization: *672 - projects_v2_status_update: *722 + installation: *672 + organization: *673 + projects_v2_status_update: *723 sender: *4 required: - action @@ -154545,10 +154683,10 @@ webhooks: title: public event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - repository @@ -154625,13 +154763,13 @@ webhooks: type: string enum: - assigned - assignee: *697 - enterprise: *670 - installation: *671 - number: &723 + assignee: *698 + enterprise: *671 + installation: *672 + number: &724 description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -156980,7 +157118,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -157062,11 +157200,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -159408,7 +159546,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -159490,11 +159628,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -161836,7 +161974,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -161918,11 +162056,11 @@ webhooks: type: string enum: - closed - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: &724 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: &725 allOf: - *529 - type: object @@ -161986,7 +162124,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *673 + repository: *674 sender: *4 required: - action @@ -162067,12 +162205,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -162152,11 +162290,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *670 + enterprise: *671 milestone: *428 - number: *723 - organization: *672 - pull_request: &725 + number: *724 + organization: *673 + pull_request: &726 title: Pull Request type: object properties: @@ -164483,7 +164621,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -164562,11 +164700,11 @@ webhooks: type: string enum: - dequeued - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -166912,7 +167050,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *673 + repository: *674 sender: *4 required: - action @@ -167036,12 +167174,12 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -167121,11 +167259,11 @@ webhooks: type: string enum: - enqueued - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -169456,7 +169594,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -169536,11 +169674,11 @@ webhooks: type: string enum: - labeled - enterprise: *670 - installation: *671 - label: *696 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + label: *697 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -171888,7 +172026,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -171969,10 +172107,10 @@ webhooks: type: string enum: - locked - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -174318,7 +174456,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -174398,12 +174536,12 @@ webhooks: type: string enum: - milestoned - enterprise: *670 + enterprise: *671 milestone: *428 - number: *723 - organization: *672 - pull_request: *725 - repository: *673 + number: *724 + organization: *673 + pull_request: *726 + repository: *674 sender: *4 required: - action @@ -174482,12 +174620,12 @@ webhooks: type: string enum: - opened - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -174568,12 +174706,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -174653,12 +174791,12 @@ webhooks: type: string enum: - reopened - enterprise: *670 - installation: *671 - number: *723 - organization: *672 - pull_request: *724 - repository: *673 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 + pull_request: *725 + repository: *674 sender: *4 required: - action @@ -175033,9 +175171,9 @@ webhooks: - start_side - side - reactions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -177265,7 +177403,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -177345,7 +177483,7 @@ webhooks: type: string enum: - deleted - comment: &727 + comment: &728 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. @@ -177638,9 +177776,9 @@ webhooks: - start_side - side - reactions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -179858,7 +179996,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -179938,11 +180076,11 @@ webhooks: type: string enum: - edited - changes: *726 - comment: *727 - enterprise: *670 - installation: *671 - organization: *672 + changes: *727 + comment: *728 + enterprise: *671 + installation: *672 + organization: *673 pull_request: type: object properties: @@ -182163,7 +182301,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -182244,9 +182382,9 @@ webhooks: type: string enum: - dismissed - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -184479,7 +184617,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 review: description: The review that was affected. type: object @@ -184725,9 +184863,9 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -186841,8 +186979,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: &728 + repository: *674 + review: &729 description: The review that was affected. type: object properties: @@ -187075,12 +187213,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -189427,7 +189565,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -189513,12 +189651,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -191872,7 +192010,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_team: title: Team description: Groups of organization members that gives permissions @@ -192067,12 +192205,12 @@ webhooks: type: string enum: - review_requested - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -194421,7 +194559,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -194508,12 +194646,12 @@ webhooks: type: string enum: - review_requested - enterprise: *670 - installation: *671 + enterprise: *671 + installation: *672 number: description: The pull request number. type: integer - organization: *672 + organization: *673 pull_request: title: Pull Request type: object @@ -196853,7 +196991,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_team: title: Team description: Groups of organization members that gives permissions @@ -197037,9 +197175,9 @@ webhooks: type: string enum: - submitted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -199275,8 +199413,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: *728 + repository: *674 + review: *729 sender: *4 required: - action @@ -199356,9 +199494,9 @@ webhooks: type: string enum: - resolved - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -201489,7 +201627,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -201881,9 +202019,9 @@ webhooks: type: string enum: - unresolved - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 pull_request: title: Simple Pull Request type: object @@ -203997,7 +204135,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -204391,10 +204529,10 @@ webhooks: type: string before: type: string - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -206729,7 +206867,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -206811,11 +206949,11 @@ webhooks: type: string enum: - unassigned - assignee: *729 - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + assignee: *730 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -209165,7 +209303,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -209244,11 +209382,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *670 - installation: *671 - label: *696 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + label: *697 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -211587,7 +211725,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -211668,10 +211806,10 @@ webhooks: type: string enum: - unlocked - enterprise: *670 - installation: *671 - number: *723 - organization: *672 + enterprise: *671 + installation: *672 + number: *724 + organization: *673 pull_request: title: Pull Request type: object @@ -214000,7 +214138,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -214203,7 +214341,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *670 + enterprise: *671 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -214298,8 +214436,8 @@ webhooks: - url - author - committer - installation: *671 - organization: *672 + installation: *672 + organization: *673 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -214887,9 +215025,9 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 registry_package: type: object properties: @@ -215366,7 +215504,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215422,7 +215560,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215500,9 +215638,9 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 registry_package: type: object properties: @@ -215814,7 +215952,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215864,7 +216002,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215941,10 +216079,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - release: &730 + enterprise: *671 + installation: *672 + organization: *673 + release: &731 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -216260,7 +216398,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *673 + repository: *674 sender: *4 required: - action @@ -216337,11 +216475,11 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -216449,11 +216587,11 @@ webhooks: type: boolean required: - to - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -216531,9 +216669,9 @@ webhooks: type: string enum: - prereleased - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -216854,7 +216992,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -216930,10 +217068,10 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - release: &731 + enterprise: *671 + installation: *672 + organization: *673 + release: &732 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -217251,7 +217389,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -217327,11 +217465,11 @@ webhooks: type: string enum: - released - enterprise: *670 - installation: *671 - organization: *672 - release: *730 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *731 + repository: *674 sender: *4 required: - action @@ -217407,11 +217545,11 @@ webhooks: type: string enum: - unpublished - enterprise: *670 - installation: *671 - organization: *672 - release: *731 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + release: *732 + repository: *674 sender: *4 required: - action @@ -217487,11 +217625,11 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - repository_advisory: *582 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + repository_advisory: *583 sender: *4 required: - action @@ -217567,11 +217705,11 @@ webhooks: type: string enum: - reported - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - repository_advisory: *582 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + repository_advisory: *583 sender: *4 required: - action @@ -217647,10 +217785,10 @@ webhooks: type: string enum: - archived - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217727,10 +217865,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217808,10 +217946,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -217896,10 +218034,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218014,10 +218152,10 @@ webhooks: - 'null' items: type: string - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218089,10 +218227,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 status: type: string @@ -218173,10 +218311,10 @@ webhooks: type: string enum: - privatized - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218253,10 +218391,10 @@ webhooks: type: string enum: - publicized - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218350,10 +218488,10 @@ webhooks: - name required: - repository - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218433,10 +218571,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 sender: *4 required: @@ -218515,10 +218653,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 sender: *4 required: @@ -218597,10 +218735,10 @@ webhooks: type: string enum: - edited - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 repository_ruleset: *272 changes: type: object @@ -218908,10 +219046,10 @@ webhooks: - from required: - owner - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -218989,10 +219127,10 @@ webhooks: type: string enum: - unarchived - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219070,7 +219208,7 @@ webhooks: type: string enum: - create - alert: &732 + alert: &733 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -219194,10 +219332,10 @@ webhooks: type: string enum: - open - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219407,10 +219545,10 @@ webhooks: type: string enum: - dismissed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219488,11 +219626,11 @@ webhooks: type: string enum: - reopen - alert: *732 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *733 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219694,10 +219832,10 @@ webhooks: enum: - fixed - open - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219775,7 +219913,7 @@ webhooks: type: string enum: - created - alert: &733 + alert: &734 type: object properties: number: *81 @@ -219879,10 +220017,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -219963,11 +220101,11 @@ webhooks: type: string enum: - created - alert: *733 - installation: *671 - location: *734 - organization: *672 - repository: *673 + alert: *734 + installation: *672 + location: *735 + organization: *673 + repository: *674 sender: *4 required: - location @@ -220205,11 +220343,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220287,11 +220425,11 @@ webhooks: type: string enum: - reopened - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220369,11 +220507,11 @@ webhooks: type: string enum: - resolved - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220451,11 +220589,11 @@ webhooks: type: string enum: - validated - alert: *733 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + alert: *734 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -220531,11 +220669,11 @@ webhooks: type: string enum: - published - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - security_advisory: &735 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + security_advisory: &736 description: The details of the security advisory, including summary, description, and severity. type: object @@ -220721,11 +220859,11 @@ webhooks: type: string enum: - updated - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 - security_advisory: *735 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 + security_advisory: *736 sender: *4 required: - action @@ -220798,10 +220936,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -220988,9 +221126,9 @@ webhooks: type: object properties: security_and_analysis: *263 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: *324 sender: *4 required: @@ -221069,12 +221207,12 @@ webhooks: type: string enum: - cancelled - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: &736 + sponsorship: &737 type: object properties: created_at: @@ -221379,12 +221517,12 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - sponsorship @@ -221472,12 +221610,12 @@ webhooks: type: string required: - from - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221554,17 +221692,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &737 + effective_date: &738 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: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - sponsorship @@ -221638,7 +221776,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &738 + changes: &739 type: object properties: tier: @@ -221682,13 +221820,13 @@ webhooks: - from required: - tier - effective_date: *737 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + effective_date: *738 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221765,13 +221903,13 @@ webhooks: type: string enum: - tier_changed - changes: *738 - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + changes: *739 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - sponsorship: *736 + sponsorship: *737 required: - action - changes @@ -221845,10 +221983,10 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -221932,10 +222070,10 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -222238,6 +222376,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -222364,15 +222506,15 @@ webhooks: type: - string - 'null' - enterprise: *670 + enterprise: *671 id: description: The unique identifier of the status. type: integer - installation: *671 + installation: *672 name: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 sha: description: The Commit SHA. @@ -222488,9 +222630,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222580,9 +222722,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222672,9 +222814,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222764,9 +222906,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *112 - installation: *671 - organization: *672 - repository: *673 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -222843,12 +222985,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - team: &739 + team: &740 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -223041,9 +223183,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -223513,7 +223655,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -223589,9 +223731,9 @@ webhooks: type: string enum: - created - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -224061,7 +224203,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224138,9 +224280,9 @@ webhooks: type: string enum: - deleted - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -224610,7 +224752,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224754,9 +224896,9 @@ webhooks: - from required: - permissions - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -225226,7 +225368,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - changes @@ -225304,9 +225446,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 repository: title: Repository description: A git repository @@ -225776,7 +225918,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -225852,10 +225994,10 @@ webhooks: type: string enum: - started - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 required: - action @@ -225928,17 +226070,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *670 + enterprise: *671 inputs: type: - object - 'null' additionalProperties: true - installation: *671 - organization: *672 + installation: *672 + organization: *673 ref: type: string - repository: *673 + repository: *674 sender: *4 workflow: type: string @@ -226020,10 +226162,10 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: allOf: @@ -226358,10 +226500,10 @@ webhooks: type: string enum: - in_progress - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: allOf: @@ -226722,10 +226864,10 @@ webhooks: type: string enum: - queued - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: type: object @@ -226950,10 +227092,10 @@ webhooks: type: string enum: - waiting - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 workflow_job: type: object @@ -227180,12 +227322,12 @@ webhooks: type: string enum: - completed - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -228204,12 +228346,12 @@ webhooks: type: string enum: - in_progress - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -229213,12 +229355,12 @@ webhooks: type: string enum: - requested - enterprise: *670 - installation: *671 - organization: *672 - repository: *673 + enterprise: *671 + installation: *672 + organization: *673 + repository: *674 sender: *4 - workflow: *692 + workflow: *693 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 1cb86f345..bf07d7689 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -59329,6 +59329,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -121390,6 +121441,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -125803,6 +125860,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -127435,6 +127498,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -129880,6 +129949,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -133361,6 +133436,79 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -273115,6 +273263,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -300784,7 +300938,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -300838,7 +300993,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -300877,7 +301033,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -302255,7 +302412,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -302292,7 +302450,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -307181,6 +307340,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index 6eac17690..b863c3ff1 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -43017,6 +43017,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -88129,6 +88165,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -91312,6 +91352,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -92531,6 +92575,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -94214,6 +94262,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -96616,6 +96668,57 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -200373,6 +200476,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -223399,6 +223506,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -223441,6 +223549,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -223470,6 +223579,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -224509,6 +224619,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -224537,6 +224648,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -228831,6 +228943,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 1cb86f345..bf07d7689 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -59329,6 +59329,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -121390,6 +121441,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -125803,6 +125860,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } } } @@ -127435,6 +127498,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -129880,6 +129949,12 @@ "string", "null" ] + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -133361,6 +133436,79 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active" + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -273115,6 +273263,12 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": [ + "string", + "null" + ] } }, "required": [ @@ -300784,7 +300938,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -300838,7 +300993,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -300877,7 +301033,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -302255,7 +302412,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -302292,7 +302450,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -307181,6 +307340,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index 6eac17690..b863c3ff1 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -43017,6 +43017,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -88129,6 +88165,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -91312,6 +91352,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -92531,6 +92575,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -94214,6 +94262,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -96616,6 +96668,57 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: + - string + - 'null' + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -200373,6 +200476,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -223399,6 +223506,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -223441,6 +223549,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -223470,6 +223579,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -224509,6 +224619,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -224537,6 +224648,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -228831,6 +228943,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json index 8b39e1ec5..24606d8de 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json @@ -249578,9 +249578,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -249800,9 +249798,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -250266,7 +250262,6 @@ "examples": { "default": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -250296,9 +250291,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -276172,9 +276165,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -276592,9 +276583,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } diff --git a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml index 2a3c7dff1..2a4fc8bf5 100644 --- a/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml +++ b/descriptions-next/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml @@ -52886,8 +52886,6 @@ paths: verification: verified: false reason: unsigned - signature:{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}