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..44a225355 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 @@ -26270,7 +26270,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28335,7 +28335,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..81dd88c94 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 @@ -19058,7 +19058,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20491,6 +20491,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -39154,6 +39156,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 +80842,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -83987,6 +84029,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 +85252,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -86889,6 +86939,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -89291,6 +89345,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 +192125,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -214550,6 +214659,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -214592,6 +214702,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -214621,6 +214732,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -215660,6 +215772,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -215688,6 +215801,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -219982,6 +220096,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..44a225355 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -26270,7 +26270,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28335,7 +28335,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..81dd88c94 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -19058,7 +19058,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20491,6 +20491,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -39154,6 +39156,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 +80842,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -83987,6 +84029,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 +85252,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -86889,6 +86939,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -89291,6 +89345,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 +192125,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -214550,6 +214659,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -214592,6 +214702,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -214621,6 +214732,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -215660,6 +215772,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -215688,6 +215801,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -219982,6 +220096,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..04cd5eaad 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 @@ -186809,7 +186809,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -201164,7 +201164,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..c4722b5d0 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= @@ -43167,7 +43167,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -46129,6 +46129,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -47600,6 +47602,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -50813,7 +50819,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 +55745,7 @@ paths: type: array items: *358 examples: - default: &555 + default: &556 value: total_count: 2 machines: @@ -59070,7 +59076,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Status description: The status of a commit. type: object @@ -60536,6 +60542,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -60579,6 +60589,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -60627,6 +60638,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -60782,6 +60794,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *128 @@ -65475,6 +65488,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -65521,6 +65538,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -65615,6 +65633,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *128 x-github: @@ -66531,7 +66550,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 +67522,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 +67956,7 @@ paths: type: array items: *428 examples: - default: &571 + default: &572 value: - id: 1 repository: @@ -71742,6 +71761,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -81761,7 +81784,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &649 + items: &650 type: object properties: type: @@ -82203,6 +82226,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 +82404,9 @@ paths: application/json: schema: type: array - items: *524 + items: *525 examples: - default: *525 + default: *526 '400': *14 '404': *6 x-github: @@ -82460,9 +82600,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 +82949,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -82958,15 +83098,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 +83132,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 requestBody: required: true content: @@ -83163,10 +83303,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 +83346,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': *94 '400': *14 @@ -83235,7 +83375,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': description: Response @@ -83376,7 +83516,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -83749,7 +83889,7 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: default: value: @@ -83839,7 +83979,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -83933,7 +84073,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 +84173,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default: value: @@ -84173,7 +84313,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Tag protection description: Tag protection type: object @@ -84254,7 +84394,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -84402,7 +84542,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 +84554,7 @@ paths: required: - names examples: - default: &533 + default: &534 value: names: - octocat @@ -84469,9 +84609,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *533 + default: *534 '404': *6 '422': *7 x-github: @@ -84494,7 +84634,7 @@ paths: parameters: - *241 - *242 - - &534 + - &535 name: per description: The time frame to display results for. in: query @@ -84525,7 +84665,7 @@ paths: - 128 clones: type: array - items: &535 + items: &536 title: Traffic type: object properties: @@ -84773,7 +84913,7 @@ paths: parameters: - *241 - *242 - - *534 + - *535 responses: '200': description: Response @@ -84794,7 +84934,7 @@ paths: - 3782 views: type: array - items: *535 + items: *536 required: - uniques - count @@ -85564,7 +85704,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &536 + text_matches: &537 title: Search Result Text Matches type: array items: @@ -85727,7 +85867,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 +85987,7 @@ paths: type: number node_id: type: string - text_matches: *536 + text_matches: *537 required: - sha - node_id @@ -86039,7 +86179,7 @@ paths: - interactions - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86155,7 +86295,7 @@ paths: - string - 'null' format: date-time - text_matches: *536 + text_matches: *537 pull_request: type: object properties: @@ -86377,7 +86517,7 @@ paths: enum: - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86422,7 +86562,7 @@ paths: - 'null' score: type: number - text_matches: *536 + text_matches: *537 required: - id - node_id @@ -86507,7 +86647,7 @@ paths: - forks - help-wanted-issues - updated - - *537 + - *538 - *17 - *18 responses: @@ -86744,7 +86884,7 @@ paths: - admin - pull - push - text_matches: *536 + text_matches: *537 temp_clone_token: type: string allow_merge_commit: @@ -87052,7 +87192,7 @@ paths: - string - 'null' format: uri - text_matches: *536 + text_matches: *537 related: type: - array @@ -87245,7 +87385,7 @@ paths: - followers - repositories - joined - - *537 + - *538 - *17 - *18 responses: @@ -87355,7 +87495,7 @@ paths: type: - boolean - 'null' - text_matches: *536 + text_matches: *537 blog: type: - string @@ -87437,7 +87577,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 +87618,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 +87719,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 +87750,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 +87763,7 @@ paths: type: array items: *228 examples: - default: *539 + default: *540 headers: Link: *37 x-github: @@ -87652,7 +87792,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 +87855,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 +87889,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 +87915,7 @@ paths: application/json: schema: *228 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87800,7 +87940,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 +87970,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 +87984,7 @@ paths: type: array items: *231 examples: - default: *541 + default: *542 headers: Link: *37 x-github: @@ -87873,7 +88013,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 +88065,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 +88100,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 +88126,7 @@ paths: application/json: schema: *231 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88011,7 +88151,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 +88182,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 +88241,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 +88303,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 +88361,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 +88420,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 +88458,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 +88509,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 +88546,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 +88586,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 +88623,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 +88632,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 +88665,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 +88693,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 +88727,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 +88757,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 +88769,7 @@ paths: type: array items: *239 examples: - default: *545 + default: *546 headers: Link: *37 '404': *6 @@ -88656,7 +88796,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 +88805,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 +88830,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 +88899,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 +88927,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 +88969,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 +88977,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 +89128,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 +89180,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 +89207,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 +89219,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 +89252,7 @@ paths: application/json: schema: oneOf: - - &550 + - &551 title: Private User description: Private User type: object @@ -89362,7 +89502,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 +89662,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -89920,7 +90060,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &552 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -90040,7 +90180,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -90186,7 +90326,7 @@ paths: type: array items: *108 examples: - default: *552 + default: *553 '401': *23 '403': *27 '404': *6 @@ -90453,7 +90593,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 +90646,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 +90691,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -90592,7 +90732,7 @@ paths: type: array items: *358 examples: - default: *555 + default: *556 '304': *35 '500': *39 '401': *23 @@ -91558,7 +91698,7 @@ paths: type: array items: *188 examples: - default: &568 + default: &569 value: - id: 197 name: hello_docker @@ -91659,7 +91799,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Email description: Email type: object @@ -91729,9 +91869,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 +91948,7 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: default: value: @@ -92066,7 +92206,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: GPG Key description: A unique encryption key type: object @@ -92211,7 +92351,7 @@ paths: - subkeys - revoked examples: - default: &581 + default: &582 value: - id: 3 name: Octocat's GPG Key @@ -92296,9 +92436,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 +92495,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 +92507,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '304': *35 '403': *27 @@ -92392,7 +92532,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 +92723,7 @@ paths: type: array items: *57 examples: - default: *560 + default: *561 headers: Link: *37 '404': *6 @@ -92847,7 +92987,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Key description: Key type: object @@ -92945,9 +93085,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -92986,9 +93126,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 '304': *35 '403': *27 @@ -93044,7 +93184,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -93123,7 +93263,7 @@ paths: - account - plan examples: - default: &564 + default: &565 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -93185,9 +93325,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: *564 + default: *565 headers: Link: *37 '304': *35 @@ -94191,7 +94331,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *182 - - *565 + - *566 responses: '204': description: Response @@ -94264,7 +94404,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 '304': *35 @@ -94306,7 +94446,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *18 - *17 responses: @@ -94318,8 +94458,8 @@ paths: type: array items: *188 examples: - default: *568 - '400': *569 + default: *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94348,7 +94488,7 @@ paths: application/json: schema: *188 examples: - default: &582 + default: &583 value: id: 40201 name: octo-name @@ -94800,9 +94940,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: *570 + default: *571 headers: Link: *37 '304': *35 @@ -94915,7 +95055,7 @@ paths: type: array items: *57 examples: - default: &577 + default: &578 summary: Default response value: - id: 1296269 @@ -95273,7 +95413,7 @@ paths: type: array items: *428 examples: - default: *571 + default: *572 headers: Link: *37 '304': *35 @@ -95352,7 +95492,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Social account description: Social media account type: object @@ -95369,7 +95509,7 @@ paths: - provider - url examples: - default: &573 + default: &574 value: - provider: twitter url: https://twitter.com/github @@ -95432,9 +95572,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 '422': *15 '304': *35 '404': *6 @@ -95522,7 +95662,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 +95682,7 @@ paths: - title - created_at examples: - default: &589 + default: &590 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95609,9 +95749,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95642,7 +95782,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 +95794,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 '404': *6 '304': *35 '403': *27 @@ -95679,7 +95819,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 +95848,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 +95873,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 +96244,10 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: &579 + default-response: &580 summary: Default response value: login: octocat @@ -96142,7 +96282,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 +96342,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *578 + - *579 - *17 responses: '200': @@ -96249,11 +96389,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 +96557,7 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 x-github: @@ -96821,9 +96961,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *581 + default: *582 headers: Link: *37 x-github: @@ -97005,7 +97145,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 x-github: @@ -97044,7 +97184,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *121 - *18 - *17 @@ -97057,10 +97197,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 +97230,7 @@ paths: application/json: schema: *188 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97683,9 +97823,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *584 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97713,9 +97853,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97743,9 +97883,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97773,9 +97913,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 headers: Link: *37 x-github: @@ -97805,9 +97945,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *589 + default: *590 headers: Link: *37 x-github: @@ -97832,7 +97972,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 +97984,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 +98148,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 +98217,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 +98238,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 +98311,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 +99224,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 +99303,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 +99530,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 +99722,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 +99810,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 +99923,7 @@ webhooks: - examples: - neutral - deployment: *597 + deployment: *598 details_url: type: string examples: @@ -99881,9 +100021,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 +100416,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 +100815,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 +101223,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 +102218,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 +102906,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 +103588,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 +103898,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 +104239,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 +104517,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 +104854,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 +105128,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 +105138,7 @@ webhooks: type: - string - 'null' - repository: *595 + repository: *596 sender: *4 required: - action @@ -105230,12 +105370,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 +105637,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 +105721,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 +105742,7 @@ webhooks: enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -105685,9 +105825,9 @@ webhooks: enum: - created definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105772,9 +105912,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 +105992,9 @@ webhooks: enum: - updated definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105931,10 +106071,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 +106159,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 +106255,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 +106343,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 +106431,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 +106517,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 +106603,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 +106690,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 +106776,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 +106856,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 +106896,8 @@ webhooks: - verified - created_at - read_only - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -106834,11 +106974,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 +107550,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 +108297,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 +108370,7 @@ webhooks: type: string enum: - approved - approver: &604 + approver: &605 type: object properties: avatar_url: @@ -108273,11 +108413,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 +108498,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &606 + workflow_job_run: &607 type: object properties: conclusion: @@ -109104,18 +109244,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 +109972,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 +111921,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 +112617,7 @@ webhooks: type: string enum: - answered - answer: &610 + answer: &611 type: object properties: author_association: @@ -112637,7 +112777,7 @@ webhooks: - created_at - updated_at - body - discussion: &608 + discussion: &609 title: Discussion description: A Discussion in a repository. type: object @@ -112955,10 +113095,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 +113225,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 +113312,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 +113398,7 @@ webhooks: type: string enum: - created - comment: &609 + comment: &610 type: object properties: author_association: @@ -113418,11 +113558,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 +113645,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 +113745,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 +113834,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 +113920,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 +114024,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 +114110,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 +114146,8 @@ webhooks: - color - default - description - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114090,11 +114230,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 +114316,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 +114402,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 +114491,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 +114583,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 +114668,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 +114756,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 +114842,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 +114919,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 +115597,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 +115745,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 +115785,7 @@ webhooks: - action - sha - html_url - repository: *595 + repository: *596 sender: *4 required: - pages @@ -115721,10 +115861,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 +115890,8 @@ webhooks: - name - full_name - private - repository: *595 - requester: *612 + repository: *596 + requester: *613 sender: *4 required: - action @@ -115826,11 +115966,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 +116047,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 +116128,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 +116177,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 +116264,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 +116294,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 +116375,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 +116561,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 +116643,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 +116895,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 +118072,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -118013,7 +118153,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 +118320,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 +119495,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -119436,7 +119576,7 @@ webhooks: type: string enum: - edited - changes: &641 + changes: &642 description: The changes to the comment. type: object properties: @@ -119448,9 +119588,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 +120765,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -120708,10 +120848,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 +121781,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -121722,8 +121862,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 +122941,8 @@ webhooks: required: - state - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -122881,8 +123021,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 +123945,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -123885,8 +124025,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 +124953,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 +125096,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -125056,8 +125196,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 +126127,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 +126209,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 +127139,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 +127221,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 +128153,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -128093,8 +128233,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 +129159,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 +130647,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 +131577,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -131518,9 +131658,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 +132583,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -132523,8 +132663,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 +133594,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -134941,11 +135081,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 +135166,7 @@ webhooks: type: string enum: - unassigned - assignee: &644 + assignee: &645 title: User type: - object @@ -135098,11 +135238,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 +135321,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 +135406,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 +136336,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136277,11 +136417,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 +136500,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 +136582,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 +136696,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 +136782,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 +136872,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 +136957,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -136897,10 +137037,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 +137128,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137070,10 +137210,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 +137299,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137240,8 +137380,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 +137467,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 +137549,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 +137656,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 +137762,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 +137845,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 +137927,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 +138009,7 @@ webhooks: required: - login - id - team: &622 + team: &623 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138062,11 +138202,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 +138285,7 @@ webhooks: required: - login - id - team: *622 + team: *623 required: - action - scope @@ -138227,8 +138367,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 +138394,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138341,10 +138481,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 +138557,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 +138665,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 +138750,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 +138833,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 +138977,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138917,11 +139057,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 +139171,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 +139255,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 +139338,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 +139421,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 +139504,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 +139600,8 @@ webhooks: - role - organization_url - user - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139539,11 +139679,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 +139762,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 +139885,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 +139966,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 +140057,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 +140137,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 +140662,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &626 + items: &627 title: Ruby Gems metadata type: object properties: @@ -140619,7 +140759,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -140695,9 +140835,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 +141199,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 source_url: type: string format: uri @@ -141130,7 +141270,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -141311,12 +141451,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 +141536,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 +141686,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 +141768,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 +141850,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 +141931,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 +142039,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 +142071,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 +142317,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 +142443,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -142384,11 +142524,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 +142608,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 +142740,7 @@ webhooks: repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -142694,11 +142834,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 +142932,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 +143131,7 @@ webhooks: type: string required: - after_id - repository: *595 + repository: *596 sender: *4 required: - action @@ -143071,10 +143211,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 +143341,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143281,10 +143421,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 +143464,7 @@ webhooks: - name - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143403,14 +143543,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 +143639,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 +143723,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 +143807,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 +143891,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 +143999,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 +144082,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 +144167,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 +144317,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 +144400,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 +144523,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 +144608,7 @@ webhooks: type: string enum: - archived - changes: &636 + changes: &637 type: object properties: archived_at: @@ -144484,9 +144624,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 +144765,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 +144849,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 +144932,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 +145039,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 +145059,7 @@ webhooks: required: - id - name - - &635 + - &636 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -144948,8 +145088,8 @@ webhooks: oneOf: - type: string - type: integer - - *634 - *635 + - *636 type: - 'null' - string @@ -144972,9 +145112,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 +145211,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 +145296,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 +145381,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 +145464,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 +145601,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 +145749,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 +145822,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 +145902,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 +148257,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -148199,11 +148339,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 +150685,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -150627,11 +150767,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 +153113,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -153055,11 +153195,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 +153263,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *595 + repository: *596 sender: *4 required: - action @@ -153204,12 +153344,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 +153429,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 +155760,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -155699,11 +155839,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 +158189,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *595 + repository: *596 sender: *4 required: - action @@ -158173,12 +158313,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 +158398,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 +160733,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -160673,11 +160813,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 +163165,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -163106,10 +163246,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 +165595,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -165535,12 +165675,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 +165759,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 +165845,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 +165930,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 +166310,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 +168542,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -168482,7 +168622,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 +168915,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 +171135,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -171075,11 +171215,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 +173440,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -173381,9 +173521,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 +175756,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 review: description: The review that was affected. type: object @@ -175862,9 +176002,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 +178118,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 +178352,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 +180704,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -180650,12 +180790,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 +183149,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 +183344,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 +185698,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -185645,12 +185785,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 +188130,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 +188314,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 +190552,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: *643 + repository: *596 + review: *644 sender: *4 required: - action @@ -190493,9 +190633,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 +192766,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -193018,9 +193158,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 +195274,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -195528,10 +195668,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 +198006,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -197948,11 +198088,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 +200442,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -200381,11 +200521,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 +202864,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -202805,10 +202945,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 +205277,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -205340,7 +205480,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 +205575,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 +206164,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 +206643,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -206559,7 +206699,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -206637,9 +206777,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 +207091,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -207001,7 +207141,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -207078,10 +207218,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 +207537,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *595 + repository: *596 sender: *4 required: - action @@ -207474,11 +207614,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 +207726,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 +207808,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 +208131,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208067,10 +208207,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 +208528,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208464,11 +208604,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 +208684,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 +208764,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 +208844,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 +208924,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 +209004,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 +209085,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 +209173,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 +209291,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 +209366,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 +209450,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 +209530,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 +209627,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 +209710,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 +209792,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 +209874,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 +210185,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 +210266,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 +210347,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 +210471,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 +210684,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 +210765,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 +210971,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 +211052,7 @@ webhooks: type: string enum: - created - alert: &648 + alert: &649 type: object properties: number: *46 @@ -211016,10 +211156,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 +211240,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 +211482,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 +211564,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 +211646,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 +211728,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 +211808,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 +211998,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 +212075,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 +212265,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 +212346,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 +212656,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 +212749,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 +212831,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 +212915,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &653 + changes: &654 type: object properties: tier: @@ -212819,13 +212959,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 +213042,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 +213122,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 +213209,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 +213515,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -213501,15 +213645,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 +213769,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 +213861,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 +213953,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 +214045,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 +214124,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 +214322,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 +214794,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -214726,9 +214870,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 +215342,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215275,9 +215419,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 +215891,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215891,9 +216035,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 +216507,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - changes @@ -216441,9 +216585,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 +217057,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -216989,10 +217133,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 +217209,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 +217301,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 +217639,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 +218003,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 +218231,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 +218461,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 +219485,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 +220494,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..04cd5eaad 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 @@ -186809,7 +186809,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -201164,7 +201164,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..c4722b5d0 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= @@ -43167,7 +43167,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -46129,6 +46129,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -47600,6 +47602,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -50813,7 +50819,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 +55745,7 @@ paths: type: array items: *358 examples: - default: &555 + default: &556 value: total_count: 2 machines: @@ -59070,7 +59076,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Status description: The status of a commit. type: object @@ -60536,6 +60542,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -60579,6 +60589,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -60627,6 +60638,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -60782,6 +60794,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *128 @@ -65475,6 +65488,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -65521,6 +65538,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -65615,6 +65633,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *128 x-github: @@ -66531,7 +66550,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 +67522,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 +67956,7 @@ paths: type: array items: *428 examples: - default: &571 + default: &572 value: - id: 1 repository: @@ -71742,6 +71761,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -81761,7 +81784,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &649 + items: &650 type: object properties: type: @@ -82203,6 +82226,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 +82404,9 @@ paths: application/json: schema: type: array - items: *524 + items: *525 examples: - default: *525 + default: *526 '400': *14 '404': *6 x-github: @@ -82460,9 +82600,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 +82949,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -82958,15 +83098,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 +83132,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 requestBody: required: true content: @@ -83163,10 +83303,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 +83346,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': *94 '400': *14 @@ -83235,7 +83375,7 @@ paths: parameters: - *241 - *242 - - *526 + - *527 responses: '202': description: Response @@ -83376,7 +83516,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -83749,7 +83889,7 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: default: value: @@ -83839,7 +83979,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -83933,7 +84073,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 +84173,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default: value: @@ -84173,7 +84313,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Tag protection description: Tag protection type: object @@ -84254,7 +84394,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -84402,7 +84542,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 +84554,7 @@ paths: required: - names examples: - default: &533 + default: &534 value: names: - octocat @@ -84469,9 +84609,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *533 + default: *534 '404': *6 '422': *7 x-github: @@ -84494,7 +84634,7 @@ paths: parameters: - *241 - *242 - - &534 + - &535 name: per description: The time frame to display results for. in: query @@ -84525,7 +84665,7 @@ paths: - 128 clones: type: array - items: &535 + items: &536 title: Traffic type: object properties: @@ -84773,7 +84913,7 @@ paths: parameters: - *241 - *242 - - *534 + - *535 responses: '200': description: Response @@ -84794,7 +84934,7 @@ paths: - 3782 views: type: array - items: *535 + items: *536 required: - uniques - count @@ -85564,7 +85704,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &536 + text_matches: &537 title: Search Result Text Matches type: array items: @@ -85727,7 +85867,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 +85987,7 @@ paths: type: number node_id: type: string - text_matches: *536 + text_matches: *537 required: - sha - node_id @@ -86039,7 +86179,7 @@ paths: - interactions - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86155,7 +86295,7 @@ paths: - string - 'null' format: date-time - text_matches: *536 + text_matches: *537 pull_request: type: object properties: @@ -86377,7 +86517,7 @@ paths: enum: - created - updated - - *537 + - *538 - *17 - *18 responses: @@ -86422,7 +86562,7 @@ paths: - 'null' score: type: number - text_matches: *536 + text_matches: *537 required: - id - node_id @@ -86507,7 +86647,7 @@ paths: - forks - help-wanted-issues - updated - - *537 + - *538 - *17 - *18 responses: @@ -86744,7 +86884,7 @@ paths: - admin - pull - push - text_matches: *536 + text_matches: *537 temp_clone_token: type: string allow_merge_commit: @@ -87052,7 +87192,7 @@ paths: - string - 'null' format: uri - text_matches: *536 + text_matches: *537 related: type: - array @@ -87245,7 +87385,7 @@ paths: - followers - repositories - joined - - *537 + - *538 - *17 - *18 responses: @@ -87355,7 +87495,7 @@ paths: type: - boolean - 'null' - text_matches: *536 + text_matches: *537 blog: type: - string @@ -87437,7 +87577,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 +87618,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 +87719,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 +87750,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 +87763,7 @@ paths: type: array items: *228 examples: - default: *539 + default: *540 headers: Link: *37 x-github: @@ -87652,7 +87792,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 +87855,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 +87889,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 +87915,7 @@ paths: application/json: schema: *228 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87800,7 +87940,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 +87970,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 +87984,7 @@ paths: type: array items: *231 examples: - default: *541 + default: *542 headers: Link: *37 x-github: @@ -87873,7 +88013,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 +88065,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 +88100,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 +88126,7 @@ paths: application/json: schema: *231 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88011,7 +88151,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 +88182,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 +88241,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 +88303,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 +88361,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 +88420,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 +88458,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 +88509,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 +88546,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 +88586,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 +88623,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 +88632,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 +88665,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 +88693,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 +88727,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 +88757,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 +88769,7 @@ paths: type: array items: *239 examples: - default: *545 + default: *546 headers: Link: *37 '404': *6 @@ -88656,7 +88796,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 +88805,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 +88830,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 +88899,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 +88927,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 +88969,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 +88977,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 +89128,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 +89180,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 +89207,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 +89219,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 +89252,7 @@ paths: application/json: schema: oneOf: - - &550 + - &551 title: Private User description: Private User type: object @@ -89362,7 +89502,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 +89662,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -89920,7 +90060,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &552 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -90040,7 +90180,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -90186,7 +90326,7 @@ paths: type: array items: *108 examples: - default: *552 + default: *553 '401': *23 '403': *27 '404': *6 @@ -90453,7 +90593,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 +90646,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 +90691,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '404': *6 x-github: githubCloudOnly: false @@ -90592,7 +90732,7 @@ paths: type: array items: *358 examples: - default: *555 + default: *556 '304': *35 '500': *39 '401': *23 @@ -91558,7 +91698,7 @@ paths: type: array items: *188 examples: - default: &568 + default: &569 value: - id: 197 name: hello_docker @@ -91659,7 +91799,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Email description: Email type: object @@ -91729,9 +91869,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 +91948,7 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: default: value: @@ -92066,7 +92206,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: GPG Key description: A unique encryption key type: object @@ -92211,7 +92351,7 @@ paths: - subkeys - revoked examples: - default: &581 + default: &582 value: - id: 3 name: Octocat's GPG Key @@ -92296,9 +92436,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 +92495,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 +92507,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 '304': *35 '403': *27 @@ -92392,7 +92532,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 +92723,7 @@ paths: type: array items: *57 examples: - default: *560 + default: *561 headers: Link: *37 '404': *6 @@ -92847,7 +92987,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Key description: Key type: object @@ -92945,9 +93085,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -92986,9 +93126,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 '304': *35 '403': *27 @@ -93044,7 +93184,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -93123,7 +93263,7 @@ paths: - account - plan examples: - default: &564 + default: &565 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -93185,9 +93325,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: *564 + default: *565 headers: Link: *37 '304': *35 @@ -94191,7 +94331,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *182 - - *565 + - *566 responses: '204': description: Response @@ -94264,7 +94404,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 '304': *35 @@ -94306,7 +94446,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *18 - *17 responses: @@ -94318,8 +94458,8 @@ paths: type: array items: *188 examples: - default: *568 - '400': *569 + default: *569 + '400': *570 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94348,7 +94488,7 @@ paths: application/json: schema: *188 examples: - default: &582 + default: &583 value: id: 40201 name: octo-name @@ -94800,9 +94940,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: *570 + default: *571 headers: Link: *37 '304': *35 @@ -94915,7 +95055,7 @@ paths: type: array items: *57 examples: - default: &577 + default: &578 summary: Default response value: - id: 1296269 @@ -95273,7 +95413,7 @@ paths: type: array items: *428 examples: - default: *571 + default: *572 headers: Link: *37 '304': *35 @@ -95352,7 +95492,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Social account description: Social media account type: object @@ -95369,7 +95509,7 @@ paths: - provider - url examples: - default: &573 + default: &574 value: - provider: twitter url: https://twitter.com/github @@ -95432,9 +95572,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 '422': *15 '304': *35 '404': *6 @@ -95522,7 +95662,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 +95682,7 @@ paths: - title - created_at examples: - default: &589 + default: &590 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95609,9 +95749,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95642,7 +95782,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 +95794,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 '404': *6 '304': *35 '403': *27 @@ -95679,7 +95819,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 +95848,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 +95873,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 +96244,10 @@ paths: application/json: schema: oneOf: + - *551 - *550 - - *549 examples: - default-response: &579 + default-response: &580 summary: Default response value: login: octocat @@ -96142,7 +96282,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 +96342,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *578 + - *579 - *17 responses: '200': @@ -96249,11 +96389,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 +96557,7 @@ paths: type: array items: *188 examples: - default: *568 + default: *569 '403': *27 '401': *23 x-github: @@ -96821,9 +96961,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *581 + default: *582 headers: Link: *37 x-github: @@ -97005,7 +97145,7 @@ paths: type: array items: *88 examples: - default: *566 + default: *567 headers: Link: *37 x-github: @@ -97044,7 +97184,7 @@ paths: - docker - nuget - container - - *567 + - *568 - *121 - *18 - *17 @@ -97057,10 +97197,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 +97230,7 @@ paths: application/json: schema: *188 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97683,9 +97823,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *584 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97713,9 +97853,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97743,9 +97883,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97773,9 +97913,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *573 + default: *574 headers: Link: *37 x-github: @@ -97805,9 +97945,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *589 + default: *590 headers: Link: *37 x-github: @@ -97832,7 +97972,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 +97984,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 +98148,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 +98217,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 +98238,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 +98311,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 +99224,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 +99303,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 +99530,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 +99722,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 +99810,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 +99923,7 @@ webhooks: - examples: - neutral - deployment: *597 + deployment: *598 details_url: type: string examples: @@ -99881,9 +100021,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 +100416,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 +100815,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 +101223,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 +102218,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 +102906,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 +103588,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 +103898,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 +104239,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 +104517,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 +104854,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 +105128,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 +105138,7 @@ webhooks: type: - string - 'null' - repository: *595 + repository: *596 sender: *4 required: - action @@ -105230,12 +105370,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 +105637,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 +105721,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 +105742,7 @@ webhooks: enum: - tag - branch - repository: *595 + repository: *596 sender: *4 required: - ref @@ -105685,9 +105825,9 @@ webhooks: enum: - created definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105772,9 +105912,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 +105992,9 @@ webhooks: enum: - updated definition: *202 - enterprise: *592 - installation: *593 - organization: *594 + enterprise: *593 + installation: *594 + organization: *595 sender: *4 required: - action @@ -105931,10 +106071,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 +106159,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 +106255,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 +106343,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 +106431,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 +106517,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 +106603,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 +106690,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 +106776,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 +106856,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 +106896,8 @@ webhooks: - verified - created_at - read_only - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -106834,11 +106974,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 +107550,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 +108297,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 +108370,7 @@ webhooks: type: string enum: - approved - approver: &604 + approver: &605 type: object properties: avatar_url: @@ -108273,11 +108413,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 +108498,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &606 + workflow_job_run: &607 type: object properties: conclusion: @@ -109104,18 +109244,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 +109972,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 +111921,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 +112617,7 @@ webhooks: type: string enum: - answered - answer: &610 + answer: &611 type: object properties: author_association: @@ -112637,7 +112777,7 @@ webhooks: - created_at - updated_at - body - discussion: &608 + discussion: &609 title: Discussion description: A Discussion in a repository. type: object @@ -112955,10 +113095,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 +113225,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 +113312,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 +113398,7 @@ webhooks: type: string enum: - created - comment: &609 + comment: &610 type: object properties: author_association: @@ -113418,11 +113558,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 +113645,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 +113745,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 +113834,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 +113920,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 +114024,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 +114110,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 +114146,8 @@ webhooks: - color - default - description - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -114090,11 +114230,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 +114316,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 +114402,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 +114491,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 +114583,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 +114668,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 +114756,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 +114842,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 +114919,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 +115597,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 +115745,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 +115785,7 @@ webhooks: - action - sha - html_url - repository: *595 + repository: *596 sender: *4 required: - pages @@ -115721,10 +115861,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 +115890,8 @@ webhooks: - name - full_name - private - repository: *595 - requester: *612 + repository: *596 + requester: *613 sender: *4 required: - action @@ -115826,11 +115966,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 +116047,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 +116128,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 +116177,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 +116264,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 +116294,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 +116375,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 +116561,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 +116643,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 +116895,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 +118072,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -118013,7 +118153,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 +118320,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 +119495,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -119436,7 +119576,7 @@ webhooks: type: string enum: - edited - changes: &641 + changes: &642 description: The changes to the comment. type: object properties: @@ -119448,9 +119588,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 +120765,8 @@ webhooks: - state - locked - assignee - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -120708,10 +120848,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 +121781,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -121722,8 +121862,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 +122941,8 @@ webhooks: required: - state - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -122881,8 +123021,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 +123945,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -123885,8 +124025,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 +124953,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 +125096,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -125056,8 +125196,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 +126127,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 +126209,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 +127139,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 +127221,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 +128153,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -128093,8 +128233,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 +129159,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 +130647,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 +131577,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -131518,9 +131658,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 +132583,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -132523,8 +132663,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 +133594,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -134941,11 +135081,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 +135166,7 @@ webhooks: type: string enum: - unassigned - assignee: &644 + assignee: &645 title: User type: - object @@ -135098,11 +135238,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 +135321,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 +135406,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 +136336,8 @@ webhooks: format: uri user_view_type: type: string - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -136277,11 +136417,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 +136500,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 +136582,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 +136696,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 +136782,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 +136872,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 +136957,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -136897,10 +137037,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 +137128,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137070,10 +137210,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 +137299,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *595 + repository: *596 sender: *4 required: - action @@ -137240,8 +137380,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 +137467,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 +137549,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 +137656,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 +137762,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 +137845,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 +137927,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 +138009,7 @@ webhooks: required: - login - id - team: &622 + team: &623 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138062,11 +138202,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 +138285,7 @@ webhooks: required: - login - id - team: *622 + team: *623 required: - action - scope @@ -138227,8 +138367,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 +138394,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138341,10 +138481,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 +138557,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 +138665,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 +138750,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 +138833,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 +138977,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -138917,11 +139057,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 +139171,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 +139255,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 +139338,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 +139421,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 +139504,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 +139600,8 @@ webhooks: - role - organization_url - user - organization: *594 - repository: *595 + organization: *595 + repository: *596 sender: *4 required: - action @@ -139539,11 +139679,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 +139762,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 +139885,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 +139966,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 +140057,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 +140137,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 +140662,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &626 + items: &627 title: Ruby Gems metadata type: object properties: @@ -140619,7 +140759,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -140695,9 +140835,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 +141199,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 source_url: type: string format: uri @@ -141130,7 +141270,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -141311,12 +141451,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 +141536,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 +141686,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 +141768,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 +141850,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 +141931,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 +142039,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 +142071,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 +142317,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 +142443,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -142384,11 +142524,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 +142608,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 +142740,7 @@ webhooks: repository: anyOf: - type: 'null' - - *595 + - *596 sender: *4 required: - action @@ -142694,11 +142834,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 +142932,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 +143131,7 @@ webhooks: type: string required: - after_id - repository: *595 + repository: *596 sender: *4 required: - action @@ -143071,10 +143211,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 +143341,7 @@ webhooks: - creator - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143281,10 +143421,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 +143464,7 @@ webhooks: - name - created_at - updated_at - repository: *595 + repository: *596 sender: *4 required: - action @@ -143403,14 +143543,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 +143639,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 +143723,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 +143807,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 +143891,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 +143999,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 +144082,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 +144167,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 +144317,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 +144400,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 +144523,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 +144608,7 @@ webhooks: type: string enum: - archived - changes: &636 + changes: &637 type: object properties: archived_at: @@ -144484,9 +144624,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 +144765,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 +144849,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 +144932,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 +145039,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 +145059,7 @@ webhooks: required: - id - name - - &635 + - &636 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -144948,8 +145088,8 @@ webhooks: oneOf: - type: string - type: integer - - *634 - *635 + - *636 type: - 'null' - string @@ -144972,9 +145112,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 +145211,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 +145296,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 +145381,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 +145464,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 +145601,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 +145749,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 +145822,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 +145902,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 +148257,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -148199,11 +148339,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 +150685,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -150627,11 +150767,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 +153113,7 @@ webhooks: - draft reason: type: string - repository: *595 + repository: *596 sender: *4 required: - action @@ -153055,11 +153195,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 +153263,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *595 + repository: *596 sender: *4 required: - action @@ -153204,12 +153344,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 +153429,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 +155760,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -155699,11 +155839,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 +158189,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *595 + repository: *596 sender: *4 required: - action @@ -158173,12 +158313,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 +158398,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 +160733,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -160673,11 +160813,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 +163165,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -163106,10 +163246,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 +165595,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -165535,12 +165675,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 +165759,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 +165845,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 +165930,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 +166310,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 +168542,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -168482,7 +168622,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 +168915,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 +171135,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -171075,11 +171215,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 +173440,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *595 + repository: *596 sender: *4 required: - action @@ -173381,9 +173521,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 +175756,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 review: description: The review that was affected. type: object @@ -175862,9 +176002,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 +178118,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 +178352,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 +180704,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -180650,12 +180790,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 +183149,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 +183344,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 +185698,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 requested_reviewer: title: User type: @@ -185645,12 +185785,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 +188130,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 +188314,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 +190552,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 - review: *643 + repository: *596 + review: *644 sender: *4 required: - action @@ -190493,9 +190633,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 +192766,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -193018,9 +193158,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 +195274,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *595 + repository: *596 sender: *4 thread: type: object @@ -195528,10 +195668,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 +198006,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -197948,11 +198088,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 +200442,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -200381,11 +200521,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 +202864,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -202805,10 +202945,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 +205277,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *595 + repository: *596 sender: *4 required: - action @@ -205340,7 +205480,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 +205575,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 +206164,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 +206643,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -206559,7 +206699,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -206637,9 +206777,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 +207091,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *626 + items: *627 summary: type: string tag_name: @@ -207001,7 +207141,7 @@ webhooks: - owner - package_version - registry - repository: *595 + repository: *596 sender: *4 required: - action @@ -207078,10 +207218,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 +207537,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *595 + repository: *596 sender: *4 required: - action @@ -207474,11 +207614,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 +207726,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 +207808,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 +208131,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208067,10 +208207,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 +208528,7 @@ webhooks: - string - 'null' format: uri - repository: *595 + repository: *596 sender: *4 required: - action @@ -208464,11 +208604,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 +208684,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 +208764,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 +208844,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 +208924,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 +209004,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 +209085,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 +209173,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 +209291,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 +209366,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 +209450,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 +209530,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 +209627,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 +209710,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 +209792,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 +209874,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 +210185,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 +210266,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 +210347,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 +210471,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 +210684,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 +210765,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 +210971,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 +211052,7 @@ webhooks: type: string enum: - created - alert: &648 + alert: &649 type: object properties: number: *46 @@ -211016,10 +211156,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 +211240,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 +211482,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 +211564,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 +211646,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 +211728,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 +211808,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 +211998,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 +212075,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 +212265,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 +212346,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 +212656,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 +212749,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 +212831,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 +212915,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &653 + changes: &654 type: object properties: tier: @@ -212819,13 +212959,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 +213042,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 +213122,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 +213209,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 +213515,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -213501,15 +213645,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 +213769,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 +213861,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 +213953,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 +214045,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 +214124,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 +214322,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 +214794,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -214726,9 +214870,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 +215342,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215275,9 +215419,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 +215891,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -215891,9 +216035,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 +216507,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - changes @@ -216441,9 +216585,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 +217057,7 @@ webhooks: - topics - visibility sender: *4 - team: *654 + team: *655 required: - action - team @@ -216989,10 +217133,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 +217209,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 +217301,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 +217639,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 +218003,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 +218231,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 +218461,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 +219485,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 +220494,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..4b5e69f5e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -206149,7 +206149,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -220576,7 +220576,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..95e8cc8c5 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= @@ -48823,7 +48823,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -51785,6 +51785,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -53256,6 +53258,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -56469,7 +56475,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 +61401,7 @@ paths: type: array items: *416 examples: - default: &639 + default: &640 value: total_count: 2 machines: @@ -64726,7 +64732,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Status description: The status of a commit. type: object @@ -66192,6 +66198,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -66235,6 +66245,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -66283,6 +66294,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -66438,6 +66450,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *139 @@ -71131,6 +71144,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -71177,6 +71194,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -71271,6 +71289,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *139 x-github: @@ -72187,7 +72206,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 +73178,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 +73612,7 @@ paths: type: array items: *486 examples: - default: &655 + default: &656 value: - id: 1 repository: @@ -77398,6 +77417,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -87479,7 +87502,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &734 + items: &735 type: object properties: type: @@ -87921,6 +87944,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 +88122,9 @@ paths: application/json: schema: type: array - items: *582 + items: *583 examples: - default: *583 + default: *584 '400': *14 '404': *6 x-github: @@ -88178,9 +88318,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 +88667,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -88676,15 +88816,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 +88850,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 requestBody: required: true content: @@ -88881,10 +89021,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 +89064,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': *140 '400': *14 @@ -88953,7 +89093,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': description: Response @@ -89094,7 +89234,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -89467,7 +89607,7 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: default: value: @@ -89557,7 +89697,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -89651,7 +89791,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 +89891,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -89891,7 +90031,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Tag protection description: Tag protection type: object @@ -89972,7 +90112,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90120,7 +90260,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 +90272,7 @@ paths: required: - names examples: - default: &591 + default: &592 value: names: - octocat @@ -90187,9 +90327,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *6 '422': *7 x-github: @@ -90212,7 +90352,7 @@ paths: parameters: - *311 - *312 - - &592 + - &593 name: per description: The time frame to display results for. in: query @@ -90243,7 +90383,7 @@ paths: - 128 clones: type: array - items: &593 + items: &594 title: Traffic type: object properties: @@ -90491,7 +90631,7 @@ paths: parameters: - *311 - *312 - - *592 + - *593 responses: '200': description: Response @@ -90512,7 +90652,7 @@ paths: - 3782 views: type: array - items: *593 + items: *594 required: - uniques - count @@ -91184,7 +91324,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 +91334,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 +91346,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 +91390,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &595 + items: &596 allOf: - type: object required: @@ -91332,7 +91472,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 +91537,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 +91585,7 @@ paths: required: true content: application/json: - schema: &604 + schema: &605 type: object required: - schemas @@ -91505,9 +91645,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 +91666,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 +91689,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 +91698,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 +91732,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 +91764,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 +91798,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 +91864,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 +91890,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 +91934,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *606 - *607 + - *608 - *38 responses: '200': @@ -91829,7 +91969,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &610 + items: &611 allOf: - type: object required: @@ -91921,7 +92061,7 @@ paths: address. examples: - true - roles: &609 + roles: &610 type: array description: The roles assigned to the user. items: @@ -91980,7 +92120,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 +92159,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 +92187,7 @@ paths: required: true content: application/json: - schema: &613 + schema: &614 type: object required: - schemas @@ -92140,9 +92280,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 +92329,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 +92357,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 +92380,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 +92393,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 +92423,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 +92481,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 +92527,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 +92558,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 +92659,7 @@ paths: - 1 Resources: type: array - items: &616 + items: &617 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -92766,22 +92906,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 +92947,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 +92972,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 +93077,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 +93111,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 +93233,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 +93341,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 +93480,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &620 + text_matches: &621 title: Search Result Text Matches type: array items: @@ -93504,7 +93644,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 +93764,7 @@ paths: type: number node_id: type: string - text_matches: *620 + text_matches: *621 required: - sha - node_id @@ -93817,7 +93957,7 @@ paths: - interactions - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -93933,7 +94073,7 @@ paths: - string - 'null' format: date-time - text_matches: *620 + text_matches: *621 pull_request: type: object properties: @@ -94155,7 +94295,7 @@ paths: enum: - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -94200,7 +94340,7 @@ paths: - 'null' score: type: number - text_matches: *620 + text_matches: *621 required: - id - node_id @@ -94286,7 +94426,7 @@ paths: - forks - help-wanted-issues - updated - - *621 + - *622 - *17 - *18 responses: @@ -94523,7 +94663,7 @@ paths: - admin - pull - push - text_matches: *620 + text_matches: *621 temp_clone_token: type: string allow_merge_commit: @@ -94832,7 +94972,7 @@ paths: - string - 'null' format: uri - text_matches: *620 + text_matches: *621 related: type: - array @@ -95027,7 +95167,7 @@ paths: - followers - repositories - joined - - *621 + - *622 - *17 - *18 responses: @@ -95137,7 +95277,7 @@ paths: type: - boolean - 'null' - text_matches: *620 + text_matches: *621 blog: type: - string @@ -95219,7 +95359,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 +95400,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 +95501,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 +95532,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 +95545,7 @@ paths: type: array items: *294 examples: - default: *623 + default: *624 headers: Link: *37 x-github: @@ -95434,7 +95574,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 +95637,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 +95671,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 +95697,7 @@ paths: application/json: schema: *294 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95582,7 +95722,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 +95752,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 +95766,7 @@ paths: type: array items: *297 examples: - default: *625 + default: *626 headers: Link: *37 x-github: @@ -95655,7 +95795,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 +95847,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 +95882,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 +95908,7 @@ paths: application/json: schema: *297 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95793,7 +95933,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 +95964,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 +96023,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 +96085,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 +96143,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 +96202,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 +96240,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 +96291,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 +96328,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 +96368,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 +96405,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 +96414,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 +96447,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 +96475,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 +96509,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 +96539,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 +96551,7 @@ paths: type: array items: *309 examples: - default: *629 + default: *630 headers: Link: *37 '404': *6 @@ -96438,7 +96578,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 +96587,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 +96612,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 +96681,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 +96709,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 +96751,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 +96759,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 +96910,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 +96962,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 +96993,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 +97028,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 +97120,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 +97132,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 +97165,7 @@ paths: application/json: schema: oneOf: - - &634 + - &635 title: Private User description: Private User type: object @@ -97275,7 +97415,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 +97575,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -97833,7 +97973,7 @@ paths: type: integer secrets: type: array - items: &635 + items: &636 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97953,7 +98093,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -98099,7 +98239,7 @@ paths: type: array items: *152 examples: - default: *636 + default: *637 '401': *23 '403': *27 '404': *6 @@ -98366,7 +98506,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 +98559,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 +98604,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -98505,7 +98645,7 @@ paths: type: array items: *416 examples: - default: *639 + default: *640 '304': *35 '500': *80 '401': *23 @@ -99471,7 +99611,7 @@ paths: type: array items: *244 examples: - default: &652 + default: &653 value: - id: 197 name: hello_docker @@ -99572,7 +99712,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Email description: Email type: object @@ -99642,9 +99782,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 +99861,7 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: default: value: @@ -99979,7 +100119,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: GPG Key description: A unique encryption key type: object @@ -100124,7 +100264,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -100209,9 +100349,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 +100408,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 +100420,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '304': *35 '403': *27 @@ -100305,7 +100445,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 +100636,7 @@ paths: type: array items: *55 examples: - default: *644 + default: *645 headers: Link: *37 '404': *6 @@ -100760,7 +100900,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -100858,9 +100998,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100899,9 +101039,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -100957,7 +101097,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101036,7 +101176,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101098,9 +101238,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *37 '304': *35 @@ -102104,7 +102244,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 +102317,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 '304': *35 @@ -102219,7 +102359,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *18 - *17 responses: @@ -102231,8 +102371,8 @@ paths: type: array items: *244 examples: - default: *652 - '400': *653 + default: *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102261,7 +102401,7 @@ paths: application/json: schema: *244 examples: - default: &666 + default: &667 value: id: 40201 name: octo-name @@ -102713,9 +102853,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: *654 + default: *655 headers: Link: *37 '304': *35 @@ -102828,7 +102968,7 @@ paths: type: array items: *55 examples: - default: &661 + default: &662 summary: Default response value: - id: 1296269 @@ -103186,7 +103326,7 @@ paths: type: array items: *486 examples: - default: *655 + default: *656 headers: Link: *37 '304': *35 @@ -103265,7 +103405,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Social account description: Social media account type: object @@ -103282,7 +103422,7 @@ paths: - provider - url examples: - default: &657 + default: &658 value: - provider: twitter url: https://twitter.com/github @@ -103345,9 +103485,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 '422': *15 '304': *35 '404': *6 @@ -103435,7 +103575,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 +103595,7 @@ paths: - title - created_at examples: - default: &667 + default: &668 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103522,9 +103662,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103555,7 +103695,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 +103707,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -103592,7 +103732,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 +103761,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 +103786,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 +104157,10 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: &663 + default-response: &664 summary: Default response value: login: octocat @@ -104055,7 +104195,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 +104255,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 +104302,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 +104470,7 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 x-github: @@ -104734,9 +104874,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *665 + default: *666 headers: Link: *37 x-github: @@ -104918,7 +105058,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 x-github: @@ -104957,7 +105097,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *174 - *18 - *17 @@ -104970,10 +105110,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 +105143,7 @@ paths: application/json: schema: *244 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105686,9 +105826,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 headers: Link: *37 x-github: @@ -105718,9 +105858,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *667 + default: *668 headers: Link: *37 x-github: @@ -105745,7 +105885,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 +105897,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 +106061,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 +106130,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 +106151,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 +106224,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 +107137,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 +107216,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 +107443,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 +107635,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 +107712,7 @@ webhooks: required: true content: application/json: - schema: &677 + schema: &678 title: Exemption request cancellation event type: object properties: @@ -107580,11 +107720,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 +107878,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 +107984,7 @@ webhooks: required: true content: application/json: - schema: &678 + schema: &679 title: Exemption request completed event type: object properties: @@ -107852,11 +107992,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 +108068,7 @@ webhooks: required: true content: application/json: - schema: &679 + schema: &680 title: Exemption request created event type: object properties: @@ -107936,11 +108076,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 +108152,7 @@ webhooks: required: true content: application/json: - schema: &680 + schema: &681 title: Exemption response dismissed event type: object properties: @@ -108020,12 +108160,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 +108239,7 @@ webhooks: required: true content: application/json: - schema: &681 + schema: &682 title: Exemption response submitted event type: object properties: @@ -108107,12 +108247,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 +108325,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 +108392,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 +108459,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 +108526,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 +108594,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 +108672,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 +108785,7 @@ webhooks: - examples: - neutral - deployment: *682 + deployment: *683 details_url: type: string examples: @@ -108743,9 +108883,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 +109278,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 +109677,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 +110085,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 +111080,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 +111768,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 +112450,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 +112760,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 +113101,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 +113379,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 +113716,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 +113990,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 +114000,7 @@ webhooks: type: - string - 'null' - repository: *673 + repository: *674 sender: *4 required: - action @@ -114092,12 +114232,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 +114499,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 +114583,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 +114604,7 @@ webhooks: enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114547,9 +114687,9 @@ webhooks: enum: - created definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114634,9 +114774,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 +114854,9 @@ webhooks: enum: - updated definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114793,10 +114933,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 +115021,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 +115117,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 +115205,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 +115293,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 +115379,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 +115465,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 +115552,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 +115638,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 +115718,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 +115758,8 @@ webhooks: - verified - created_at - read_only - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -115696,11 +115836,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 +116412,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 +117159,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 +117232,7 @@ webhooks: type: string enum: - approved - approver: &689 + approver: &690 type: object properties: avatar_url: @@ -117135,11 +117275,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 +117360,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &691 + workflow_job_run: &692 type: object properties: conclusion: @@ -117966,18 +118106,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 +118834,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 +120783,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 +121479,7 @@ webhooks: type: string enum: - answered - answer: &695 + answer: &696 type: object properties: author_association: @@ -121499,7 +121639,7 @@ webhooks: - created_at - updated_at - body - discussion: &693 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -121817,10 +121957,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 +122087,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 +122174,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 +122260,7 @@ webhooks: type: string enum: - created - comment: &694 + comment: &695 type: object properties: author_association: @@ -122280,11 +122420,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 +122507,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 +122607,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 +122696,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 +122782,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 +122886,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 +122972,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 +123008,8 @@ webhooks: - color - default - description - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122952,11 +123092,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 +123178,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 +123264,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 +123353,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 +123445,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 +123530,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 +123618,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 +123704,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 +123781,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 +124459,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 +124607,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 +124647,7 @@ webhooks: - action - sha - html_url - repository: *673 + repository: *674 sender: *4 required: - pages @@ -124583,10 +124723,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 +124752,8 @@ webhooks: - name - full_name - private - repository: *673 - requester: *697 + repository: *674 + requester: *698 sender: *4 required: - action @@ -124688,11 +124828,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 +124909,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 +124990,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 +125039,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 +125126,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 +125156,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 +125237,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 +125424,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 +125506,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 +125758,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 +126935,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -126876,7 +127016,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 +127183,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 +128358,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -128299,7 +128439,7 @@ webhooks: type: string enum: - edited - changes: &726 + changes: &727 description: The changes to the comment. type: object properties: @@ -128311,9 +128451,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 +129628,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -129571,10 +129711,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 +130644,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -130585,8 +130725,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 +131804,8 @@ webhooks: required: - state - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -131744,8 +131884,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 +132808,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -132748,8 +132888,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 +133816,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 +133959,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -133919,8 +134059,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 +134990,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 +135072,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 +136002,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 +136084,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 +137016,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -136956,8 +137096,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 +138022,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 +139510,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 +140440,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -140381,9 +140521,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 +141446,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -141386,8 +141526,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 +142457,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143804,11 +143944,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 +144029,7 @@ webhooks: type: string enum: - unassigned - assignee: &729 + assignee: &730 title: User type: - object @@ -143961,11 +144101,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 +144184,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 +144269,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 +145199,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145140,11 +145280,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 +145363,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 +145445,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 +145559,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 +145645,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 +145735,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 +145820,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145760,10 +145900,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 +145991,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145933,10 +146073,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 +146162,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -146103,8 +146243,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 +146330,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 +146412,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 +146519,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 +146625,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 +146708,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 +146790,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 +146872,7 @@ webhooks: required: - login - id - team: &707 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146925,11 +147065,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 +147148,7 @@ webhooks: required: - login - id - team: *707 + team: *708 required: - action - scope @@ -147090,8 +147230,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 +147257,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147204,10 +147344,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 +147420,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 +147528,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 +147613,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 +147696,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 +147840,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147780,11 +147920,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 +148034,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 +148118,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 +148201,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 +148284,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 +148367,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 +148463,8 @@ webhooks: - role - organization_url - user - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148402,11 +148542,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 +148625,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 +148748,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 +148829,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 +148920,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 +149000,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 +149525,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &711 + items: &712 title: Ruby Gems metadata type: object properties: @@ -149482,7 +149622,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -149558,9 +149698,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 +150062,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 source_url: type: string format: uri @@ -149993,7 +150133,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -150174,12 +150314,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 +150399,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 +150549,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 +150631,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 +150713,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 +150794,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 +150902,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 +150934,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 +151180,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 +151306,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -151247,11 +151387,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 +151471,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 +151603,7 @@ webhooks: repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -151557,11 +151697,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 +151795,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 +151994,7 @@ webhooks: type: string required: - after_id - repository: *673 + repository: *674 sender: *4 required: - action @@ -151934,10 +152074,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 +152204,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152144,10 +152284,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 +152327,7 @@ webhooks: - name - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152266,14 +152406,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 +152502,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 +152586,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 +152670,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 +152754,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 +152862,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 +152945,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 +153030,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 +153180,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 +153263,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 +153386,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 +153471,7 @@ webhooks: type: string enum: - archived - changes: &721 + changes: &722 type: object properties: archived_at: @@ -153347,9 +153487,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 +153628,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 +153712,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 +153795,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 +153902,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 +153922,7 @@ webhooks: required: - id - name - - &720 + - &721 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153811,8 +153951,8 @@ webhooks: oneOf: - type: string - type: integer - - *719 - *720 + - *721 type: - 'null' - string @@ -153835,9 +153975,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 +154074,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 +154159,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 +154244,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 +154327,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 +154464,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 +154612,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 +154685,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 +154765,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 +157120,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -157062,11 +157202,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 +159548,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -159490,11 +159630,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 +161976,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -161918,11 +162058,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 +162126,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *673 + repository: *674 sender: *4 required: - action @@ -162067,12 +162207,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 +162292,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 +164623,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -164562,11 +164702,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 +167052,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *673 + repository: *674 sender: *4 required: - action @@ -167036,12 +167176,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 +167261,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 +169596,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -169536,11 +169676,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 +172028,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -171969,10 +172109,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 +174458,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -174398,12 +174538,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 +174622,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 +174708,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 +174793,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 +175173,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 +177405,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -177345,7 +177485,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 +177778,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 +179998,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -179938,11 +180078,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 +182303,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -182244,9 +182384,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 +184619,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 review: description: The review that was affected. type: object @@ -184725,9 +184865,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 +186981,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 +187215,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 +189567,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -189513,12 +189653,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 +192012,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 +192207,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 +194561,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -194508,12 +194648,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 +196993,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 +197177,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 +199415,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: *728 + repository: *674 + review: *729 sender: *4 required: - action @@ -199356,9 +199496,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 +201629,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -201881,9 +202021,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 +204137,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -204391,10 +204531,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 +206869,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -206811,11 +206951,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 +209305,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -209244,11 +209384,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 +211727,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -211668,10 +211808,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 +214140,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -214203,7 +214343,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 +214438,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 +215027,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 +215506,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215422,7 +215562,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215500,9 +215640,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 +215954,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215864,7 +216004,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215941,10 +216081,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 +216400,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *673 + repository: *674 sender: *4 required: - action @@ -216337,11 +216477,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 +216589,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 +216671,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 +216994,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -216930,10 +217070,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 +217391,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -217327,11 +217467,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 +217547,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 +217627,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 +217707,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 +217787,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 +217867,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 +217948,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 +218036,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 +218154,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 +218229,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 +218313,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 +218393,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 +218490,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 +218573,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 +218655,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 +218737,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 +219048,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 +219129,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 +219210,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 +219334,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 +219547,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 +219628,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 +219834,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 +219915,7 @@ webhooks: type: string enum: - created - alert: &733 + alert: &734 type: object properties: number: *81 @@ -219879,10 +220019,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 +220103,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 +220345,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 +220427,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 +220509,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 +220591,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 +220671,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 +220861,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 +220938,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 +221128,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 +221209,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 +221519,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 +221612,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 +221694,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 +221778,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &738 + changes: &739 type: object properties: tier: @@ -221682,13 +221822,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 +221905,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 +221985,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 +222072,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 +222378,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -222364,15 +222508,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 +222632,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 +222724,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 +222816,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 +222908,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 +222987,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 +223185,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 +223657,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -223589,9 +223733,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 +224205,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224138,9 +224282,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 +224754,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224754,9 +224898,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 +225370,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - changes @@ -225304,9 +225448,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 +225920,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -225852,10 +225996,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 +226072,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 +226164,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 +226502,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 +226866,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 +227094,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 +227324,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 +228348,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 +229357,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..4b5e69f5e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -206149,7 +206149,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -220576,7 +220576,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..95e8cc8c5 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= @@ -48823,7 +48823,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -51785,6 +51785,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -53256,6 +53258,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -56469,7 +56475,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 +61401,7 @@ paths: type: array items: *416 examples: - default: &639 + default: &640 value: total_count: 2 machines: @@ -64726,7 +64732,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Status description: The status of a commit. type: object @@ -66192,6 +66198,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' examples: example-for-updating-a-file: value: @@ -66235,6 +66245,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -66283,6 +66294,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '422': *15 '409': @@ -66438,6 +66450,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *15 '404': *6 '409': *139 @@ -71131,6 +71144,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -71177,6 +71194,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -71271,6 +71289,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *6 '409': *139 x-github: @@ -72187,7 +72206,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 +73178,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 +73612,7 @@ paths: type: array items: *486 examples: - default: &655 + default: &656 value: - id: 1 repository: @@ -77398,6 +77417,10 @@ paths: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -87479,7 +87502,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &734 + items: &735 type: object properties: type: @@ -87921,6 +87944,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 +88122,9 @@ paths: application/json: schema: type: array - items: *582 + items: *583 examples: - default: *583 + default: *584 '400': *14 '404': *6 x-github: @@ -88178,9 +88318,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 +88667,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -88676,15 +88816,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 +88850,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 requestBody: required: true content: @@ -88881,10 +89021,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 +89064,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': *140 '400': *14 @@ -88953,7 +89093,7 @@ paths: parameters: - *311 - *312 - - *584 + - *585 responses: '202': description: Response @@ -89094,7 +89234,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -89467,7 +89607,7 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: default: value: @@ -89557,7 +89697,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -89651,7 +89791,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 +89891,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -89891,7 +90031,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Tag protection description: Tag protection type: object @@ -89972,7 +90112,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90120,7 +90260,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 +90272,7 @@ paths: required: - names examples: - default: &591 + default: &592 value: names: - octocat @@ -90187,9 +90327,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *6 '422': *7 x-github: @@ -90212,7 +90352,7 @@ paths: parameters: - *311 - *312 - - &592 + - &593 name: per description: The time frame to display results for. in: query @@ -90243,7 +90383,7 @@ paths: - 128 clones: type: array - items: &593 + items: &594 title: Traffic type: object properties: @@ -90491,7 +90631,7 @@ paths: parameters: - *311 - *312 - - *592 + - *593 responses: '200': description: Response @@ -90512,7 +90652,7 @@ paths: - 3782 views: type: array - items: *593 + items: *594 required: - uniques - count @@ -91184,7 +91324,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 +91334,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 +91346,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 +91390,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &595 + items: &596 allOf: - type: object required: @@ -91332,7 +91472,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 +91537,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 +91585,7 @@ paths: required: true content: application/json: - schema: &604 + schema: &605 type: object required: - schemas @@ -91505,9 +91645,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 +91666,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 +91689,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 +91698,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 +91732,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 +91764,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 +91798,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 +91864,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 +91890,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 +91934,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *606 - *607 + - *608 - *38 responses: '200': @@ -91829,7 +91969,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &610 + items: &611 allOf: - type: object required: @@ -91921,7 +92061,7 @@ paths: address. examples: - true - roles: &609 + roles: &610 type: array description: The roles assigned to the user. items: @@ -91980,7 +92120,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 +92159,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 +92187,7 @@ paths: required: true content: application/json: - schema: &613 + schema: &614 type: object required: - schemas @@ -92140,9 +92280,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 +92329,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 +92357,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 +92380,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 +92393,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 +92423,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 +92481,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 +92527,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 +92558,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 +92659,7 @@ paths: - 1 Resources: type: array - items: &616 + items: &617 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -92766,22 +92906,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 +92947,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 +92972,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 +93077,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 +93111,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 +93233,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 +93341,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 +93480,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &620 + text_matches: &621 title: Search Result Text Matches type: array items: @@ -93504,7 +93644,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 +93764,7 @@ paths: type: number node_id: type: string - text_matches: *620 + text_matches: *621 required: - sha - node_id @@ -93817,7 +93957,7 @@ paths: - interactions - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -93933,7 +94073,7 @@ paths: - string - 'null' format: date-time - text_matches: *620 + text_matches: *621 pull_request: type: object properties: @@ -94155,7 +94295,7 @@ paths: enum: - created - updated - - *621 + - *622 - *17 - *18 responses: @@ -94200,7 +94340,7 @@ paths: - 'null' score: type: number - text_matches: *620 + text_matches: *621 required: - id - node_id @@ -94286,7 +94426,7 @@ paths: - forks - help-wanted-issues - updated - - *621 + - *622 - *17 - *18 responses: @@ -94523,7 +94663,7 @@ paths: - admin - pull - push - text_matches: *620 + text_matches: *621 temp_clone_token: type: string allow_merge_commit: @@ -94832,7 +94972,7 @@ paths: - string - 'null' format: uri - text_matches: *620 + text_matches: *621 related: type: - array @@ -95027,7 +95167,7 @@ paths: - followers - repositories - joined - - *621 + - *622 - *17 - *18 responses: @@ -95137,7 +95277,7 @@ paths: type: - boolean - 'null' - text_matches: *620 + text_matches: *621 blog: type: - string @@ -95219,7 +95359,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 +95400,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 +95501,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 +95532,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 +95545,7 @@ paths: type: array items: *294 examples: - default: *623 + default: *624 headers: Link: *37 x-github: @@ -95434,7 +95574,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 +95637,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 +95671,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 +95697,7 @@ paths: application/json: schema: *294 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95582,7 +95722,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 +95752,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 +95766,7 @@ paths: type: array items: *297 examples: - default: *625 + default: *626 headers: Link: *37 x-github: @@ -95655,7 +95795,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 +95847,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 +95882,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 +95908,7 @@ paths: application/json: schema: *297 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95793,7 +95933,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 +95964,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 +96023,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 +96085,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 +96143,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 +96202,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 +96240,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 +96291,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 +96328,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 +96368,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 +96405,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 +96414,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 +96447,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 +96475,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 +96509,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 +96539,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 +96551,7 @@ paths: type: array items: *309 examples: - default: *629 + default: *630 headers: Link: *37 '404': *6 @@ -96438,7 +96578,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 +96587,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 +96612,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 +96681,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 +96709,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 +96751,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 +96759,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 +96910,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 +96962,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 +96993,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 +97028,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 +97120,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 +97132,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 +97165,7 @@ paths: application/json: schema: oneOf: - - &634 + - &635 title: Private User description: Private User type: object @@ -97275,7 +97415,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 +97575,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -97833,7 +97973,7 @@ paths: type: integer secrets: type: array - items: &635 + items: &636 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97953,7 +98093,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -98099,7 +98239,7 @@ paths: type: array items: *152 examples: - default: *636 + default: *637 '401': *23 '403': *27 '404': *6 @@ -98366,7 +98506,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 +98559,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 +98604,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -98505,7 +98645,7 @@ paths: type: array items: *416 examples: - default: *639 + default: *640 '304': *35 '500': *80 '401': *23 @@ -99471,7 +99611,7 @@ paths: type: array items: *244 examples: - default: &652 + default: &653 value: - id: 197 name: hello_docker @@ -99572,7 +99712,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Email description: Email type: object @@ -99642,9 +99782,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 +99861,7 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: default: value: @@ -99979,7 +100119,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: GPG Key description: A unique encryption key type: object @@ -100124,7 +100264,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -100209,9 +100349,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 +100408,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 +100420,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '304': *35 '403': *27 @@ -100305,7 +100445,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 +100636,7 @@ paths: type: array items: *55 examples: - default: *644 + default: *645 headers: Link: *37 '404': *6 @@ -100760,7 +100900,7 @@ paths: application/json: schema: type: array - items: &645 + items: &646 title: Key description: Key type: object @@ -100858,9 +100998,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100899,9 +101039,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 '404': *6 '304': *35 '403': *27 @@ -100957,7 +101097,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101036,7 +101176,7 @@ paths: - account - plan examples: - default: &648 + default: &649 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101098,9 +101238,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 headers: Link: *37 '304': *35 @@ -102104,7 +102244,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 +102317,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 '304': *35 @@ -102219,7 +102359,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *18 - *17 responses: @@ -102231,8 +102371,8 @@ paths: type: array items: *244 examples: - default: *652 - '400': *653 + default: *653 + '400': *654 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102261,7 +102401,7 @@ paths: application/json: schema: *244 examples: - default: &666 + default: &667 value: id: 40201 name: octo-name @@ -102713,9 +102853,9 @@ paths: application/json: schema: type: array - items: *640 + items: *641 examples: - default: *654 + default: *655 headers: Link: *37 '304': *35 @@ -102828,7 +102968,7 @@ paths: type: array items: *55 examples: - default: &661 + default: &662 summary: Default response value: - id: 1296269 @@ -103186,7 +103326,7 @@ paths: type: array items: *486 examples: - default: *655 + default: *656 headers: Link: *37 '304': *35 @@ -103265,7 +103405,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Social account description: Social media account type: object @@ -103282,7 +103422,7 @@ paths: - provider - url examples: - default: &657 + default: &658 value: - provider: twitter url: https://twitter.com/github @@ -103345,9 +103485,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 '422': *15 '304': *35 '404': *6 @@ -103435,7 +103575,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 +103595,7 @@ paths: - title - created_at examples: - default: &667 + default: &668 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103522,9 +103662,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103555,7 +103695,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 +103707,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -103592,7 +103732,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 +103761,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 +103786,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 +104157,10 @@ paths: application/json: schema: oneOf: + - *635 - *634 - - *633 examples: - default-response: &663 + default-response: &664 summary: Default response value: login: octocat @@ -104055,7 +104195,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 +104255,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 +104302,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 +104470,7 @@ paths: type: array items: *244 examples: - default: *652 + default: *653 '403': *27 '401': *23 x-github: @@ -104734,9 +104874,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *665 + default: *666 headers: Link: *37 x-github: @@ -104918,7 +105058,7 @@ paths: type: array items: *50 examples: - default: *650 + default: *651 headers: Link: *37 x-github: @@ -104957,7 +105097,7 @@ paths: - docker - nuget - container - - *651 + - *652 - *174 - *18 - *17 @@ -104970,10 +105110,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 +105143,7 @@ paths: application/json: schema: *244 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105686,9 +105826,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *657 + default: *658 headers: Link: *37 x-github: @@ -105718,9 +105858,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *667 + default: *668 headers: Link: *37 x-github: @@ -105745,7 +105885,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 +105897,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 +106061,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 +106130,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 +106151,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 +106224,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 +107137,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 +107216,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 +107443,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 +107635,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 +107712,7 @@ webhooks: required: true content: application/json: - schema: &677 + schema: &678 title: Exemption request cancellation event type: object properties: @@ -107580,11 +107720,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 +107878,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 +107984,7 @@ webhooks: required: true content: application/json: - schema: &678 + schema: &679 title: Exemption request completed event type: object properties: @@ -107852,11 +107992,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 +108068,7 @@ webhooks: required: true content: application/json: - schema: &679 + schema: &680 title: Exemption request created event type: object properties: @@ -107936,11 +108076,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 +108152,7 @@ webhooks: required: true content: application/json: - schema: &680 + schema: &681 title: Exemption response dismissed event type: object properties: @@ -108020,12 +108160,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 +108239,7 @@ webhooks: required: true content: application/json: - schema: &681 + schema: &682 title: Exemption response submitted event type: object properties: @@ -108107,12 +108247,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 +108325,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 +108392,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 +108459,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 +108526,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 +108594,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 +108672,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 +108785,7 @@ webhooks: - examples: - neutral - deployment: *682 + deployment: *683 details_url: type: string examples: @@ -108743,9 +108883,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 +109278,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 +109677,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 +110085,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 +111080,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 +111768,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 +112450,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 +112760,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 +113101,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 +113379,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 +113716,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 +113990,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 +114000,7 @@ webhooks: type: - string - 'null' - repository: *673 + repository: *674 sender: *4 required: - action @@ -114092,12 +114232,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 +114499,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 +114583,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 +114604,7 @@ webhooks: enum: - tag - branch - repository: *673 + repository: *674 sender: *4 required: - ref @@ -114547,9 +114687,9 @@ webhooks: enum: - created definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114634,9 +114774,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 +114854,9 @@ webhooks: enum: - updated definition: *258 - enterprise: *670 - installation: *671 - organization: *672 + enterprise: *671 + installation: *672 + organization: *673 sender: *4 required: - action @@ -114793,10 +114933,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 +115021,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 +115117,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 +115205,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 +115293,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 +115379,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 +115465,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 +115552,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 +115638,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 +115718,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 +115758,8 @@ webhooks: - verified - created_at - read_only - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -115696,11 +115836,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 +116412,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 +117159,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 +117232,7 @@ webhooks: type: string enum: - approved - approver: &689 + approver: &690 type: object properties: avatar_url: @@ -117135,11 +117275,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 +117360,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &691 + workflow_job_run: &692 type: object properties: conclusion: @@ -117966,18 +118106,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 +118834,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 +120783,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 +121479,7 @@ webhooks: type: string enum: - answered - answer: &695 + answer: &696 type: object properties: author_association: @@ -121499,7 +121639,7 @@ webhooks: - created_at - updated_at - body - discussion: &693 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -121817,10 +121957,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 +122087,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 +122174,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 +122260,7 @@ webhooks: type: string enum: - created - comment: &694 + comment: &695 type: object properties: author_association: @@ -122280,11 +122420,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 +122507,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 +122607,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 +122696,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 +122782,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 +122886,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 +122972,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 +123008,8 @@ webhooks: - color - default - description - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -122952,11 +123092,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 +123178,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 +123264,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 +123353,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 +123445,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 +123530,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 +123618,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 +123704,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 +123781,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 +124459,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 +124607,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 +124647,7 @@ webhooks: - action - sha - html_url - repository: *673 + repository: *674 sender: *4 required: - pages @@ -124583,10 +124723,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 +124752,8 @@ webhooks: - name - full_name - private - repository: *673 - requester: *697 + repository: *674 + requester: *698 sender: *4 required: - action @@ -124688,11 +124828,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 +124909,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 +124990,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 +125039,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 +125126,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 +125156,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 +125237,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 +125424,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 +125506,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 +125758,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 +126935,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -126876,7 +127016,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 +127183,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 +128358,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -128299,7 +128439,7 @@ webhooks: type: string enum: - edited - changes: &726 + changes: &727 description: The changes to the comment. type: object properties: @@ -128311,9 +128451,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 +129628,8 @@ webhooks: - state - locked - assignee - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -129571,10 +129711,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 +130644,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -130585,8 +130725,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 +131804,8 @@ webhooks: required: - state - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -131744,8 +131884,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 +132808,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -132748,8 +132888,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 +133816,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 +133959,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -133919,8 +134059,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 +134990,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 +135072,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 +136002,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 +136084,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 +137016,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -136956,8 +137096,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 +138022,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 +139510,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 +140440,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -140381,9 +140521,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 +141446,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -141386,8 +141526,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 +142457,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -143804,11 +143944,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 +144029,7 @@ webhooks: type: string enum: - unassigned - assignee: &729 + assignee: &730 title: User type: - object @@ -143961,11 +144101,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 +144184,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 +144269,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 +145199,8 @@ webhooks: format: uri user_view_type: type: string - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -145140,11 +145280,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 +145363,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 +145445,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 +145559,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 +145645,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 +145735,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 +145820,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145760,10 +145900,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 +145991,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -145933,10 +146073,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 +146162,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *673 + repository: *674 sender: *4 required: - action @@ -146103,8 +146243,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 +146330,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 +146412,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 +146519,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 +146625,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 +146708,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 +146790,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 +146872,7 @@ webhooks: required: - login - id - team: &707 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146925,11 +147065,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 +147148,7 @@ webhooks: required: - login - id - team: *707 + team: *708 required: - action - scope @@ -147090,8 +147230,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 +147257,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147204,10 +147344,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 +147420,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 +147528,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 +147613,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 +147696,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 +147840,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -147780,11 +147920,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 +148034,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 +148118,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 +148201,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 +148284,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 +148367,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 +148463,8 @@ webhooks: - role - organization_url - user - organization: *672 - repository: *673 + organization: *673 + repository: *674 sender: *4 required: - action @@ -148402,11 +148542,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 +148625,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 +148748,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 +148829,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 +148920,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 +149000,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 +149525,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &711 + items: &712 title: Ruby Gems metadata type: object properties: @@ -149482,7 +149622,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -149558,9 +149698,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 +150062,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 source_url: type: string format: uri @@ -149993,7 +150133,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -150174,12 +150314,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 +150399,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 +150549,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 +150631,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 +150713,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 +150794,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 +150902,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 +150934,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 +151180,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 +151306,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -151247,11 +151387,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 +151471,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 +151603,7 @@ webhooks: repository: anyOf: - type: 'null' - - *673 + - *674 sender: *4 required: - action @@ -151557,11 +151697,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 +151795,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 +151994,7 @@ webhooks: type: string required: - after_id - repository: *673 + repository: *674 sender: *4 required: - action @@ -151934,10 +152074,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 +152204,7 @@ webhooks: - creator - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152144,10 +152284,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 +152327,7 @@ webhooks: - name - created_at - updated_at - repository: *673 + repository: *674 sender: *4 required: - action @@ -152266,14 +152406,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 +152502,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 +152586,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 +152670,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 +152754,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 +152862,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 +152945,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 +153030,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 +153180,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 +153263,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 +153386,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 +153471,7 @@ webhooks: type: string enum: - archived - changes: &721 + changes: &722 type: object properties: archived_at: @@ -153347,9 +153487,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 +153628,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 +153712,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 +153795,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 +153902,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 +153922,7 @@ webhooks: required: - id - name - - &720 + - &721 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153811,8 +153951,8 @@ webhooks: oneOf: - type: string - type: integer - - *719 - *720 + - *721 type: - 'null' - string @@ -153835,9 +153975,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 +154074,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 +154159,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 +154244,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 +154327,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 +154464,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 +154612,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 +154685,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 +154765,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 +157120,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -157062,11 +157202,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 +159548,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -159490,11 +159630,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 +161976,7 @@ webhooks: - draft reason: type: string - repository: *673 + repository: *674 sender: *4 required: - action @@ -161918,11 +162058,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 +162126,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *673 + repository: *674 sender: *4 required: - action @@ -162067,12 +162207,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 +162292,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 +164623,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -164562,11 +164702,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 +167052,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *673 + repository: *674 sender: *4 required: - action @@ -167036,12 +167176,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 +167261,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 +169596,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -169536,11 +169676,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 +172028,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -171969,10 +172109,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 +174458,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -174398,12 +174538,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 +174622,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 +174708,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 +174793,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 +175173,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 +177405,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -177345,7 +177485,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 +177778,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 +179998,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -179938,11 +180078,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 +182303,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *673 + repository: *674 sender: *4 required: - action @@ -182244,9 +182384,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 +184619,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 review: description: The review that was affected. type: object @@ -184725,9 +184865,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 +186981,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 +187215,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 +189567,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -189513,12 +189653,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 +192012,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 +192207,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 +194561,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 requested_reviewer: title: User type: @@ -194508,12 +194648,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 +196993,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 +197177,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 +199415,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 - review: *728 + repository: *674 + review: *729 sender: *4 required: - action @@ -199356,9 +199496,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 +201629,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -201881,9 +202021,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 +204137,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *673 + repository: *674 sender: *4 thread: type: object @@ -204391,10 +204531,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 +206869,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -206811,11 +206951,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 +209305,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -209244,11 +209384,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 +211727,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -211668,10 +211808,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 +214140,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *673 + repository: *674 sender: *4 required: - action @@ -214203,7 +214343,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 +214438,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 +215027,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 +215506,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215422,7 +215562,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215500,9 +215640,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 +215954,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *711 + items: *712 summary: type: string tag_name: @@ -215864,7 +216004,7 @@ webhooks: - owner - package_version - registry - repository: *673 + repository: *674 sender: *4 required: - action @@ -215941,10 +216081,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 +216400,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *673 + repository: *674 sender: *4 required: - action @@ -216337,11 +216477,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 +216589,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 +216671,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 +216994,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -216930,10 +217070,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 +217391,7 @@ webhooks: - string - 'null' format: uri - repository: *673 + repository: *674 sender: *4 required: - action @@ -217327,11 +217467,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 +217547,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 +217627,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 +217707,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 +217787,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 +217867,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 +217948,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 +218036,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 +218154,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 +218229,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 +218313,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 +218393,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 +218490,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 +218573,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 +218655,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 +218737,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 +219048,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 +219129,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 +219210,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 +219334,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 +219547,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 +219628,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 +219834,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 +219915,7 @@ webhooks: type: string enum: - created - alert: &733 + alert: &734 type: object properties: number: *81 @@ -219879,10 +220019,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 +220103,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 +220345,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 +220427,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 +220509,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 +220591,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 +220671,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 +220861,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 +220938,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 +221128,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 +221209,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 +221519,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 +221612,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 +221694,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 +221778,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &738 + changes: &739 type: object properties: tier: @@ -221682,13 +221822,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 +221905,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 +221985,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 +222072,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 +222378,10 @@ webhooks: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -222364,15 +222508,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 +222632,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 +222724,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 +222816,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 +222908,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 +222987,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 +223185,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 +223657,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -223589,9 +223733,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 +224205,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224138,9 +224282,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 +224754,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -224754,9 +224898,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 +225370,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - changes @@ -225304,9 +225448,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 +225920,7 @@ webhooks: - topics - visibility sender: *4 - team: *739 + team: *740 required: - action - team @@ -225852,10 +225996,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 +226072,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 +226164,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 +226502,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 +226866,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 +227094,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 +227324,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 +228348,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 +229357,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..b8e956b4c 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -31472,7 +31472,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -33537,7 +33537,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..f55eef719 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -22858,7 +22858,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -24291,6 +24291,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -43017,6 +43019,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 +88167,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -91312,6 +91354,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 +92577,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -94214,6 +94264,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -96616,6 +96670,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 +200478,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -223399,6 +223508,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -223441,6 +223551,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -223470,6 +223581,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -224509,6 +224621,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -224537,6 +224650,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -228831,6 +228945,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..b8e956b4c 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -31472,7 +31472,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -33537,7 +33537,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..f55eef719 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -22858,7 +22858,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -24291,6 +24291,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -43017,6 +43019,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 +88167,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -91312,6 +91354,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 +92577,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -94214,6 +94264,10 @@ components: type: - string - 'null' + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -96616,6 +96670,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 +200478,10 @@ components: - 'null' verified: type: boolean + verified_at: + type: + - string + - 'null' required: - verified - reason @@ -223399,6 +223508,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -223441,6 +223551,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -223470,6 +223581,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -224509,6 +224621,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -224537,6 +224650,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -228831,6 +228945,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..0ed6412da 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 @@ -170199,7 +170199,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -183954,7 +183954,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -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..552a100f6 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 @@ -38436,7 +38436,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions {"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}