diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 76006f093..5bc2712fb 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -16861,6 +16861,310 @@ } } }, + "/enterprises/{enterprise}/access-restrictions/disable": { + "post": { + "summary": "Disable access restrictions for an enterprise", + "description": "Disable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/disable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully disabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, + "/enterprises/{enterprise}/access-restrictions/enable": { + "post": { + "summary": "Enable access restrictions for an enterprise", + "description": "Enable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/enable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully enabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, "/enterprises/{enterprise}/actions/cache/usage": { "get": { "summary": "Get GitHub Actions cache usage for an enterprise", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 888507d9e..0b74c14dd 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -444,7 +444,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &98 + - &99 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -453,7 +453,7 @@ paths: required: false schema: type: string - - &99 + - &100 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -462,7 +462,7 @@ paths: required: false schema: type: string - - &100 + - &101 name: direction description: The direction to sort the results by. in: query @@ -683,7 +683,7 @@ paths: required: - vector_string - score - cvss_severities: &114 + cvss_severities: &115 type: object nullable: true properties: @@ -723,7 +723,7 @@ paths: required: - vector_string - score - epss: &115 + epss: &116 type: object nullable: true readOnly: true @@ -861,7 +861,7 @@ paths: - subscriptions_url - type - url - type: &401 + type: &402 type: string description: The type of credit the user is receiving. enum: @@ -994,7 +994,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &219 + schema: &220 title: Validation Error Simple description: Validation Error Simple type: object @@ -1027,7 +1027,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: - - &726 + - &727 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1145,7 +1145,7 @@ paths: GitHub. type: object nullable: true - properties: &176 + properties: &177 id: description: Unique identifier of the GitHub app example: 37 @@ -1278,7 +1278,7 @@ paths: about itself. example: 5 type: integer - required: &177 + required: &178 - id - node_id - owner @@ -1583,7 +1583,7 @@ paths: schema: type: integer default: 30 - - &308 + - &309 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1599,7 +1599,7 @@ paths: application/json: schema: type: array - items: &309 + items: &310 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1679,7 +1679,7 @@ paths: - installation_id - repository_id examples: - default: &310 + default: &311 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1711,7 +1711,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &736 + schema: &737 title: Scim Error description: Scim Error type: object @@ -1738,7 +1738,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &218 + schema: &219 title: Validation Error description: Validation Error type: object @@ -1807,7 +1807,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &312 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1921,7 +1921,7 @@ paths: - request - response examples: - default: &312 + default: &313 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2122,7 +2122,7 @@ paths: parameters: - *17 - *19 - - &181 + - &182 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2675,7 +2675,7 @@ paths: suspended_at: suspended_by: headers: - Link: &40 + Link: &43 example: ; rel="next", ; rel="last" schema: @@ -2716,7 +2716,7 @@ paths: application/json: schema: *22 examples: - default: &77 + default: &79 value: id: 1 account: @@ -2866,11 +2866,11 @@ paths: - selected repositories: type: array - items: &67 + items: &69 title: Repository description: A repository on GitHub. type: object - properties: &379 + properties: &380 id: description: Unique identifier of the repository example: 42 @@ -2890,7 +2890,7 @@ paths: title: License Simple description: License Simple type: object - properties: &192 + properties: &193 key: type: string example: mit @@ -2912,7 +2912,7 @@ paths: html_url: type: string format: uri - required: &193 + required: &194 - key - name - url @@ -3308,7 +3308,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &380 + required: &381 - archive_url - assignees_url - blobs_url @@ -5095,7 +5095,7 @@ paths: responses: '202': *39 '422': *7 - '500': &91 + '500': &40 description: Internal Error content: application/json: @@ -7353,6 +7353,97 @@ paths: enabledForGitHubApps: false category: enterprise-admin subcategory: admin-stats + "/enterprises/{enterprise}/access-restrictions/disable": + post: + summary: Disable access restrictions for an enterprise + description: Disable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/disable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise + parameters: + - &41 + name: enterprise + description: The slug version of the enterprise name. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: &42 + type: object + title: Enterprise Access Restrictions + description: Information about the enterprise access restrictions + proxy header. + properties: + message: + type: string + description: The message returned for the request. + header_name: + type: string + description: The name of the proxy header. + example: sec-GitHub-allowed-enterprise + header_value: + type: string + description: The value of the proxy header. + required: + - message + - header_name + - header_value + examples: + default: + value: + message: Enterprise access restrictions successfully disabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': *29 + '404': *6 + '500': *40 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises + "/enterprises/{enterprise}/access-restrictions/enable": + post: + summary: Enable access restrictions for an enterprise + description: Enable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/enable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise + parameters: + - *41 + responses: + '200': + description: Response + content: + application/json: + schema: *42 + examples: + default: + value: + message: Enterprise access restrictions successfully enabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': *29 + '404': *6 + '500': *40 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises "/enterprises/{enterprise}/actions/cache/usage": get: summary: Get GitHub Actions cache usage for an enterprise @@ -7368,19 +7459,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-enterprise parameters: - - &41 - name: enterprise - description: The slug version of the enterprise name. - in: path - required: true - schema: - type: string + - *41 responses: '200': description: Response content: application/json: - schema: &220 + schema: &221 type: object properties: total_active_caches_count: @@ -7395,12 +7480,12 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &221 + default: &222 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -7438,7 +7523,7 @@ paths: type: integer runners: type: array - items: &42 + items: &44 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -7487,7 +7572,7 @@ paths: - display_name - source nullable: true - machine_size_details: &45 + machine_size_details: &47 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -7579,7 +7664,7 @@ paths: - public_ip_enabled - platform examples: - default: &222 + default: &223 value: total_count: 2 runners: @@ -7621,7 +7706,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -7707,9 +7792,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: &46 + default: &48 value: id: 5 name: My hosted ubuntu runner @@ -7764,7 +7849,7 @@ paths: type: integer images: type: array - items: &43 + items: &45 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -7800,7 +7885,7 @@ paths: - display_name - source examples: - default: &44 + default: &46 value: id: ubuntu-20.04 platform: linux-x64 @@ -7840,9 +7925,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -7865,7 +7950,7 @@ paths: description: Response content: application/json: - schema: &223 + schema: &224 type: object properties: public_ips: @@ -7890,7 +7975,7 @@ paths: required: - public_ips examples: - default: &224 + default: &225 value: public_ips: current_usage: 17 @@ -7928,9 +8013,9 @@ paths: type: integer machine_specs: type: array - items: *45 + items: *47 examples: - default: &225 + default: &226 value: id: 4-core cpu_cores: 4 @@ -7998,7 +8083,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - &47 + - &49 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -8010,11 +8095,11 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -8033,7 +8118,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - *47 + - *49 requestBody: required: true content: @@ -8071,9 +8156,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -8090,15 +8175,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - *47 + - *49 responses: '202': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -8166,7 +8251,7 @@ paths: schema: type: object properties: - enabled_organizations: &48 + enabled_organizations: &50 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -8179,7 +8264,7 @@ paths: description: The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`. - allowed_actions: &49 + allowed_actions: &51 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -8187,12 +8272,12 @@ paths: - all - local_only - selected - selected_actions_url: &228 + selected_actions_url: &229 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &50 + sha_pinning_required: &52 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -8234,9 +8319,9 @@ paths: schema: type: object properties: - enabled_organizations: *48 - allowed_actions: *49 - sha_pinning_required: *50 + enabled_organizations: *50 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled_organizations examples: @@ -8267,7 +8352,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &230 + schema: &231 type: object properties: days: @@ -8285,7 +8370,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &737 + '401': &738 description: Authorization failure '404': *6 x-github: @@ -8313,7 +8398,7 @@ paths: required: true content: application/json: - schema: &231 + schema: &232 type: object properties: days: @@ -8348,7 +8433,7 @@ paths: description: Response content: application/json: - schema: &51 + schema: &53 type: object properties: approval_policy: @@ -8362,7 +8447,7 @@ paths: required: - approval_policy examples: - default: &232 + default: &233 value: approval_policy: first_time_contributors '404': *6 @@ -8391,7 +8476,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -8420,7 +8505,7 @@ paths: description: Response content: application/json: - schema: &233 + schema: &234 type: object required: - run_workflows_from_fork_pull_requests @@ -8446,7 +8531,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &52 + default: &54 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -8474,7 +8559,7 @@ paths: required: true content: application/json: - schema: &234 + schema: &235 type: object required: - run_workflows_from_fork_pull_requests @@ -8497,7 +8582,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -8537,11 +8622,11 @@ paths: type: number organizations: type: array - items: &62 + items: &64 title: Organization Simple description: A GitHub organization. type: object - properties: &110 + properties: &111 login: type: string example: github @@ -8582,7 +8667,7 @@ paths: type: string example: A great organization nullable: true - required: &111 + required: &112 - login - url - id @@ -8599,7 +8684,7 @@ paths: - total_count - organizations examples: - default: &63 + default: &65 value: total_count: 1 organizations: @@ -8678,7 +8763,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - &53 + - &55 name: org_id description: The unique identifier of the organization. in: path @@ -8707,7 +8792,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - *53 + - *55 responses: '204': description: Response @@ -8736,7 +8821,7 @@ paths: description: Response content: application/json: - schema: &54 + schema: &56 type: object properties: github_owned_allowed: @@ -8757,7 +8842,7 @@ paths: items: type: string examples: - default: &55 + default: &57 value: github_owned_allowed: true verified_allowed: false @@ -8790,9 +8875,9 @@ paths: required: true content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -8897,17 +8982,17 @@ paths: description: Success response content: application/json: - schema: &237 + schema: &238 type: object properties: - default_workflow_permissions: &56 + default_workflow_permissions: &58 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &57 + can_approve_pull_request_reviews: &59 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -8915,7 +9000,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &58 + default: &60 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -8945,13 +9030,13 @@ paths: required: true content: application/json: - schema: &238 + schema: &239 type: object properties: - default_workflow_permissions: *56 - can_approve_pull_request_reviews: *57 + default_workflow_permissions: *58 + can_approve_pull_request_reviews: *59 examples: - default: *58 + default: *60 responses: '204': description: Success response @@ -8996,7 +9081,7 @@ paths: type: number runner_groups: type: array - items: &59 + items: &61 type: object properties: id: @@ -9175,9 +9260,9 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: - default: &60 + default: &62 value: id: 2 name: octo-runner-group @@ -9212,7 +9297,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - &61 + - &63 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -9224,9 +9309,9 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: - default: *60 + default: *62 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9246,7 +9331,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: false content: @@ -9298,7 +9383,7 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: default: value: @@ -9334,7 +9419,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-enterprise parameters: - *41 - - *61 + - *63 responses: '204': description: Response @@ -9358,7 +9443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 + - *63 - *17 - *19 responses: @@ -9373,12 +9458,12 @@ paths: type: number organizations: type: array - items: *62 + items: *64 required: - total_count - organizations examples: - default: *63 + default: *65 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9398,7 +9483,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-organization-access-for-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: true content: @@ -9444,8 +9529,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 - - *53 + - *63 + - *55 responses: '204': description: Response @@ -9468,8 +9553,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 - - *53 + - *63 + - *55 responses: '204': description: Response @@ -9493,7 +9578,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *61 + - *63 - *17 - *19 responses: @@ -9508,7 +9593,7 @@ paths: type: number runners: type: array - items: &65 + items: &67 title: Self hosted runners description: A self hosted runner type: object @@ -9537,7 +9622,7 @@ paths: type: boolean labels: type: array - items: &69 + items: &71 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -9570,7 +9655,7 @@ paths: - total_count - runners examples: - default: &66 + default: &68 value: total_count: 2 runners: @@ -9610,7 +9695,7 @@ paths: name: no-gpu type: custom headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9630,7 +9715,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: true content: @@ -9675,8 +9760,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-enterprise parameters: - *41 - - *61 - - &64 + - *63 + - &66 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -9705,8 +9790,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-enterprise parameters: - *41 - - *61 - - *64 + - *63 + - *66 responses: '204': description: Response @@ -9749,11 +9834,11 @@ paths: type: number runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9781,7 +9866,7 @@ paths: application/json: schema: type: array - items: &242 + items: &243 title: Runner Application description: Runner Application type: object @@ -9806,7 +9891,7 @@ paths: - download_url - filename examples: - default: &243 + default: &244 value: - os: osx architecture: x64 @@ -9890,7 +9975,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &244 + '201': &245 description: Response content: application/json: @@ -9900,7 +9985,7 @@ paths: - runner - encoded_jit_config properties: - runner: *65 + runner: *67 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -9929,7 +10014,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &108 + '409': &109 description: Conflict content: application/json: @@ -9967,7 +10052,7 @@ paths: description: Response content: application/json: - schema: &68 + schema: &70 title: Authentication Token description: Authentication Token type: object @@ -9989,7 +10074,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *67 + items: *69 single_file: type: string example: config.yaml @@ -10005,7 +10090,7 @@ paths: - token - expires_at examples: - default: &245 + default: &246 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10043,9 +10128,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: &246 + default: &247 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10069,15 +10154,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: &247 + default: &248 value: id: 23 name: MBP @@ -10117,7 +10202,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *41 - - *64 + - *66 responses: '204': description: Response @@ -10142,9 +10227,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: - '200': &70 + '200': &72 description: Response content: application/json: @@ -10158,7 +10243,7 @@ paths: type: integer labels: type: array - items: *69 + items: *71 examples: default: value: @@ -10196,7 +10281,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 requestBody: required: true content: @@ -10220,7 +10305,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10243,7 +10328,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 requestBody: required: true content: @@ -10268,7 +10353,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10291,9 +10376,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: - '200': &248 + '200': &249 description: Response content: application/json: @@ -10307,7 +10392,7 @@ paths: type: integer labels: type: array - items: *69 + items: *71 examples: default: value: @@ -10348,8 +10433,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 - - &249 + - *66 + - &250 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10357,7 +10442,7 @@ paths: schema: type: string responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10382,20 +10467,20 @@ paths: description: Response content: application/json: - schema: &75 + schema: &77 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &71 + announcement: &73 type: string description: The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see "[Basic writing and formatting syntax](https://docs.github.com/enterprise-cloud@latest//github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)." example: Very **important** announcement about _something_. nullable: true - expires_at: &72 + expires_at: &74 type: string format: date-time description: 'The time at which the announcement expires. This @@ -10405,7 +10490,7 @@ paths: it to an empty string.' example: '"2021-01-01T00:00:00.000-07:00"' nullable: true - user_dismissible: &73 + user_dismissible: &75 type: boolean description: Whether an announcement can be dismissed by the user. example: false @@ -10416,7 +10501,7 @@ paths: - expires_at - user_dismissible examples: - default: &74 + default: &76 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -10440,18 +10525,18 @@ paths: required: true content: application/json: - schema: &256 + schema: &257 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *71 - expires_at: *72 - user_dismissible: *73 + announcement: *73 + expires_at: *74 + user_dismissible: *75 required: - announcement examples: - default: *74 + default: *76 parameters: - *41 responses: @@ -10459,9 +10544,9 @@ paths: description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -10557,7 +10642,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *41 - - &76 + - &78 name: org description: The organization name. The name is not case sensitive. in: path @@ -10574,7 +10659,7 @@ paths: application/json: schema: type: array - items: &78 + items: &80 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -10625,7 +10710,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#list-github-apps-installed-on-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 - *17 - *19 responses: @@ -10720,7 +10805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#install-a-github-app-on-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 responses: '200': description: A GitHub App installation that was installed previously. @@ -10728,14 +10813,14 @@ paths: application/json: schema: *22 examples: - default: *77 + default: *79 '201': description: A GitHub App installation. content: application/json: schema: *22 examples: - default: *77 + default: *79 requestBody: required: true content: @@ -10803,7 +10888,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#uninstall-a-github-app-from-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 - *23 responses: '204': @@ -10831,7 +10916,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-the-repositories-accessible-to-a-given-github-app-installation parameters: - *41 - - *76 + - *78 - *23 - *17 - *19 @@ -10843,7 +10928,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -10872,7 +10957,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#toggle-installation-repository-access-between-selected-and-all-repositories parameters: - *41 - - *76 + - *78 - *23 requestBody: required: true @@ -10912,7 +10997,7 @@ paths: application/json: schema: *22 examples: - default: *77 + default: *79 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -10933,7 +11018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *41 - - *76 + - *78 - *23 responses: '200': @@ -10943,7 +11028,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -10994,7 +11079,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *41 - - *76 + - *78 - *23 responses: '200': @@ -11004,7 +11089,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -11081,7 +11166,7 @@ paths: required: false schema: type: string - - &257 + - &258 name: include description: |- The event types to include: @@ -11099,7 +11184,7 @@ paths: - web - git - all - - &258 + - &259 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -11107,7 +11192,7 @@ paths: required: false schema: type: string - - &259 + - &260 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -11115,7 +11200,7 @@ paths: required: false schema: type: string - - &260 + - &261 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11137,7 +11222,7 @@ paths: application/json: schema: type: array - items: &261 + items: &262 type: object properties: "@timestamp": @@ -11259,7 +11344,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &262 + default: &263 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11438,7 +11523,7 @@ paths: vendor_specific: type: object oneOf: - - &82 + - &84 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -11457,7 +11542,7 @@ paths: - key_id - encrypted_sas_url - container - - &83 + - &85 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -11476,7 +11561,7 @@ paths: - name - encrypted_connstring - key_id - - &84 + - &86 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -11504,7 +11589,7 @@ paths: - bucket - key_id - region - - &85 + - &87 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -11538,7 +11623,7 @@ paths: - encrypted_secret_key - key_id - region - - &86 + - &88 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -11566,7 +11651,7 @@ paths: - key_id - port - ssl_verify - - &87 + - &89 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -11598,7 +11683,7 @@ paths: - key_id - port - ssl_verify - - &88 + - &90 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -11616,7 +11701,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &89 + - &91 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -11647,7 +11732,7 @@ paths: - stream_type - vendor_specific examples: - default: &90 + default: &92 value: enabled: false stream_type: Azure Event Hubs @@ -11661,7 +11746,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &79 + schema: &81 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -11692,7 +11777,7 @@ paths: - created_at - updated_at examples: - default: &80 + default: &82 value: id: 1 stream_type: Splunk @@ -11721,7 +11806,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#list-one-audit-log-streaming-configuration-via-a-stream-id parameters: - *41 - - &81 + - &83 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -11733,9 +11818,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *79 + schema: *81 examples: - default: *80 + default: *82 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11755,7 +11840,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *41 - - *81 + - *83 requestBody: required: true content: @@ -11781,28 +11866,28 @@ paths: vendor_specific: type: object oneOf: - - *82 - - *83 - *84 - *85 - *86 - *87 - *88 - *89 + - *90 + - *91 required: - enabled - stream_type - vendor_specific examples: - default: *90 + default: *92 responses: '200': description: Successful update content: application/json: - schema: *79 + schema: *81 examples: - default: *80 + default: *82 '422': description: Validation error content: @@ -11833,7 +11918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#delete-an-audit-log-streaming-configuration-for-an-enterprise parameters: - *41 - - *81 + - *83 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -11860,13 +11945,13 @@ paths: subcategory: bypass-requests parameters: - *41 - - &92 + - &93 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &93 + - &94 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -11874,7 +11959,7 @@ paths: required: false schema: type: string - - &94 + - &95 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -11882,7 +11967,7 @@ paths: required: false schema: type: string - - &95 + - &96 name: time_period description: |- The time period to filter by. @@ -11898,7 +11983,7 @@ paths: - week - month default: day - - &96 + - &97 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -11925,7 +12010,7 @@ paths: application/json: schema: type: array - items: &264 + items: &265 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12042,7 +12127,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &97 + items: &98 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12086,7 +12171,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &265 + default: &266 value: - id: 21 number: 42 @@ -12155,7 +12240,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/enterprises/{enterprise}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for an enterprise @@ -12177,11 +12262,11 @@ paths: subcategory: delegated-bypass parameters: - *41 - - *92 - *93 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -12191,7 +12276,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -12305,7 +12390,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *97 + items: *98 url: type: string format: uri @@ -12316,7 +12401,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &268 + default: &269 value: - id: 21 number: 42 @@ -12383,7 +12468,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -12401,17 +12486,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &273 + - &274 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &101 + schema: &102 type: string description: The name of the tool used to generate the code scanning analysis. - - &274 + - &275 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -12419,22 +12504,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &102 + schema: &103 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *98 - *99 + - *100 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &275 + schema: &276 type: string description: State of a code scanning alert. enum: @@ -12459,42 +12544,42 @@ paths: application/json: schema: type: array - items: &276 + items: &277 type: object properties: - number: &112 + number: &113 type: integer description: The security alert number. readOnly: true - created_at: &119 + created_at: &120 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &120 + updated_at: &121 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - url: &117 + url: &118 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &118 + html_url: &119 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &516 + instances_url: &517 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &103 + state: &104 type: string description: State of a code scanning alert. nullable: true @@ -12502,7 +12587,7 @@ paths: - open - dismissed - fixed - fixed_at: &122 + fixed_at: &123 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -12516,14 +12601,14 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: &121 + dismissed_at: &122 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissed_reason: &517 + dismissed_reason: &518 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12532,13 +12617,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &518 + dismissed_comment: &519 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &519 + rule: &520 type: object properties: id: @@ -12591,25 +12676,25 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &520 + tool: &521 type: object properties: - name: *101 + name: *102 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *102 - most_recent_instance: &521 + guid: *103 + most_recent_instance: &522 type: object properties: - ref: &514 + ref: &515 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &531 + analysis_key: &532 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12620,13 +12705,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &532 + category: &533 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *103 + state: *104 commit_sha: type: string message: @@ -12665,11 +12750,11 @@ paths: - generated - test - library - repository: &109 + repository: &110 title: Simple Repository description: A GitHub repository. type: object - properties: &208 + properties: &209 id: type: integer format: int64 @@ -12896,7 +12981,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &209 + required: &210 - archive_url - assignees_url - blobs_url @@ -12965,7 +13050,7 @@ paths: - most_recent_instance - repository examples: - default: &277 + default: &278 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13194,9 +13279,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *40 + Link: *43 '404': *6 - '503': &166 + '503': &167 description: Service unavailable content: application/json: @@ -13240,8 +13325,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 responses: '200': description: Response @@ -13249,7 +13334,7 @@ paths: application/json: schema: type: array - items: &104 + items: &105 type: object description: A code security configuration properties: @@ -13618,7 +13703,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &278 + code_scanning_options: &279 type: object description: Security Configuration feature options for code scanning nullable: true @@ -13635,7 +13720,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &107 + code_scanning_default_setup_options: &108 type: object description: Feature options for code scanning default setup nullable: true @@ -13752,9 +13837,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *104 + schema: *105 examples: - default: &105 + default: &106 value: id: 1325 target_type: enterprise @@ -13812,7 +13897,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &281 type: array description: A list of default code security configurations items: @@ -13826,9 +13911,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *104 + configuration: *105 examples: - default: &281 + default: &282 value: - default_for_new_repos: public configuration: @@ -13917,7 +14002,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *41 - - &106 + - &107 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -13929,9 +14014,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *105 + default: *106 '304': *37 '403': *29 '404': *6 @@ -13956,7 +14041,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14035,7 +14120,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14123,13 +14208,13 @@ paths: description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *105 + default: *106 '304': *37 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14153,14 +14238,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *41 - - *106 + - *107 responses: - '204': &132 + '204': &133 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14185,7 +14270,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14212,7 +14297,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14237,7 +14322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14277,12 +14362,12 @@ paths: - none - private_and_internal - public - configuration: *104 + configuration: *105 examples: default: value: default_for_new_repos: all - configuration: &279 + configuration: &280 value: id: 1325 target_type: organization @@ -14339,7 +14424,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *41 - - *106 + - *107 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -14348,8 +14433,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -14367,7 +14452,7 @@ paths: application/json: schema: type: array - items: &282 + items: &283 type: object description: Repositories associated with a code security configuration and attachment status @@ -14385,13 +14470,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *109 + repository: *110 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &283 + repository: &284 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -14799,7 +14884,7 @@ paths: visual_studio_subscription_email: '' total_user_accounts: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -14856,7 +14941,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &123 + items: &124 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -14873,14 +14958,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *110 - required: *111 + properties: *111 + required: *112 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &269 + - &270 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -14939,7 +15024,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &345 + properties: &346 id: description: Unique identifier of the team type: integer @@ -14995,7 +15080,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &346 + required: &347 - id - node_id - url @@ -15123,7 +15208,7 @@ paths: - created_at additionalProperties: false examples: - default: &124 + default: &125 value: total_seats: 2 seats: @@ -15193,8 +15278,8 @@ paths: type: User site_admin: false headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15266,7 +15351,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15355,7 +15440,7 @@ paths: response: value: message: Status for delete command - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15431,7 +15516,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15508,7 +15593,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15575,7 +15660,7 @@ paths: application/json: schema: type: array - items: &172 + items: &173 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -15882,7 +15967,7 @@ paths: - date additionalProperties: true examples: - default: &173 + default: &174 value: - date: '2024-06-24' total_active_users: 24 @@ -15981,10 +16066,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *91 + '500': *40 '403': *29 '404': *6 - '422': &174 + '422': &175 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -16014,7 +16099,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &290 + - &291 name: state in: query description: |- @@ -16023,7 +16108,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &291 + - &292 name: severity in: query description: |- @@ -16032,7 +16117,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &292 + - &293 name: ecosystem in: query description: |- @@ -16041,14 +16126,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &293 + - &294 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &294 + - &295 name: epss_percentage in: query description: |- @@ -16060,7 +16145,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &295 + - &296 name: has in: query description: |- @@ -16074,7 +16159,7 @@ paths: type: string enum: - patch - - &296 + - &297 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -16084,7 +16169,7 @@ paths: enum: - development - runtime - - &297 + - &298 name: sort in: query description: |- @@ -16099,10 +16184,10 @@ paths: - updated - epss_percentage default: created - - *100 - - *98 + - *101 - *99 - - &298 + - *100 + - &299 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -16115,7 +16200,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &299 + - &300 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -16135,11 +16220,11 @@ paths: application/json: schema: type: array - items: &300 + items: &301 type: object description: A Dependabot alert. properties: - number: *112 + number: *113 state: type: string description: The state of the Dependabot alert. @@ -16154,7 +16239,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &113 + package: &114 type: object description: Details for the vulnerable package. readOnly: true @@ -16198,7 +16283,7 @@ paths: - unknown - direct - transitive - security_advisory: &571 + security_advisory: &572 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -16228,13 +16313,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &116 + items: &117 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *113 + package: *114 severity: type: string description: The severity of the vulnerability. @@ -16300,8 +16385,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *114 - epss: *115 + cvss_severities: *115 + epss: *116 cwes: type: array description: Details for the advisory pertaining to Common @@ -16400,12 +16485,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *116 - url: *117 - html_url: *118 - created_at: *119 - updated_at: *120 - dismissed_at: *121 + security_vulnerability: *117 + url: *118 + html_url: *119 + created_at: *120 + updated_at: *121 + dismissed_at: *122 dismissed_by: title: Simple User description: A GitHub user. @@ -16429,15 +16514,15 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *122 - auto_dismissed_at: &572 + fixed_at: *123 + auto_dismissed_at: &573 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - repository: *109 + repository: *110 required: - number - state @@ -16456,7 +16541,7 @@ paths: - repository additionalProperties: false examples: - default: &301 + default: &302 value: - number: 2 state: dismissed @@ -16873,7 +16958,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - &263 + - &264 name: username description: The handle for the GitHub user account. in: path @@ -16895,10 +16980,10 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *123 + items: *124 examples: - default: *124 - '500': *91 + default: *125 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -16940,7 +17025,7 @@ paths: type: integer network_configurations: type: array - items: &125 + items: &126 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -16980,7 +17065,7 @@ paths: - name - created_on examples: - default: &412 + default: &413 value: total_count: 2 network_configurations: @@ -16999,7 +17084,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17058,9 +17143,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: &126 + default: &127 value: id: 123456789ABCDEF name: My network configuration @@ -17087,7 +17172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - &127 + - &128 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -17099,11 +17184,11 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17121,7 +17206,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - *127 + - *128 requestBody: required: true content: @@ -17160,9 +17245,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17180,7 +17265,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise parameters: - *41 - - *127 + - *128 responses: '204': description: Response @@ -17203,7 +17288,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &413 + - &414 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17215,7 +17300,7 @@ paths: description: Response content: application/json: - schema: &414 + schema: &415 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17249,7 +17334,7 @@ paths: - subnet_id - region examples: - default: &415 + default: &416 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -17257,7 +17342,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17284,7 +17369,7 @@ paths: application/json: schema: type: array - items: &128 + items: &129 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -17350,7 +17435,7 @@ paths: - property_name - value_type examples: - default: &129 + default: &130 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17407,7 +17492,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *128 + items: *129 minItems: 1 maxItems: 100 required: @@ -17437,9 +17522,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -17462,8 +17547,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *41 - - *76 - - &130 + - *78 + - &131 name: custom_property_name description: The custom property name in: path @@ -17475,9 +17560,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: &131 + default: &132 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17510,15 +17595,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 responses: '200': description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -17540,12 +17625,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 requestBody: required: true content: application/json: - schema: &377 + schema: &378 title: Custom Property Set Payload description: Custom property set payload type: object @@ -17609,9 +17694,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -17633,9 +17718,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 responses: - '204': *132 + '204': *133 '403': *29 '404': *6 x-github: @@ -17675,7 +17760,7 @@ paths: - push - repository default: branch - enforcement: &139 + enforcement: &140 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -17688,7 +17773,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &140 + items: &141 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -17729,7 +17814,7 @@ paths: - pull_request - exempt default: always - conditions: &163 + conditions: &164 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -17743,7 +17828,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &133 + - &134 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -17769,7 +17854,7 @@ paths: type: string required: - organization_name - - &136 + - &137 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -17798,7 +17883,7 @@ paths: is prevented. required: - repository_name - - &135 + - &136 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -17826,8 +17911,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *133 - - &138 + - *134 + - &139 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -17840,7 +17925,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &134 + items: &135 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -17871,16 +17956,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *134 + items: *135 required: - repository_property - - *135 + - *136 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &137 + - &138 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -17897,25 +17982,25 @@ paths: type: integer required: - organization_id + - *137 - *136 - - *135 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *137 - *138 - - *135 + - *139 + - *136 rules: type: array description: An array of rules within the ruleset. - items: &164 + items: &165 title: Repository Rule type: object description: A repository rule. oneOf: - - &141 + - &142 title: creation description: Only allow users with bypass permission to create matching refs. @@ -17927,7 +18012,7 @@ paths: type: string enum: - creation - - &142 + - &143 title: update description: Only allow users with bypass permission to update matching refs. @@ -17948,7 +18033,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &143 + - &144 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17960,7 +18045,7 @@ paths: type: string enum: - deletion - - &144 + - &145 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17972,7 +18057,7 @@ paths: type: string enum: - required_linear_history - - &145 + - &146 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17996,7 +18081,7 @@ paths: type: string required: - required_deployment_environments - - &146 + - &147 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -18008,7 +18093,7 @@ paths: type: string enum: - required_signatures - - &147 + - &148 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -18068,7 +18153,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &148 + - &149 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -18115,7 +18200,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &149 + - &150 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -18127,7 +18212,7 @@ paths: type: string enum: - non_fast_forward - - &150 + - &151 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -18163,7 +18248,7 @@ paths: required: - operator - pattern - - &151 + - &152 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -18199,7 +18284,7 @@ paths: required: - operator - pattern - - &152 + - &153 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -18235,7 +18320,7 @@ paths: required: - operator - pattern - - &153 + - &154 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -18271,7 +18356,7 @@ paths: required: - operator - pattern - - &154 + - &155 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -18307,7 +18392,7 @@ paths: required: - operator - pattern - - &155 + - &156 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -18331,7 +18416,7 @@ paths: type: string required: - restricted_file_paths - - &156 + - &157 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -18355,7 +18440,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &157 + - &158 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -18378,7 +18463,7 @@ paths: type: string required: - restricted_file_extensions - - &158 + - &159 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -18402,7 +18487,7 @@ paths: maximum: 100 required: - max_file_size - - &159 + - &160 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -18451,7 +18536,7 @@ paths: - repository_id required: - workflows - - &160 + - &161 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -18537,7 +18622,7 @@ paths: description: Response content: application/json: - schema: &161 + schema: &162 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -18572,11 +18657,11 @@ paths: source: type: string description: The name of the source - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 + items: *141 current_user_can_bypass: type: string description: |- @@ -18608,8 +18693,8 @@ paths: conditions: nullable: true anyOf: - - *135 - - &384 + - *136 + - &385 title: Organization ruleset conditions type: object description: |- @@ -18623,14 +18708,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *135 - *136 + - *137 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *135 + - *136 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -18652,20 +18737,20 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *135 - - *138 + - *136 + - *139 rules: type: array - items: &692 + items: &693 title: Repository Rule type: object description: A repository rule. oneOf: - - *141 - *142 - *143 - *144 - - &690 + - *145 + - &691 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -18743,7 +18828,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *145 - *146 - *147 - *148 @@ -18759,6 +18843,7 @@ paths: - *158 - *159 - *160 + - *161 created_at: type: string format: date-time @@ -18766,7 +18851,7 @@ paths: type: string format: date-time examples: - default: &162 + default: &163 value: id: 21 name: super cool ruleset @@ -18792,7 +18877,7 @@ paths: created_at: '2024-08-15T08:43:03Z' updated_at: '2024-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18825,11 +18910,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *162 + default: *163 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18871,16 +18956,16 @@ paths: - tag - push - repository - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *163 + items: *141 + conditions: *164 rules: description: An array of rules within the ruleset. type: array - items: *164 + items: *165 examples: default: value: @@ -18904,11 +18989,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *162 + default: *163 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18935,7 +19020,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18968,7 +19053,7 @@ paths: application/json: schema: type: array - items: &165 + items: &166 title: Ruleset version type: object description: The historical version of a ruleset @@ -18992,7 +19077,7 @@ paths: type: string format: date-time examples: - default: &387 + default: &388 value: - version_id: 3 actor: @@ -19010,7 +19095,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19045,9 +19130,9 @@ paths: description: Response content: application/json: - schema: &388 + schema: &389 allOf: - - *165 + - *166 - type: object required: - state @@ -19080,7 +19165,7 @@ paths: rules: - type: repository_delete '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19100,7 +19185,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &389 + - &390 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19111,7 +19196,7 @@ paths: enum: - open - resolved - - &390 + - &391 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19121,7 +19206,7 @@ paths: required: false schema: type: string - - &391 + - &392 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19130,7 +19215,7 @@ paths: required: false schema: type: string - - &392 + - &393 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -19142,11 +19227,11 @@ paths: - created - updated default: created - - *100 + - *101 - *17 - - *98 - *99 - - &393 + - *100 + - &394 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19155,7 +19240,7 @@ paths: required: false schema: type: string - - &394 + - &395 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19164,7 +19249,7 @@ paths: schema: type: boolean default: false - - &395 + - &396 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19173,7 +19258,7 @@ paths: schema: type: boolean default: false - - &396 + - &397 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19189,11 +19274,11 @@ paths: application/json: schema: type: array - items: &397 + items: &398 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -19201,21 +19286,21 @@ paths: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &704 + state: &705 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &705 + resolution: &706 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -19249,7 +19334,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *109 + repository: *110 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -19322,8 +19407,8 @@ paths: pull request. ' - oneOf: &706 - - &708 + oneOf: &707 + - &709 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -19375,7 +19460,7 @@ paths: - blob_url - commit_sha - commit_url - - &709 + - &710 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -19430,7 +19515,7 @@ paths: - page_url - commit_sha - commit_url - - &710 + - &711 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -19444,7 +19529,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &711 + - &712 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -19458,7 +19543,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &712 + - &713 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -19472,7 +19557,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &713 + - &714 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -19486,7 +19571,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &714 + - &715 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -19500,7 +19585,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &715 + - &716 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -19514,7 +19599,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &716 + - &717 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -19528,7 +19613,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &717 + - &718 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -19542,7 +19627,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &718 + - &719 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -19556,7 +19641,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &719 + - &720 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -19570,7 +19655,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &720 + - &721 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -19590,7 +19675,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &398 + default: &399 value: number: 2 created_at: '2020-11-06T18:48:51Z' @@ -19747,9 +19832,9 @@ paths: commit_url: https://api.github.com/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b has_more_locations: true headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -19780,13 +19865,13 @@ paths: description: Response content: application/json: - schema: &399 + schema: &400 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. type: object properties: - pattern_config_version: &168 + pattern_config_version: &169 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -19795,7 +19880,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &167 + items: &168 type: object properties: token_type: @@ -19861,9 +19946,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *167 + items: *168 examples: - default: &400 + default: &401 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -19918,7 +20003,7 @@ paths: schema: type: object properties: - pattern_config_version: *168 + pattern_config_version: *169 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -19944,7 +20029,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *168 + custom_pattern_version: *169 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -19980,7 +20065,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 "/enterprises/{enterprise}/settings/billing/actions": get: @@ -20007,7 +20092,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &404 type: object properties: total_minutes_used: @@ -20077,7 +20162,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &404 + default: &405 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20108,7 +20193,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &405 + - &406 name: advanced_security_product in: query description: | @@ -20128,7 +20213,7 @@ paths: description: Success content: application/json: - schema: &406 + schema: &407 type: object properties: total_advanced_security_committers: @@ -20183,7 +20268,7 @@ paths: required: - repositories examples: - default: &407 + default: &408 value: total_advanced_security_committers: 2 total_count: 2 @@ -20292,8 +20377,8 @@ paths: name: Octocat '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20422,7 +20507,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *41 - - &171 + - &172 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -20434,7 +20519,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &169 + schema: &170 type: object properties: id: @@ -20473,7 +20558,7 @@ paths: - name - resources examples: - default: &170 + default: &171 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -20486,8 +20571,8 @@ paths: name: octocat/hello-world '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20537,15 +20622,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 '400': *14 '403': *29 '404': *6 - '409': *108 - '500': *91 - '503': *166 + '409': *109 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20563,7 +20648,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *41 - - *171 + - *172 responses: '200': description: Response when deleting a cost center @@ -20601,8 +20686,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20623,7 +20708,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *41 - - *171 + - *172 requestBody: required: true content: @@ -20693,9 +20778,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *29 - '409': *108 - '500': *91 - '503': *166 + '409': *109 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20715,7 +20800,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *41 - - *171 + - *172 requestBody: required: true content: @@ -20761,8 +20846,8 @@ paths: message: Resources successfully removed from the cost center. '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20793,7 +20878,7 @@ paths: description: Response content: application/json: - schema: &408 + schema: &409 type: object properties: total_gigabytes_bandwidth_used: @@ -20811,7 +20896,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &409 + default: &410 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -20846,7 +20931,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &411 type: object properties: days_left_in_billing_cycle: @@ -20864,7 +20949,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &411 + default: &412 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -20889,7 +20974,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *41 - - &210 + - &211 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -20898,7 +20983,7 @@ paths: required: false schema: type: integer - - &211 + - &212 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -20907,7 +20992,7 @@ paths: required: false schema: type: integer - - &212 + - &213 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -20916,7 +21001,7 @@ paths: required: false schema: type: integer - - &213 + - &214 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -20937,7 +21022,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &214 + schema: &215 type: object properties: usageItems: @@ -20990,7 +21075,7 @@ paths: - netAmount - organizationName examples: - default: &215 + default: &216 value: usageItems: - date: '2023-08-01' @@ -21006,8 +21091,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21078,13 +21163,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -21173,7 +21258,7 @@ paths: application/json: schema: type: array - items: &203 + items: &204 title: Event description: Event type: object @@ -21183,7 +21268,7 @@ paths: type: type: string nullable: true - actor: &175 + actor: &176 title: Actor description: Actor type: object @@ -21223,18 +21308,18 @@ paths: - id - name - url - org: *175 + org: *176 payload: type: object properties: action: type: string - issue: &191 + issue: &192 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &629 + properties: &630 id: type: integer format: int64 @@ -21346,7 +21431,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &370 + properties: &371 url: type: string format: uri @@ -21416,7 +21501,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &371 + required: &372 - closed_issues - creator - description @@ -21495,7 +21580,7 @@ paths: timeline_url: type: string format: uri - type: &330 + type: &331 title: Issue Type description: The type of issue. type: object @@ -21544,7 +21629,7 @@ paths: - node_id - name - description - repository: *67 + repository: *69 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -21554,9 +21639,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - author_association: &178 + properties: *177 + required: *178 + author_association: &179 title: author_association type: string example: OWNER @@ -21570,7 +21655,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &179 + reactions: &180 title: Reaction Rollup type: object properties: @@ -21606,7 +21691,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &764 + sub_issues_summary: &765 title: Sub-issues Summary type: object properties: @@ -21626,7 +21711,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &765 + issue_dependencies_summary: &766 title: Issue Dependencies Summary type: object properties: @@ -21645,7 +21730,7 @@ paths: - total_blocking issue_field_values: type: array - items: &766 + items: &767 title: Issue Field Value description: A value assigned to an issue field type: object @@ -21705,7 +21790,7 @@ paths: - node_id - data_type - value - required: &630 + required: &631 - assignee - closed_at - comments @@ -21726,7 +21811,7 @@ paths: - user - created_at - updated_at - comment: &627 + comment: &628 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -21774,7 +21859,7 @@ paths: issue_url: type: string format: uri - author_association: *178 + author_association: *179 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -21784,9 +21869,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - id - node_id @@ -21881,7 +21966,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21962,7 +22047,7 @@ paths: _links: type: object properties: - timeline: &180 + timeline: &181 title: Link With Type description: Hypermedia Link with Type type: object @@ -21974,17 +22059,17 @@ paths: required: - href - type - user: *180 - security_advisories: *180 - current_user: *180 - current_user_public: *180 - current_user_actor: *180 - current_user_organization: *180 + user: *181 + security_advisories: *181 + current_user: *181 + current_user_public: *181 + current_user_actor: *181 + current_user_organization: *181 current_user_organizations: type: array - items: *180 - repository_discussions: *180 - repository_discussions_category: *180 + items: *181 + repository_discussions: *181 + repository_discussions_category: *181 required: - timeline - user @@ -22046,7 +22131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22056,7 +22141,7 @@ paths: application/json: schema: type: array - items: &182 + items: &183 title: Base Gist description: Base Gist type: object @@ -22155,7 +22240,7 @@ paths: - created_at - updated_at examples: - default: &183 + default: &184 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -22200,7 +22285,7 @@ paths: site_admin: false truncated: false headers: - Link: *40 + Link: *43 '304': *37 '403': *29 x-github: @@ -22276,7 +22361,7 @@ paths: description: Response content: application/json: - schema: &184 + schema: &185 title: Gist Simple description: Gist Simple type: object @@ -22293,7 +22378,7 @@ paths: url: type: string format: uri - user: &778 + user: &779 title: Public User description: Public User type: object @@ -22655,7 +22740,7 @@ paths: truncated: type: boolean examples: - default: &185 + default: &186 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -22759,7 +22844,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22769,11 +22854,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '403': *29 @@ -22793,7 +22878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22803,11 +22888,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '401': *25 '304': *37 '403': *29 @@ -22833,7 +22918,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &186 + - &187 name: gist_id description: The unique identifier of the gist. in: path @@ -22845,10 +22930,10 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - default: *185 - '403': &189 + default: *186 + '403': &190 description: Forbidden Gist content: application/json: @@ -22896,7 +22981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *186 + - *187 requestBody: required: true content: @@ -22956,9 +23041,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - updateGist: *185 + updateGist: *186 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -23116,7 +23201,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23145,7 +23230,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23155,7 +23240,7 @@ paths: application/json: schema: type: array - items: &187 + items: &188 title: Gist Comment description: A comment made to a gist. type: object @@ -23190,7 +23275,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *178 + author_association: *179 required: - url - id @@ -23230,7 +23315,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -23255,7 +23340,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *186 + - *187 requestBody: required: true content: @@ -23280,9 +23365,9 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: &188 + default: &189 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -23340,8 +23425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *186 - - &190 + - *187 + - &191 name: comment_id description: The unique identifier of the comment. in: path @@ -23354,12 +23439,12 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: *188 + default: *189 '304': *37 '404': *6 - '403': *189 + '403': *190 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23381,8 +23466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *186 - - *190 + - *187 + - *191 requestBody: required: true content: @@ -23407,9 +23492,9 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: *188 + default: *189 '404': *6 x-github: githubCloudOnly: false @@ -23426,8 +23511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *186 - - *190 + - *187 + - *191 responses: '204': description: Response @@ -23450,7 +23535,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23551,7 +23636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23561,7 +23646,7 @@ paths: application/json: schema: type: array - items: *184 + items: *185 examples: default: value: @@ -23607,7 +23692,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '404': *6 '304': *37 '403': *29 @@ -23626,13 +23711,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *186 + - *187 responses: '201': description: Response content: application/json: - schema: *182 + schema: *183 examples: default: value: @@ -23703,7 +23788,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *186 + - *187 responses: '204': description: Response if gist is starred @@ -23733,7 +23818,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23755,7 +23840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23784,7 +23869,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *186 + - *187 - name: sha in: path required: true @@ -23795,9 +23880,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - default: *185 + default: *186 '422': *15 '404': *6 '403': *29 @@ -23956,7 +24041,7 @@ paths: type: integer repositories: type: array - items: *67 + items: *69 repository_selection: type: string example: selected @@ -24079,7 +24164,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '403': *29 '304': *37 '401': *25 @@ -24163,7 +24248,7 @@ paths: - closed - all default: open - - &333 + - &334 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24181,8 +24266,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - name: collab in: query required: false @@ -24212,9 +24297,9 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: &334 + default: &335 value: - id: 1 node_id: MDU6SXNzdWUx @@ -24459,7 +24544,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '404': *6 @@ -24498,8 +24583,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 examples: default: value: @@ -24784,7 +24869,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &194 + X-CommonMarker-Version: &195 example: 0.17.4 schema: type: string @@ -24839,7 +24924,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *194 + X-CommonMarker-Version: *195 content: text/html: schema: @@ -24868,7 +24953,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &197 + - &198 name: account_id description: account_id parameter in: path @@ -24880,7 +24965,7 @@ paths: description: Response content: application/json: - schema: &196 + schema: &197 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -24910,7 +24995,7 @@ paths: nullable: true id: type: integer - plan: &195 + plan: &196 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -24999,7 +25084,7 @@ paths: nullable: true updated_at: type: string - plan: *195 + plan: *196 required: - url - id @@ -25007,7 +25092,7 @@ paths: - login - marketplace_purchase examples: - default: &198 + default: &199 value: url: https://api.github.com/orgs/github type: Organization @@ -25092,9 +25177,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: &199 + default: &200 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -25112,7 +25197,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '404': *6 '401': *25 x-github: @@ -25134,14 +25219,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &200 + - &201 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &201 + - &202 name: sort description: The property to sort the results by. in: query @@ -25171,9 +25256,9 @@ paths: application/json: schema: type: array - items: *196 + items: *197 examples: - default: &202 + default: &203 value: - url: https://api.github.com/orgs/github type: Organization @@ -25224,7 +25309,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '404': *6 '422': *15 '401': *25 @@ -25247,15 +25332,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *197 + - *198 responses: '200': description: Response content: application/json: - schema: *196 + schema: *197 examples: - default: *198 + default: *199 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -25287,11 +25372,11 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *199 + default: *200 headers: - Link: *40 + Link: *43 '401': *25 x-github: githubCloudOnly: false @@ -25312,8 +25397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *200 - *201 + - *202 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -25333,11 +25418,11 @@ paths: application/json: schema: type: array - items: *196 + items: *197 examples: - default: *202 + default: *203 headers: - Link: *40 + Link: *43 '401': *25 x-github: githubCloudOnly: false @@ -25599,14 +25684,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &435 + - &436 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &436 + - &437 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -25623,7 +25708,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -25677,7 +25762,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &449 + '301': &450 description: Moved permanently content: application/json: @@ -25699,7 +25784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &659 + - &660 name: all description: If `true`, show notifications marked as read. in: query @@ -25707,7 +25792,7 @@ paths: schema: type: boolean default: false - - &660 + - &661 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -25716,8 +25801,8 @@ paths: schema: type: boolean default: false - - *181 - - &661 + - *182 + - &662 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -25742,18 +25827,18 @@ paths: application/json: schema: type: array - items: &204 + items: &205 title: Thread description: Thread type: object properties: id: type: string - repository: &241 + repository: &242 title: Minimal Repository description: Minimal Repository type: object - properties: &303 + properties: &304 id: type: integer format: int64 @@ -26029,7 +26114,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &381 + security_and_analysis: &382 nullable: true type: object properties: @@ -26111,7 +26196,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &304 + required: &305 - archive_url - assignees_url - blobs_url @@ -26199,7 +26284,7 @@ paths: - url - subscription_url examples: - default: &662 + default: &663 value: - id: '1' repository: @@ -26281,7 +26366,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -26365,7 +26450,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &205 + - &206 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -26379,7 +26464,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *205 examples: default: value: @@ -26482,7 +26567,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *205 + - *206 responses: '205': description: Reset Content @@ -26505,7 +26590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *205 + - *206 responses: '204': description: No content @@ -26528,13 +26613,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *205 + - *206 responses: '200': description: Response content: application/json: - schema: &206 + schema: &207 title: Thread Subscription description: Thread Subscription type: object @@ -26571,7 +26656,7 @@ paths: - url - subscribed examples: - default: &207 + default: &208 value: subscribed: true ignored: false @@ -26602,7 +26687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *205 + - *206 requestBody: required: false content: @@ -26623,9 +26708,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: - default: *207 + default: *208 '304': *37 '403': *29 '401': *25 @@ -26648,7 +26733,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *205 + - *206 responses: '204': description: Response @@ -26743,9 +26828,9 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: &795 + default: &796 value: - login: github id: 1 @@ -26809,7 +26894,7 @@ paths: type: integer custom_roles: type: array - items: &285 + items: &286 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -26857,7 +26942,7 @@ paths: - created_at - updated_at examples: - default: &286 + default: &287 value: id: 8030 name: Security Engineer @@ -26904,7 +26989,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *76 + - *78 - name: page in: query description: The page number of results to fetch. @@ -26948,8 +27033,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *208 - required: *209 + properties: *209 + required: *210 nullable: true additionalProperties: false examples: @@ -27055,7 +27140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -27121,7 +27206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *76 + - *78 requestBody: required: true content: @@ -27168,23 +27253,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - - *76 - - *210 + - *78 - *211 - *212 - *213 + - *214 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *214 + schema: *215 examples: - default: *215 + default: *216 '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27210,13 +27295,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &216 + schema: &217 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -27549,7 +27634,7 @@ paths: - updated_at - archived_at examples: - default-response: &217 + default-response: &218 value: login: github id: 1 @@ -27651,7 +27736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *76 + - *78 requestBody: required: false content: @@ -27874,18 +27959,18 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: *217 + default: *218 '422': description: Validation failed content: application/json: schema: oneOf: - - *218 - *219 - '409': *108 + - *220 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27908,7 +27993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *76 + - *78 responses: '202': *39 '404': *6 @@ -27933,17 +28018,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *221 + default: *222 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27964,7 +28049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -27982,7 +28067,7 @@ paths: type: integer repository_cache_usages: type: array - items: &454 + items: &455 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -28017,7 +28102,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28037,7 +28122,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -28055,11 +28140,11 @@ paths: type: integer runners: type: array - items: *42 + items: *44 examples: - default: *222 + default: *223 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28077,7 +28162,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -28144,9 +28229,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28164,7 +28249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28180,9 +28265,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28200,7 +28285,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28216,9 +28301,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28235,15 +28320,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28261,7 +28346,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28277,9 +28362,9 @@ paths: type: integer machine_specs: type: array - items: *45 + items: *47 examples: - default: *225 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28297,7 +28382,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28341,18 +28426,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 responses: '200': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28370,8 +28455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 requestBody: required: true content: @@ -28409,9 +28494,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28427,16 +28512,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 responses: '202': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28456,13 +28541,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *76 + - *78 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &226 + schema: &227 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -28476,7 +28561,7 @@ paths: required: - include_claim_keys examples: - default: &227 + default: &228 value: include_claim_keys: - repo @@ -28498,20 +28583,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 responses: '201': description: Empty response content: application/json: - schema: &252 + schema: &253 title: Empty Object description: An object without any properties. type: object @@ -28541,7 +28626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28550,7 +28635,7 @@ paths: schema: type: object properties: - enabled_repositories: &229 + enabled_repositories: &230 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -28563,9 +28648,9 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: *49 - selected_actions_url: *228 - sha_pinning_required: *50 + allowed_actions: *51 + selected_actions_url: *229 + sha_pinning_required: *52 required: - enabled_repositories examples: @@ -28595,7 +28680,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -28606,9 +28691,9 @@ paths: schema: type: object properties: - enabled_repositories: *229 - allowed_actions: *49 - sha_pinning_required: *50 + enabled_repositories: *230 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled_repositories examples: @@ -28636,13 +28721,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: response: summary: Example response @@ -28668,12 +28753,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *231 + schema: *232 examples: application/json: value: @@ -28683,7 +28768,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -28703,15 +28788,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *51 + schema: *53 examples: - default: *232 + default: *233 '404': *6 x-github: enabledForGitHubApps: true @@ -28730,7 +28815,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -28740,7 +28825,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -28762,15 +28847,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *52 + default: *54 '403': *29 '404': *6 x-github: @@ -28788,14 +28873,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *234 + schema: *235 examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -28825,7 +28910,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -28843,9 +28928,9 @@ paths: type: number repositories: type: array - items: *67 + items: *69 examples: - default: &236 + default: &237 value: total_count: 1 repositories: @@ -28985,7 +29070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -29029,8 +29114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *76 - - &235 + - *78 + - &236 name: repository_id description: The unique identifier of the repository. in: path @@ -29058,8 +29143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: Response @@ -29082,15 +29167,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *54 + schema: *56 examples: - default: *55 + default: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29113,7 +29198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -29121,9 +29206,9 @@ paths: required: false content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29143,7 +29228,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -29191,7 +29276,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29218,7 +29303,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29238,7 +29323,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -29253,9 +29338,9 @@ paths: type: integer repositories: type: array - items: *67 + items: *69 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -29275,7 +29360,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29323,14 +29408,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29350,14 +29435,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29379,15 +29464,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29408,7 +29493,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Success response @@ -29419,9 +29504,9 @@ paths: required: false content: application/json: - schema: *238 + schema: *239 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29441,7 +29526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *76 + - *78 - *17 - *19 - name: visible_to_repository @@ -29466,7 +29551,7 @@ paths: type: number runner_groups: type: array - items: &239 + items: &240 type: object properties: id: @@ -29582,7 +29667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29654,9 +29739,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: &240 + default: &241 value: id: 2 name: octo-runner-group @@ -29691,14 +29776,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 responses: '200': description: Response content: application/json: - schema: *239 + schema: *240 examples: default: value: @@ -29734,8 +29819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -29789,9 +29874,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: *240 + default: *241 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29810,8 +29895,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *76 - - *61 + - *78 + - *63 responses: '204': description: Response @@ -29834,8 +29919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *17 - *19 responses: @@ -29853,11 +29938,11 @@ paths: type: number runners: type: array - items: *42 + items: *44 examples: - default: *222 + default: *223 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29877,8 +29962,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *19 - *17 responses: @@ -29896,9 +29981,9 @@ paths: type: number repositories: type: array - items: *241 + items: *242 examples: - default: &781 + default: &782 value: total_count: 1 repositories: @@ -30150,8 +30235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -30195,9 +30280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 - - *235 + - *78 + - *63 + - *236 responses: '204': description: Response @@ -30219,9 +30304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 - - *235 + - *78 + - *63 + - *236 responses: '204': description: Response @@ -30244,8 +30329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *17 - *19 responses: @@ -30263,11 +30348,11 @@ paths: type: number runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -30286,8 +30371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -30331,9 +30416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *76 - - *61 - - *64 + - *78 + - *63 + - *66 responses: '204': description: Response @@ -30355,9 +30440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *76 - - *61 - - *64 + - *78 + - *63 + - *66 responses: '204': description: Response @@ -30387,7 +30472,7 @@ paths: in: query schema: type: string - - *76 + - *78 - *17 - *19 responses: @@ -30405,11 +30490,11 @@ paths: type: integer runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30431,7 +30516,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -30439,9 +30524,9 @@ paths: application/json: schema: type: array - items: *242 + items: *243 examples: - default: *243 + default: *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30463,7 +30548,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30506,10 +30591,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *244 + '201': *245 '404': *6 '422': *7 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30537,15 +30622,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *245 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30573,15 +30658,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *246 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30603,16 +30688,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *247 + default: *248 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30633,8 +30718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: '204': description: Response @@ -30660,10 +30745,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: - '200': *70 + '200': *72 '404': *6 x-github: githubCloudOnly: false @@ -30685,8 +30770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 requestBody: required: true content: @@ -30710,7 +30795,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30734,8 +30819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 requestBody: required: true content: @@ -30760,7 +30845,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30784,10 +30869,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: - '200': *248 + '200': *249 '404': *6 x-github: githubCloudOnly: false @@ -30814,11 +30899,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 - - *249 + - *78 + - *66 + - *250 responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30843,7 +30928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -30861,7 +30946,7 @@ paths: type: integer secrets: type: array - items: &250 + items: &251 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -30911,7 +30996,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30934,13 +31019,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &474 + schema: &475 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -30969,7 +31054,7 @@ paths: - key_id - key examples: - default: &475 + default: &476 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30994,8 +31079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *76 - - &251 + - *78 + - &252 name: secret_name description: The name of the secret. in: path @@ -31007,7 +31092,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -31037,8 +31122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -31095,7 +31180,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -31121,8 +31206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -31148,8 +31233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -31167,9 +31252,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: &255 + default: &256 value: total_count: 1 repositories: @@ -31261,8 +31346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -31314,8 +31399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -31348,8 +31433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -31381,8 +31466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *76 - - &459 + - *78 + - &460 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -31406,7 +31491,7 @@ paths: type: integer variables: type: array - items: &253 + items: &254 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -31470,7 +31555,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31491,7 +31576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *76 + - *78 requestBody: required: true content: @@ -31539,7 +31624,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -31564,8 +31649,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *76 - - &254 + - *78 + - &255 name: name description: The name of the variable. in: path @@ -31577,7 +31662,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -31607,8 +31692,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 requestBody: required: true content: @@ -31670,8 +31755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 responses: '204': description: Response @@ -31697,8 +31782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - *19 - *17 responses: @@ -31716,9 +31801,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 '409': description: Response when the visibility of the variable is not set to `selected` @@ -31744,8 +31829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 requestBody: required: true content: @@ -31794,8 +31879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - name: repository_id in: path required: true @@ -31829,8 +31914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - name: repository_id in: path required: true @@ -31861,15 +31946,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -31888,19 +31973,19 @@ paths: required: true content: application/json: - schema: *256 + schema: *257 examples: - default: *74 + default: *76 parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -31916,7 +32001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -31939,7 +32024,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -32069,7 +32154,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -32152,9 +32237,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations-by-bulk-subject-digests parameters: - *17 - - *98 - *99 - - *76 + - *100 + - *78 requestBody: required: true content: @@ -32177,12 +32262,12 @@ paths: required: - subject_digests examples: - default: &814 + default: &815 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &815 + withPredicateType: &816 value: subject_digests: - sha256:abc123 @@ -32240,7 +32325,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &816 + default: &817 value: attestations_subject_digests: - sha256:abc: @@ -32349,7 +32434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *76 + - *78 requestBody: required: true content: @@ -32414,7 +32499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *76 + - *78 - name: subject_digest description: Subject Digest in: path @@ -32445,7 +32530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *76 + - *78 - name: attestation_id description: Attestation ID in: path @@ -32481,9 +32566,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations parameters: - *17 - - *98 - *99 - - *76 + - *100 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -32534,7 +32619,7 @@ paths: bundle_url: type: string examples: - default: &488 + default: &489 value: attestations: - bundle: @@ -32652,7 +32737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *76 + - *78 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -32660,10 +32745,10 @@ paths: required: false schema: type: string - - *257 - *258 - *259 - *260 + - *261 - *17 responses: '200': @@ -32672,9 +32757,9 @@ paths: application/json: schema: type: array - items: *261 + items: *262 examples: - default: *262 + default: *263 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -32691,7 +32776,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32703,7 +32788,7 @@ paths: type: array items: *4 examples: - default: &335 + default: &336 value: - login: octocat id: 1 @@ -32741,8 +32826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: If the user is blocked @@ -32767,8 +32852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -32788,8 +32873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -32815,17 +32900,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *76 - - &266 + - *78 + - &267 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *93 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -32835,11 +32920,11 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for an org @@ -32860,12 +32945,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *76 - - *266 - - *93 + - *78 + - *267 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -32875,11 +32960,11 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *268 + default: *269 '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/campaigns": get: summary: List campaigns for an organization @@ -32896,15 +32981,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *76 + - *78 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &270 + schema: &271 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -32930,7 +33015,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -32961,7 +33046,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *269 + items: *270 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -32979,7 +33064,7 @@ paths: type: string format: date-time nullable: true - state: *270 + state: *271 contact_link: description: The contact link of the campaign. type: string @@ -33074,9 +33159,9 @@ paths: closed_at: state: open headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33100,7 +33185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -33194,9 +33279,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: &272 + default: &273 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -33245,7 +33330,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33267,7 +33352,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33279,16 +33364,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33309,7 +33394,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33358,7 +33443,7 @@ paths: type: string format: uri nullable: true - state: *270 + state: *271 examples: default: value: @@ -33368,9 +33453,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 '400': description: Bad Request content: @@ -33382,7 +33467,7 @@ paths: content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33403,7 +33488,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33414,7 +33499,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33436,20 +33521,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *76 - - *273 + - *78 - *274 - - *98 + - *275 - *99 + - *100 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *275 + schema: *276 - name: sort description: The property by which to sort the results. in: query @@ -33465,7 +33550,7 @@ paths: be returned. in: query required: false - schema: &515 + schema: &516 type: string description: Severity of a code scanning alert. enum: @@ -33483,13 +33568,13 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *277 + default: *278 headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33511,7 +33596,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *76 + - *78 - name: target_type in: query description: The target type of the code security configuration @@ -33530,8 +33615,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 responses: '200': description: Response @@ -33539,7 +33624,7 @@ paths: application/json: schema: type: array - items: *104 + items: *105 examples: default: value: @@ -33622,7 +33707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *76 + - *78 requestBody: required: true content: @@ -33700,7 +33785,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *278 + code_scanning_options: *279 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -33709,7 +33794,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -33841,9 +33926,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *104 + schema: *105 examples: - default: *279 + default: *280 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33865,15 +33950,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: - default: *281 + default: *282 '304': *37 '403': *29 '404': *6 @@ -33899,7 +33984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -33925,11 +34010,11 @@ paths: - 32 - 91 responses: - '204': *132 + '204': *133 '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33951,16 +34036,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 responses: '200': description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *279 + default: *280 '304': *37 '403': *29 '404': *6 @@ -33984,8 +34069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34064,7 +34149,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -34182,7 +34267,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *104 + schema: *105 examples: default: value: @@ -34241,14 +34326,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 responses: - '204': *132 + '204': *133 '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34272,8 +34357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34336,8 +34421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34377,12 +34462,12 @@ paths: - none - private_and_internal - public - configuration: *104 + configuration: *105 examples: default: value: default_for_new_repos: all - configuration: *279 + configuration: *280 '403': *29 '404': *6 x-github: @@ -34406,8 +34491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -34416,8 +34501,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -34435,13 +34520,13 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *283 + repository: *284 '403': *29 '404': *6 x-github: @@ -34465,7 +34550,7 @@ paths: parameters: - *17 - *19 - - *76 + - *78 responses: '200': description: Response @@ -34481,7 +34566,7 @@ paths: type: integer codespaces: type: array - items: &336 + items: &337 type: object title: Codespace description: A codespace. @@ -34506,12 +34591,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *241 + repository: *242 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &544 + properties: &545 name: type: string description: The name of the machine. @@ -34553,7 +34638,7 @@ paths: - ready - in_progress nullable: true - required: &545 + required: &546 - name - display_name - operating_system @@ -34758,7 +34843,7 @@ paths: - pulls_url - recent_folders examples: - default: &337 + default: &338 value: total_count: 3 codespaces: @@ -35168,7 +35253,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -35190,7 +35275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -35234,7 +35319,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35257,7 +35342,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -35289,7 +35374,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35312,7 +35397,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *76 + - *78 requestBody: required: true content: @@ -35343,7 +35428,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35364,7 +35449,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -35382,7 +35467,7 @@ paths: type: integer secrets: type: array - items: &284 + items: &285 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -35421,7 +35506,7 @@ paths: - updated_at - visibility examples: - default: &546 + default: &547 value: total_count: 2 secrets: @@ -35434,7 +35519,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35453,13 +35538,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &547 + schema: &548 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -35488,7 +35573,7 @@ paths: - key_id - key examples: - default: &548 + default: &549 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35511,23 +35596,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: &550 + default: &551 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35547,8 +35632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -35603,7 +35688,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -35629,8 +35714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -35655,8 +35740,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -35674,9 +35759,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 '404': *6 x-github: githubCloudOnly: false @@ -35698,8 +35783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -35749,8 +35834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -35783,8 +35868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -35823,7 +35908,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: OK @@ -35932,7 +36017,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -35964,7 +36049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *76 + - *78 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -35987,12 +36072,12 @@ paths: currently being billed. seats: type: array - items: *123 + items: *124 examples: - default: *124 + default: *125 headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36025,7 +36110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36067,7 +36152,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36103,7 +36188,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36145,7 +36230,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36183,7 +36268,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36224,7 +36309,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36260,7 +36345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36302,7 +36387,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36341,7 +36426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *76 + - *78 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -36373,13 +36458,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36401,7 +36486,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -36545,7 +36630,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *76 + - *78 - name: credential_id in: path required: true @@ -36576,7 +36661,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of custom role names @@ -36591,7 +36676,7 @@ paths: type: integer custom_roles: type: array - items: *285 + items: *286 examples: default: value: @@ -36678,12 +36763,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &288 + schema: &289 type: object properties: name: @@ -36724,9 +36809,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36750,8 +36835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *76 - - &287 + - *78 + - &288 name: role_id description: The unique identifier of the role. in: path @@ -36763,9 +36848,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '404': *6 x-github: githubCloudOnly: true @@ -36787,13 +36872,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: application/json: - schema: &289 + schema: &290 type: object properties: name: @@ -36831,9 +36916,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36857,8 +36942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -36886,12 +36971,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *288 + schema: *289 examples: default: value: @@ -36905,9 +36990,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36937,16 +37022,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '200': description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '404': *6 x-github: githubCloudOnly: true @@ -36974,13 +37059,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: application/json: - schema: *289 + schema: *290 examples: default: value: @@ -36995,9 +37080,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -37027,8 +37112,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -37056,12 +37141,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *76 - - *290 + - *78 - *291 - *292 - *293 - *294 + - *295 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37077,14 +37162,14 @@ paths: Can be: `jfrog-artifactory` schema: type: string - - *295 - *296 - *297 - - *100 - - *98 - - *99 - *298 + - *101 + - *99 + - *100 - *299 + - *300 - *17 responses: '200': @@ -37093,9 +37178,9 @@ paths: application/json: schema: type: array - items: *300 + items: *301 examples: - default: *301 + default: *302 '304': *37 '400': *14 '403': *29 @@ -37121,7 +37206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -37139,7 +37224,7 @@ paths: type: integer secrets: type: array - items: &302 + items: &303 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37189,7 +37274,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37210,13 +37295,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &575 + schema: &576 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37233,7 +37318,7 @@ paths: - key_id - key examples: - default: &576 + default: &577 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37256,14 +37341,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: Response content: application/json: - schema: *302 + schema: *303 examples: default: value: @@ -37291,8 +37376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -37347,7 +37432,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -37371,8 +37456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -37396,8 +37481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -37415,9 +37500,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37438,8 +37523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -37489,8 +37574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -37521,8 +37606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -37558,8 +37643,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *76 - - &584 + - *78 + - &585 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -37567,7 +37652,7 @@ paths: required: false schema: type: string - - &585 + - &586 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -37575,7 +37660,7 @@ paths: required: false schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -37591,7 +37676,7 @@ paths: - week - month default: month - - &587 + - &588 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -37606,7 +37691,7 @@ paths: - denied - all default: all - - *266 + - *267 - *17 - *19 responses: @@ -37616,7 +37701,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -37772,7 +37857,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &589 + default: &590 value: - id: 21 number: 42 @@ -37837,7 +37922,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -37858,12 +37943,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *76 - - *266 - - *93 + - *78 + - *267 - *94 - *95 - - &590 + - *96 + - &591 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -37889,7 +37974,7 @@ paths: application/json: schema: type: array - items: &591 + items: &592 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -37999,7 +38084,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *97 + items: *98 url: type: string format: uri @@ -38010,7 +38095,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &592 + default: &593 value: - id: 21 number: 42 @@ -38075,7 +38160,7 @@ paths: html_url: https://github.com/octo-org/smile/security/secret-scanning/19 '404': *6 '403': *29 - '500': *91 + '500': *40 "/orgs/{org}/docker/conflicts": get: summary: Get list of conflicting packages during Docker migration for organization @@ -38090,7 +38175,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -38098,7 +38183,7 @@ paths: application/json: schema: type: array - items: &348 + items: &349 title: Package description: A software package type: object @@ -38148,8 +38233,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *303 - required: *304 + properties: *304 + required: *305 nullable: true created_at: type: string @@ -38168,7 +38253,7 @@ paths: - created_at - updated_at examples: - default: &349 + default: &350 value: - id: 197 name: hello_docker @@ -38246,7 +38331,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38256,7 +38341,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: 200-response: value: @@ -38326,7 +38411,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *76 + - *78 - name: group_id description: The unique identifier of the group. in: path @@ -38352,7 +38437,7 @@ paths: description: Response content: application/json: - schema: &430 + schema: &431 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -38433,7 +38518,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &431 + default: &432 value: group_id: '123' group_name: Octocat admins @@ -38471,7 +38556,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-in-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -38488,7 +38573,7 @@ paths: description: Response content: application/json: - schema: &428 + schema: &429 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -38525,7 +38610,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &429 + default: &430 value: groups: - group_id: '123' @@ -38559,7 +38644,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38569,7 +38654,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Organization Invitation description: Organization Invitation type: object @@ -38616,7 +38701,7 @@ paths: - invitation_teams_url - node_id examples: - default: &328 + default: &329 value: - id: 1 login: monalisa @@ -38649,7 +38734,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -38675,7 +38760,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -38683,7 +38768,7 @@ paths: application/json: schema: type: array - items: &382 + items: &383 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -38697,7 +38782,7 @@ paths: - name - description examples: - default: &383 + default: &384 value: - name: add_assignee description: Assign or remove a user @@ -38728,7 +38813,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38738,7 +38823,7 @@ paths: application/json: schema: type: array - items: &305 + items: &306 title: Org Hook description: Org Hook type: object @@ -38826,7 +38911,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -38847,7 +38932,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *76 + - *78 requestBody: required: true content: @@ -38907,9 +38992,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: - default: &306 + default: &307 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38953,8 +39038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *76 - - &307 + - *78 + - &308 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -38967,9 +39052,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -38990,8 +39075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 requestBody: required: false content: @@ -39036,7 +39121,7 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: default: value: @@ -39075,8 +39160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 responses: '204': description: Response @@ -39101,8 +39186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *76 - - *307 + - *78 + - *308 responses: '200': description: Response @@ -39130,8 +39215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *76 - - *307 + - *78 + - *308 requestBody: required: false content: @@ -39179,10 +39264,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *76 - - *307 - - *17 + - *78 - *308 + - *17 + - *309 responses: '200': description: Response @@ -39190,9 +39275,9 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: - default: *310 + default: *311 '400': *14 '422': *15 x-github: @@ -39215,17 +39300,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 - *16 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *312 + default: *313 '400': *14 '422': *15 x-github: @@ -39248,8 +39333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 - *16 responses: '202': *39 @@ -39275,8 +39360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 responses: '204': description: Response @@ -39298,8 +39383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *76 - - &317 + - *78 + - &318 name: actor_type in: path description: The type of the actor @@ -39312,14 +39397,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &318 + - &319 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &313 + - &314 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -39327,7 +39412,7 @@ paths: required: true schema: type: string - - &314 + - &315 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -39338,7 +39423,7 @@ paths: type: string - *19 - *17 - - *100 + - *101 - name: sort description: The property to sort the results by. in: query @@ -39420,13 +39505,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *76 - - *313 + - *78 - *314 + - *315 - *19 - *17 - - *100 - - &323 + - *101 + - &324 name: sort description: The property to sort the results by. in: query @@ -39504,15 +39589,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *76 - - *313 + - *78 - *314 + - *315 responses: '200': description: Response content: application/json: - schema: &315 + schema: &316 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39528,7 +39613,7 @@ paths: type: integer format: int64 examples: - default: &316 + default: &317 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39548,24 +39633,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *76 - - &319 + - *78 + - &320 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *313 - *314 + - *315 responses: '200': description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 x-github: enabledForGitHubApps: true category: orgs @@ -39583,19 +39668,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *76 - - *313 + - *78 - *314 - - *317 + - *315 - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 x-github: enabledForGitHubApps: true category: orgs @@ -39612,10 +39697,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *76 - - *313 + - *78 - *314 - - &320 + - *315 + - &321 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39628,7 +39713,7 @@ paths: description: Response content: application/json: - schema: &321 + schema: &322 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39644,7 +39729,7 @@ paths: type: integer format: int64 examples: - default: &322 + default: &323 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39680,19 +39765,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *76 - - *319 - - *313 - - *314 + - *78 - *320 + - *314 + - *315 + - *321 responses: '200': description: Response content: application/json: - schema: *321 + schema: *322 examples: - default: *322 + default: *323 x-github: enabledForGitHubApps: true category: orgs @@ -39709,20 +39794,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *76 - - *317 + - *78 - *318 - - *313 + - *319 - *314 - - *320 + - *315 + - *321 responses: '200': description: Response content: application/json: - schema: *321 + schema: *322 examples: - default: *322 + default: *323 x-github: enabledForGitHubApps: true category: orgs @@ -39739,14 +39824,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *76 - - *319 - - *313 + - *78 + - *320 - *314 + - *315 - *19 - *17 - - *100 - - *323 + - *101 + - *324 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39819,7 +39904,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *76 + - *78 responses: '200': description: Response @@ -39827,7 +39912,7 @@ paths: application/json: schema: *22 examples: - default: &623 + default: &624 value: id: 1 account: @@ -39896,7 +39981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -39966,7 +40051,7 @@ paths: suspended_at: suspended_by: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39985,7 +40070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -39993,12 +40078,12 @@ paths: application/json: schema: anyOf: - - &325 + - &326 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &324 + limit: &325 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40023,7 +40108,7 @@ paths: properties: {} additionalProperties: false examples: - default: &326 + default: &327 value: limit: collaborators_only origin: organization @@ -40047,18 +40132,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &624 + schema: &625 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *324 + limit: *325 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40082,9 +40167,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *326 + default: *327 '422': *15 x-github: githubCloudOnly: false @@ -40102,7 +40187,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -40128,7 +40213,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *76 + - *78 - *17 - *19 - name: role @@ -40162,11 +40247,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40188,7 +40273,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *76 + - *78 requestBody: required: false content: @@ -40242,7 +40327,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: default: value: @@ -40298,8 +40383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *76 - - &329 + - *78 + - &330 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40332,8 +40417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *76 - - *329 + - *78 + - *330 - *17 - *19 responses: @@ -40343,9 +40428,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: &347 + default: &348 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40361,7 +40446,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40380,7 +40465,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -40388,7 +40473,7 @@ paths: application/json: schema: type: array - items: *330 + items: *331 examples: default: value: @@ -40426,7 +40511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -40473,9 +40558,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: - default: &331 + default: &332 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -40507,8 +40592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *76 - - &332 + - *78 + - &333 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40561,9 +40646,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: - default: *331 + default: *332 '404': *6 '422': *7 x-github: @@ -40587,8 +40672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *76 - - *332 + - *78 + - *333 responses: '204': description: Response @@ -40621,7 +40706,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *76 + - *78 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -40651,7 +40736,7 @@ paths: - closed - all default: open - - *333 + - *334 - name: type description: Can be the name of an issue type. in: query @@ -40669,8 +40754,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -40680,11 +40765,11 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *334 + default: *335 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40704,7 +40789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *76 + - *78 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -40742,9 +40827,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -40762,8 +40847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response if requester is an organization member and user is @@ -40797,8 +40882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -40824,8 +40909,8 @@ paths: parameters: - *17 - *19 - - *76 - - *263 + - *78 + - *264 responses: '200': description: Response @@ -40841,11 +40926,11 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: - default: *337 + default: *338 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -40868,9 +40953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *76 - - *263 - - &338 + - *78 + - *264 + - &339 name: codespace_name in: path required: true @@ -40880,7 +40965,7 @@ paths: responses: '202': *39 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -40903,17 +40988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *76 - - *263 - - *338 + - *78 + - *264 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: &543 + default: &544 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41055,7 +41140,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -41086,14 +41171,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *123 + schema: *124 examples: default: value: @@ -41137,7 +41222,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -41162,14 +41247,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '200': description: Response content: application/json: - schema: &339 + schema: &340 title: Org Membership description: Org Membership type: object @@ -41213,7 +41298,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *62 + organization: *64 user: title: Simple User description: A GitHub user. @@ -41236,7 +41321,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &340 + response-if-user-has-an-active-admin-membership-with-organization: &341 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41304,8 +41389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 requestBody: required: false content: @@ -41333,9 +41418,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-user-already-had-membership-with-organization: *340 + response-if-user-already-had-membership-with-organization: *341 '422': *15 '403': *29 x-github: @@ -41359,8 +41444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -41385,7 +41470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *76 + - *78 - *17 - *19 - name: exclude @@ -41406,7 +41491,7 @@ paths: application/json: schema: type: array - items: &341 + items: &342 title: Migration description: A migration. type: object @@ -41447,7 +41532,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *67 + items: *69 url: type: string format: uri @@ -41643,7 +41728,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -41659,7 +41744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *76 + - *78 requestBody: required: true content: @@ -41735,7 +41820,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -41913,8 +41998,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *76 - - &342 + - *78 + - &343 name: migration_id description: The unique identifier of the migration. in: path @@ -41941,7 +42026,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -42110,8 +42195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *76 - - *342 + - *78 + - *343 responses: '302': description: Response @@ -42132,8 +42217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *76 - - *342 + - *78 + - *343 responses: '204': description: Response @@ -42156,9 +42241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *76 - - *342 - - &794 + - *78 + - *343 + - &795 name: repo_name description: repo_name parameter in: path @@ -42185,8 +42270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *76 - - *342 + - *78 + - *343 - *17 - *19 responses: @@ -42196,9 +42281,9 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: &354 + default: &355 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42309,7 +42394,7 @@ paths: secret_scanning_validity_checks: status: disabled headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -42337,7 +42422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -42391,7 +42476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of organization roles @@ -42407,7 +42492,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &343 + items: &344 title: Organization Role description: Organization roles type: object @@ -42567,7 +42652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *76 + - *78 requestBody: required: true content: @@ -42614,7 +42699,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42643,7 +42728,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42665,8 +42750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *76 - - &344 + - *78 + - &345 name: team_slug description: The slug of the team name. in: path @@ -42697,9 +42782,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *76 - - *344 - - *287 + - *78 + - *345 + - *288 responses: '204': description: Response @@ -42728,9 +42813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *76 - - *344 - - *287 + - *78 + - *345 + - *288 responses: '204': description: Response @@ -42755,8 +42840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -42781,9 +42866,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *76 - - *263 - - *287 + - *78 + - *264 + - *288 responses: '204': description: Response @@ -42813,9 +42898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *76 - - *263 - - *287 + - *78 + - *264 + - *288 responses: '204': description: Response @@ -42843,14 +42928,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '200': description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42907,8 +42992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: @@ -42947,7 +43032,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42975,7 +43060,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *108 + '409': *109 '404': *6 x-github: githubCloudOnly: true @@ -43000,8 +43085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -43026,8 +43111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 - *17 - *19 responses: @@ -43105,8 +43190,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 nullable: true required: - id @@ -43121,9 +43206,9 @@ paths: - slug - parent examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '404': description: Response if the organization or role does not exist. '422': @@ -43150,8 +43235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 - *17 - *19 responses: @@ -43179,13 +43264,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &402 + items: &403 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 name: nullable: true type: string @@ -43280,9 +43365,9 @@ paths: - type - url examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': description: Response if the organization or role does not exist. '422': @@ -43304,7 +43389,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *76 + - *78 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -43331,9 +43416,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43356,8 +43441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *76 - - *263 + - *78 + - *264 requestBody: required: false content: @@ -43414,8 +43499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -43472,8 +43557,8 @@ paths: - docker - nuget - container - - *76 - - &796 + - *78 + - &797 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43509,12 +43594,12 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *349 + default: *350 '403': *29 '401': *25 - '400': &798 + '400': &799 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43536,7 +43621,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &350 + - &351 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -43554,20 +43639,20 @@ paths: - docker - nuget - container - - &351 + - &352 name: package_name description: The name of the package. in: path required: true schema: type: string - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -43619,9 +43704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 responses: '204': description: Response @@ -43653,9 +43738,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 - name: token description: package token schema: @@ -43687,9 +43772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 - *19 - *17 - name: state @@ -43709,7 +43794,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Package Version description: A version of a software package type: object @@ -43834,10 +43919,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - &353 + - *352 + - *78 + - &354 name: package_version_id description: Unique identifier of the package version. in: path @@ -43849,7 +43934,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -43885,10 +43970,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - *353 + - *352 + - *78 + - *354 responses: '204': description: Response @@ -43920,10 +44005,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - *353 + - *352 + - *78 + - *354 responses: '204': description: Response @@ -43950,10 +44035,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *76 + - *78 - *17 - *19 - - &355 + - &356 name: sort description: The property by which to sort the results. in: query @@ -43963,8 +44048,8 @@ paths: enum: - created_at default: created_at - - *100 - - &356 + - *101 + - &357 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43975,7 +44060,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &357 + - &358 name: repository description: The name of the repository to use to filter the results. in: query @@ -43983,7 +44068,7 @@ paths: schema: type: string example: Hello-World - - &358 + - &359 name: permission description: The permission to use to filter the results. in: query @@ -43991,7 +44076,7 @@ paths: schema: type: string example: issues_read - - &359 + - &360 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -44001,7 +44086,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -44011,7 +44096,7 @@ paths: schema: type: string format: date-time - - &361 + - &362 name: token_id description: The ID of the token in: query @@ -44023,7 +44108,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44155,7 +44240,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44175,7 +44260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *76 + - *78 requestBody: required: true content: @@ -44216,7 +44301,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44241,7 +44326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -44277,11 +44362,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44302,7 +44387,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -44313,7 +44398,7 @@ paths: - *17 - *19 responses: - '500': *91 + '500': *40 '404': *6 '403': *29 '200': @@ -44322,11 +44407,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44347,19 +44432,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *76 + - *78 - *17 - *19 - - *355 - - *100 - *356 + - *101 - *357 - *358 - *359 - *360 - *361 + - *362 responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44486,7 +44571,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44506,7 +44591,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *76 + - *78 requestBody: required: true content: @@ -44541,7 +44626,7 @@ paths: - 1296269 - 1296280 responses: - '500': *91 + '500': *40 '404': *6 '202': *39 '403': *29 @@ -44566,7 +44651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *76 + - *78 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -44594,9 +44679,9 @@ paths: value: action: revoke responses: - '500': *91 + '500': *40 '404': *6 - '204': *132 + '204': *133 '403': *29 '422': *15 x-github: @@ -44618,7 +44703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *76 + - *78 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -44628,7 +44713,7 @@ paths: - *17 - *19 responses: - '500': *91 + '500': *40 '404': *6 '403': *29 '200': @@ -44637,11 +44722,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44663,7 +44748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -44681,7 +44766,7 @@ paths: type: integer configurations: type: array - items: &362 + items: &363 title: Organization private registry description: Private registry configuration for an organization type: object @@ -44747,7 +44832,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *40 + Link: *43 '400': *14 '404': *6 x-github: @@ -44769,7 +44854,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -44934,7 +45019,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &363 + org-private-registry-with-selected-visibility: &364 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -44975,7 +45060,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -45001,7 +45086,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -45023,16 +45108,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *362 + schema: *363 examples: - default: *363 + default: *364 '404': *6 x-github: githubCloudOnly: false @@ -45053,8 +45138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -45149,8 +45234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -45175,7 +45260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-organization-projects parameters: - - *76 + - *78 - name: state description: Indicates the state of the projects to return. in: query @@ -45196,7 +45281,7 @@ paths: application/json: schema: type: array - items: &364 + items: &365 title: Project description: Projects are a way to organize columns and cards of work. @@ -45320,7 +45405,7 @@ paths: organization_permission: write private: true headers: - Link: *40 + Link: *43 '422': *7 x-github: githubCloudOnly: false @@ -45343,7 +45428,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-an-organization-project parameters: - - *76 + - *78 requestBody: required: true content: @@ -45369,7 +45454,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -45407,7 +45492,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &446 + '410': &447 description: Gone content: application/json: @@ -45433,15 +45518,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *76 + - *78 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *98 - *99 + - *100 - *17 responses: '200': @@ -45450,7 +45535,7 @@ paths: application/json: schema: type: array - items: &365 + items: &366 title: Projects v2 Project description: A projects v2 project type: object @@ -45520,7 +45605,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &876 + properties: &877 id: type: number description: The unique identifier of the status update. @@ -45568,7 +45653,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &877 + required: &878 - id - node_id - created_at @@ -45593,7 +45678,7 @@ paths: - deleted_at - deleted_by examples: - default: &366 + default: &367 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -45676,7 +45761,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45696,24 +45781,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &367 + - &368 name: project_number description: The project's number. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45733,11 +45818,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *367 - - *76 + - *368 + - *78 - *17 - - *98 - *99 + - *100 responses: '200': description: Response @@ -45745,7 +45830,7 @@ paths: application/json: schema: type: array - items: &368 + items: &369 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -45892,7 +45977,7 @@ paths: - updated_at - project_url examples: - default: &369 + default: &370 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45915,7 +46000,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45935,25 +46020,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *367 - - &809 + - *368 + - &810 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45974,8 +46059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *367 - - *76 + - *368 + - *78 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -45994,8 +46079,8 @@ paths: items: type: string example: fields[]=123,fields[]=456,fields[]=789 - - *98 - *99 + - *100 - *17 responses: '200': @@ -46004,7 +46089,7 @@ paths: application/json: schema: type: array - items: &374 + items: &375 title: Projects v2 Item description: An item belonging to a project type: object @@ -46020,7 +46105,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: &373 + content_type: &374 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46070,7 +46155,7 @@ paths: - updated_at - archived_at examples: - default: &375 + default: &376 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -46744,7 +46829,7 @@ paths: type: sub_issues_progress value: headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -46764,8 +46849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *76 - - *367 + - *78 + - *368 requestBody: required: true description: Details of the item to add to the project. @@ -46802,7 +46887,7 @@ paths: description: Response content: application/json: - schema: &810 + schema: &811 title: Projects v2 Item description: An item belonging to a project type: object @@ -46815,8 +46900,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *191 - - &558 + - *192 + - &559 title: Pull Request Simple description: Pull Request Simple type: object @@ -46922,8 +47007,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true active_lock_reason: type: string @@ -46968,7 +47053,7 @@ paths: nullable: true requested_teams: type: array - items: *269 + items: *270 nullable: true head: type: object @@ -46977,7 +47062,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: @@ -47000,7 +47085,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: @@ -47019,7 +47104,7 @@ paths: _links: type: object properties: - comments: &372 + comments: &373 title: Link description: Hypermedia Link type: object @@ -47028,13 +47113,13 @@ paths: type: string required: - href - commits: *372 - statuses: *372 - html: *372 - issue: *372 - review_comments: *372 - review_comment: *372 - self: *372 + commits: *373 + statuses: *373 + html: *373 + issue: *373 + review_comments: *373 + review_comment: *373 + self: *373 required: - comments - commits @@ -47044,8 +47129,8 @@ paths: - review_comments - review_comment - self - author_association: *178 - auto_merge: &669 + author_association: *179 + auto_merge: &670 title: Auto merge description: The status of auto merging a pull request. type: object @@ -47147,7 +47232,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *373 + content_type: *374 creator: *4 created_at: type: string @@ -47180,7 +47265,7 @@ paths: - updated_at - archived_at examples: - default: &811 + default: &812 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47254,9 +47339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *367 - - *76 - - &376 + - *368 + - *78 + - &377 name: item_id description: The unique identifier of the project item. in: path @@ -47279,11 +47364,11 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -47302,9 +47387,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *367 - - *76 - - *376 + - *368 + - *78 + - *377 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47374,9 +47459,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '401': *25 '403': *29 '404': *6 @@ -47396,9 +47481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *367 - - *76 - - *376 + - *368 + - *78 + - *377 responses: '204': description: Response @@ -47422,7 +47507,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -47430,9 +47515,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -47459,7 +47544,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -47470,7 +47555,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *128 + items: *129 minItems: 1 maxItems: 100 required: @@ -47500,9 +47585,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -47523,16 +47608,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 responses: '200': description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -47555,13 +47640,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 requestBody: required: true content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -47577,9 +47662,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -47602,10 +47687,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 responses: - '204': *132 + '204': *133 '403': *29 '404': *6 x-github: @@ -47626,7 +47711,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 - *17 - *19 - name: repository_query @@ -47664,7 +47749,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &378 + items: &379 title: Custom Property Value description: Custom property name and associated value type: object @@ -47703,7 +47788,7 @@ paths: - property_name: team value: octocat headers: - Link: *40 + Link: *43 '403': *29 '404': *6 x-github: @@ -47731,7 +47816,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -47751,7 +47836,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *378 + items: *379 required: - repository_names - properties @@ -47792,7 +47877,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *76 + - *78 - *17 - *19 responses: @@ -47804,9 +47889,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47823,8 +47908,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response if user is a public member @@ -47848,8 +47933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -47870,8 +47955,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -47895,7 +47980,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *76 + - *78 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -47942,11 +48027,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47965,7 +48050,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *76 + - *78 requestBody: required: true content: @@ -48147,7 +48232,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &449 title: Full Repository description: Full Repository type: object @@ -48424,8 +48509,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *379 - required: *380 + properties: *380 + required: *381 nullable: true temp_clone_token: type: string @@ -48512,8 +48597,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true organization: title: Simple User @@ -48522,8 +48607,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *67 - source: *67 + parent: *69 + source: *69 forks: type: integer master_branch: @@ -48540,7 +48625,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &563 + properties: &564 url: type: string format: uri @@ -48556,12 +48641,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &564 + required: &565 - url - key - name - html_url - security_and_analysis: *381 + security_and_analysis: *382 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -48645,7 +48730,7 @@ paths: - network_count - subscribers_count examples: - default: &450 + default: &451 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49163,7 +49248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -49171,9 +49256,9 @@ paths: application/json: schema: type: array - items: *382 + items: *383 examples: - default: *383 + default: *384 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -49195,10 +49280,10 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - *17 - *19 - - &691 + - &692 name: targets description: | A comma-separated list of rule targets to filter by. @@ -49216,7 +49301,7 @@ paths: application/json: schema: type: array - items: *161 + items: *162 examples: default: value: @@ -49247,7 +49332,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -49263,7 +49348,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 requestBody: description: Request body required: true @@ -49284,21 +49369,20 @@ paths: - push - repository default: branch - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *384 + items: *141 + conditions: *385 rules: type: array description: An array of rules within the ruleset. - items: &386 + items: &387 title: Repository Rule type: object description: A repository rule. oneOf: - - *141 - *142 - *143 - *144 @@ -49318,6 +49402,7 @@ paths: - *158 - *159 - *160 + - *161 required: - name - enforcement @@ -49355,9 +49440,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: &385 + default: &386 value: id: 21 name: super cool ruleset @@ -49397,7 +49482,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -49411,8 +49496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *76 - - &693 + - *78 + - &694 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -49422,16 +49507,16 @@ paths: schema: type: string x-multi-segment: true - - *266 - - *95 - - &694 + - *267 + - *96 + - &695 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &695 + - &696 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -49451,7 +49536,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 title: Rule Suites description: Response type: array @@ -49506,7 +49591,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &697 + default: &698 value: - id: 21 actor_id: 12 @@ -49530,7 +49615,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49549,8 +49634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *76 - - &698 + - *78 + - &699 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -49566,7 +49651,7 @@ paths: description: Response content: application/json: - schema: &699 + schema: &700 title: Rule Suite description: Response type: object @@ -49665,7 +49750,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &700 + default: &701 value: id: 21 actor_id: 12 @@ -49700,7 +49785,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49726,7 +49811,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49738,11 +49823,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *385 + default: *386 '404': *6 - '500': *91 + '500': *40 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -49758,7 +49843,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49784,16 +49869,16 @@ paths: - tag - push - repository - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *384 + items: *141 + conditions: *385 rules: description: An array of rules within the ruleset. type: array - items: *386 + items: *387 examples: default: value: @@ -49828,11 +49913,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *385 + default: *386 '404': *6 - '500': *91 + '500': *40 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -49848,7 +49933,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49859,7 +49944,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -49871,7 +49956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *76 + - *78 - *17 - *19 - name: ruleset_id @@ -49887,11 +49972,11 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *387 + default: *388 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49908,7 +49993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49926,7 +50011,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -49966,7 +50051,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49988,15 +50073,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *76 - - *389 + - *78 - *390 - *391 - *392 - - *100 + - *393 + - *101 - *19 - *17 - - &702 + - &703 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -50006,7 +50091,7 @@ paths: required: false schema: type: string - - &703 + - &704 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -50016,10 +50101,10 @@ paths: required: false schema: type: string - - *393 - *394 - *395 - *396 + - *397 responses: '200': description: Response @@ -50027,13 +50112,13 @@ paths: application/json: schema: type: array - items: *397 + items: *398 examples: - default: *398 + default: *399 headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50058,15 +50143,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: *400 + default: *401 '403': *29 '404': *6 patch: @@ -50087,7 +50172,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 requestBody: required: true content: @@ -50095,7 +50180,7 @@ paths: schema: type: object properties: - pattern_config_version: *168 + pattern_config_version: *169 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50121,7 +50206,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *168 + custom_pattern_version: *169 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50157,7 +50242,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 "/orgs/{org}/security-advisories": get: @@ -50175,8 +50260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *76 - - *100 + - *78 + - *101 - name: sort description: The property to sort the results by. in: query @@ -50188,8 +50273,8 @@ paths: - updated - published default: created - - *98 - *99 + - *100 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -50219,7 +50304,7 @@ paths: application/json: schema: type: array - items: &724 + items: &725 description: A repository security advisory. type: object properties: @@ -50406,7 +50491,7 @@ paths: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array nullable: true @@ -50439,7 +50524,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 credits_detailed: type: array nullable: true @@ -50449,7 +50534,7 @@ paths: type: object properties: user: *4 - type: *401 + type: *402 state: type: string description: The state of the user's acceptance of the @@ -50473,14 +50558,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *269 + items: *270 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *109 + - *110 required: - ghsa_id - cve_id @@ -50510,7 +50595,7 @@ paths: - private_fork additionalProperties: false examples: - default: &725 + default: &726 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50889,7 +50974,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *76 + - *78 responses: '200': description: Response @@ -50897,9 +50982,9 @@ paths: application/json: schema: type: array - items: *402 + items: *403 examples: - default: *347 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50922,8 +51007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -50948,8 +51033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -50978,15 +51063,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51010,8 +51095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *76 - - *405 + - *78 + - *406 - *17 - *19 responses: @@ -51019,9 +51104,9 @@ paths: description: Success content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -51043,15 +51128,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51073,15 +51158,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51101,7 +51186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -51119,11 +51204,11 @@ paths: type: integer network_configurations: type: array - items: *125 + items: *126 examples: - default: *412 + default: *413 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51142,7 +51227,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -51184,9 +51269,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51206,18 +51291,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 - - *127 + - *78 + - *128 responses: '200': description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51236,8 +51321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 - - *127 + - *78 + - *128 requestBody: required: true content: @@ -51276,9 +51361,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51297,8 +51382,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *76 - - *127 + - *78 + - *128 responses: '204': description: Response @@ -51321,18 +51406,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *76 - - *413 + - *78 + - *414 responses: '200': description: Response content: application/json: - schema: *414 + schema: *415 examples: - default: *415 + default: *416 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51349,7 +51434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -51368,7 +51453,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &438 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -51414,7 +51499,7 @@ paths: type: string nullable: true examples: - default: &438 + default: &439 value: groups: - group_id: '123' @@ -51459,8 +51544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *76 - - *344 + - *78 + - *345 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -51492,13 +51577,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51516,7 +51601,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *76 + - *78 - *17 - *19 responses: @@ -51526,11 +51611,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '403': *29 x-github: githubCloudOnly: false @@ -51550,7 +51635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *76 + - *78 requestBody: required: true content: @@ -51622,7 +51707,7 @@ paths: description: Response content: application/json: - schema: &416 + schema: &417 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -51685,8 +51770,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 nullable: true members_count: type: integer @@ -51932,7 +52017,7 @@ paths: - repos_count - organization examples: - default: &417 + default: &418 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52002,16 +52087,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -52032,8 +52117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: false content: @@ -52095,16 +52180,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '201': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 '422': *15 '403': *29 @@ -52129,8 +52214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -52156,9 +52241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - - *76 - - *344 - - *100 + - *78 + - *345 + - *101 - *17 - *19 - name: pinned @@ -52174,7 +52259,7 @@ paths: application/json: schema: type: array - items: &418 + items: &419 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -52253,7 +52338,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *179 + reactions: *180 required: - author - body @@ -52273,7 +52358,7 @@ paths: - updated_at - url examples: - default: &768 + default: &769 value: - author: login: octocat @@ -52323,7 +52408,7 @@ paths: eyes: 1 rocket: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52347,8 +52432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -52382,9 +52467,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: &419 + default: &420 value: author: login: octocat @@ -52456,9 +52541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - - *76 - - *344 - - &420 + - *78 + - *345 + - &421 name: discussion_number description: The number that identifies the discussion. in: path @@ -52470,9 +52555,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52494,9 +52579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: false content: @@ -52519,9 +52604,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: &769 + default: &770 value: author: login: octocat @@ -52591,9 +52676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 responses: '204': description: Response @@ -52619,10 +52704,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - - *76 - - *344 - - *420 - - *100 + - *78 + - *345 + - *421 + - *101 - *17 - *19 responses: @@ -52632,7 +52717,7 @@ paths: application/json: schema: type: array - items: &421 + items: &422 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -52689,7 +52774,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *179 + reactions: *180 required: - author - body @@ -52704,7 +52789,7 @@ paths: - updated_at - url examples: - default: &770 + default: &771 value: - author: login: octocat @@ -52748,7 +52833,7 @@ paths: eyes: 1 rocket: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52772,9 +52857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: true content: @@ -52796,9 +52881,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &422 + default: &423 value: author: login: octocat @@ -52864,10 +52949,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - &423 + - *78 + - *345 + - *421 + - &424 name: comment_number description: The number that identifies the comment. in: path @@ -52879,9 +52964,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52903,10 +52988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 requestBody: required: true content: @@ -52928,9 +53013,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &771 + default: &772 value: author: login: octocat @@ -52994,10 +53079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 responses: '204': description: Response @@ -53023,10 +53108,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -53052,7 +53137,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -53095,7 +53180,7 @@ paths: - content - created_at examples: - default: &426 + default: &427 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -53121,7 +53206,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53145,10 +53230,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 requestBody: required: true content: @@ -53181,9 +53266,9 @@ paths: team discussion comment content: application/json: - schema: *424 + schema: *425 examples: - default: &425 + default: &426 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -53212,9 +53297,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53237,11 +53322,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - - *76 - - *344 - - *420 - - *423 - - &427 + - *78 + - *345 + - *421 + - *424 + - &428 name: reaction_id description: The unique identifier of the reaction. in: path @@ -53273,9 +53358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -53301,11 +53386,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53329,9 +53414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: true content: @@ -53363,16 +53448,16 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -53395,10 +53480,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - - *76 - - *344 - - *420 - - *427 + - *78 + - *345 + - *421 + - *428 responses: '204': description: Response @@ -53421,16 +53506,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *428 + schema: *429 examples: - default: *429 + default: *430 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -53449,8 +53534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -53473,9 +53558,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -53494,8 +53579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -53519,8 +53604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -53530,11 +53615,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53554,8 +53639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *76 - - *344 + - *78 + - *345 - name: role description: Filters members returned by their role in the team. in: query @@ -53578,9 +53663,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53608,15 +53693,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 responses: '200': description: Response content: application/json: - schema: &432 + schema: &433 title: Team Membership description: Team Membership type: object @@ -53643,7 +53728,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &772 + response-if-user-is-a-team-maintainer: &773 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -53679,9 +53764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 requestBody: required: false content: @@ -53706,9 +53791,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-users-membership-with-team-is-now-pending: &773 + response-if-users-membership-with-team-is-now-pending: &774 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53743,9 +53828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 responses: '204': description: Response @@ -53770,8 +53855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -53781,7 +53866,7 @@ paths: application/json: schema: type: array - items: &433 + items: &434 title: Team Project description: A team's access to a project. type: object @@ -53849,7 +53934,7 @@ paths: - updated_at - permissions examples: - default: &774 + default: &775 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -53889,7 +53974,7 @@ paths: write: true admin: false headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53912,9 +53997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - - *76 - - *344 - - &434 + - *78 + - *345 + - &435 name: project_id description: The unique identifier of the project. in: path @@ -53926,9 +54011,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: &775 + default: &776 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -53990,9 +54075,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - - *76 - - *344 - - *434 + - *78 + - *345 + - *435 requestBody: required: false content: @@ -54058,9 +54143,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - - *76 - - *344 - - *434 + - *78 + - *345 + - *435 responses: '204': description: Response @@ -54087,8 +54172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -54098,11 +54183,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54129,16 +54214,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &776 + schema: &777 title: Team Repository description: A team's access to a repository. type: object @@ -54161,8 +54246,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true forks: type: integer @@ -54707,10 +54792,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 requestBody: required: false content: @@ -54755,10 +54840,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 responses: '204': description: Response @@ -54784,16 +54869,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -54815,8 +54900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -54859,7 +54944,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -54891,8 +54976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -54902,9 +54987,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - response-if-child-teams-exist: &777 + response-if-child-teams-exist: &778 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -54932,7 +55017,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54957,7 +55042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *76 + - *78 - name: security_product in: path description: The security feature to enable or disable. @@ -55031,7 +55116,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &439 + - &440 name: card_id description: The unique identifier of the card. in: path @@ -55043,7 +55128,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 title: Project Card description: Project cards represent a scope of work. type: object @@ -55110,7 +55195,7 @@ paths: - created_at - updated_at examples: - default: &441 + default: &442 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -55166,7 +55251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *439 + - *440 requestBody: required: false content: @@ -55193,9 +55278,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - default: *441 + default: *442 '304': *37 '403': *29 '401': *25 @@ -55222,7 +55307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *439 + - *440 responses: '204': description: Response @@ -55266,7 +55351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *439 + - *440 requestBody: required: true content: @@ -55377,7 +55462,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &442 + - &443 name: column_id description: The unique identifier of the column. in: path @@ -55389,7 +55474,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &444 title: Project Column description: Project columns contain cards of work. type: object @@ -55435,7 +55520,7 @@ paths: - created_at - updated_at examples: - default: &444 + default: &445 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -55470,7 +55555,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *442 + - *443 requestBody: required: true content: @@ -55494,9 +55579,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: *444 + default: *445 '304': *37 '403': *29 '401': *25 @@ -55521,7 +55606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *442 + - *443 responses: '204': description: Response @@ -55550,7 +55635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *442 + - *443 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -55571,7 +55656,7 @@ paths: application/json: schema: type: array - items: *440 + items: *441 examples: default: value: @@ -55605,7 +55690,7 @@ paths: content_url: https://api.github.com/repos/api-playground/projects-test/issues/3 project_url: https://api.github.com/projects/120 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -55630,7 +55715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *442 + - *443 requestBody: required: true content: @@ -55670,9 +55755,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - default: *441 + default: *442 '304': *37 '403': *29 '401': *25 @@ -55682,8 +55767,8 @@ paths: application/json: schema: oneOf: - - *218 - *219 + - *220 '503': description: Response content: @@ -55728,7 +55813,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *442 + - *443 requestBody: required: true content: @@ -55788,15 +55873,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *434 + - *435 responses: '200': description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: &445 + default: &446 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -55853,7 +55938,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *434 + - *435 requestBody: required: false content: @@ -55899,9 +55984,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: *445 + default: *446 '404': description: Not Found if the authenticated user does not have access to the project @@ -55922,7 +56007,7 @@ paths: items: type: string '401': *25 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -55945,7 +56030,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *434 + - *435 responses: '204': description: Delete Success @@ -55966,7 +56051,7 @@ paths: items: type: string '401': *25 - '410': *446 + '410': *447 '404': *6 x-github: githubCloudOnly: false @@ -55990,7 +56075,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *434 + - *435 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -56017,9 +56102,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 '422': *15 '304': *37 @@ -56047,8 +56132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *434 - - *263 + - *435 + - *264 requestBody: required: false content: @@ -56100,8 +56185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *434 - - *263 + - *435 + - *264 responses: '204': description: Response @@ -56132,8 +56217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *434 - - *263 + - *435 + - *264 responses: '200': description: Response @@ -56206,7 +56291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *434 + - *435 - *17 - *19 responses: @@ -56216,7 +56301,7 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: default: value: @@ -56229,7 +56314,7 @@ paths: created_at: '2016-09-05T14:18:44Z' updated_at: '2016-09-05T14:22:28Z' headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -56254,7 +56339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *434 + - *435 requestBody: required: true content: @@ -56277,7 +56362,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: default: value: @@ -56342,7 +56427,7 @@ paths: resources: type: object properties: - core: &447 + core: &448 title: Rate Limit type: object properties: @@ -56359,21 +56444,21 @@ paths: - remaining - reset - used - graphql: *447 - search: *447 - code_search: *447 - source_import: *447 - integration_manifest: *447 - code_scanning_upload: *447 - actions_runner_registration: *447 - scim: *447 - dependency_snapshots: *447 - dependency_sbom: *447 - code_scanning_autofix: *447 + graphql: *448 + search: *448 + code_search: *448 + source_import: *448 + integration_manifest: *448 + code_scanning_upload: *448 + actions_runner_registration: *448 + scim: *448 + dependency_snapshots: *448 + dependency_sbom: *448 + code_scanning_autofix: *448 required: - core - search - rate: *447 + rate: *448 required: - rate - resources @@ -56478,14 +56563,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *448 + schema: *449 examples: default-response: summary: Default response @@ -56990,7 +57075,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *449 + '301': *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57008,8 +57093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -57266,10 +57351,10 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 - '307': &451 + default: *451 + '307': &452 description: Temporary Redirect content: application/json: @@ -57298,8 +57383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -57321,9 +57406,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *451 + '307': *452 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57345,11 +57430,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 - - &466 + - &467 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -57372,7 +57457,7 @@ paths: type: integer artifacts: type: array - items: &452 + items: &453 title: Artifact description: An artifact type: object @@ -57450,7 +57535,7 @@ paths: - expires_at - updated_at examples: - default: &467 + default: &468 value: total_count: 2 artifacts: @@ -57489,7 +57574,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57511,9 +57596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *435 - *436 - - &453 + - *437 + - &454 name: artifact_id description: The unique identifier of the artifact. in: path @@ -57525,7 +57610,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -57563,9 +57648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *435 - *436 - - *453 + - *437 + - *454 responses: '204': description: Response @@ -57589,9 +57674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *435 - *436 - - *453 + - *437 + - *454 - name: archive_format in: path required: true @@ -57605,7 +57690,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57628,14 +57713,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -57661,11 +57746,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 - - &455 + - &456 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -57693,13 +57778,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *100 + - *101 responses: '200': description: Response content: application/json: - schema: &456 + schema: &457 title: Repository actions caches description: Repository actions caches type: object @@ -57741,7 +57826,7 @@ paths: - total_count - actions_caches examples: - default: &457 + default: &458 value: total_count: 1 actions_caches: @@ -57753,7 +57838,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57773,23 +57858,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *435 - *436 + - *437 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *455 + - *456 responses: '200': description: Response content: application/json: - schema: *456 + schema: *457 examples: - default: *457 + default: *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57809,8 +57894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *435 - *436 + - *437 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -57841,9 +57926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *435 - *436 - - &458 + - *437 + - &459 name: job_id description: The unique identifier of the job. in: path @@ -57855,7 +57940,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &471 title: Job description: Information of a job execution in a workflow run type: object @@ -58162,9 +58247,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *435 - *436 - - *458 + - *437 + - *459 responses: '302': description: Response @@ -58192,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *435 - *436 - - *458 + - *437 + - *459 requestBody: required: false content: @@ -58215,7 +58300,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -58239,8 +58324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Status response @@ -58290,8 +58375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -58325,7 +58410,7 @@ paths: description: Empty response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -58354,8 +58439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -58373,7 +58458,7 @@ paths: type: integer secrets: type: array - items: &472 + items: &473 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -58393,7 +58478,7 @@ paths: - created_at - updated_at examples: - default: &473 + default: &474 value: total_count: 2 secrets: @@ -58404,7 +58489,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58426,9 +58511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *435 - *436 - - *459 + - *437 + - *460 - *19 responses: '200': @@ -58445,7 +58530,7 @@ paths: type: integer variables: type: array - items: &476 + items: &477 title: Actions Variable type: object properties: @@ -58475,7 +58560,7 @@ paths: - created_at - updated_at examples: - default: &477 + default: &478 value: total_count: 2 variables: @@ -58488,7 +58573,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58508,8 +58593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -58518,12 +58603,12 @@ paths: schema: type: object properties: - enabled: &460 + enabled: &461 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *49 - selected_actions_url: *228 - sha_pinning_required: *50 + allowed_actions: *51 + selected_actions_url: *229 + sha_pinning_required: *52 required: - enabled examples: @@ -58553,8 +58638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58565,9 +58650,9 @@ paths: schema: type: object properties: - enabled: *460 - allowed_actions: *49 - sha_pinning_required: *50 + enabled: *461 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled examples: @@ -58598,14 +58683,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &461 + schema: &462 type: object properties: access_level: @@ -58623,7 +58708,7 @@ paths: required: - access_level examples: - default: &462 + default: &463 value: access_level: organization x-github: @@ -58648,15 +58733,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *461 + schema: *462 examples: - default: *462 + default: *463 responses: '204': description: Response @@ -58680,14 +58765,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -58711,8 +58796,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Empty response for successful settings update @@ -58722,7 +58807,7 @@ paths: required: true content: application/json: - schema: *231 + schema: *232 examples: default: summary: Set retention days @@ -58746,16 +58831,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *51 + schema: *53 examples: - default: *232 + default: *233 '404': *6 x-github: enabledForGitHubApps: true @@ -58774,8 +58859,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58785,7 +58870,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -58809,16 +58894,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *52 + default: *54 '403': *29 '404': *6 x-github: @@ -58838,15 +58923,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *234 + schema: *235 examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -58870,16 +58955,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *54 + schema: *56 examples: - default: *55 + default: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58902,8 +58987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58911,9 +58996,9 @@ paths: required: false content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58935,16 +59020,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58965,8 +59050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Success response @@ -58977,9 +59062,9 @@ paths: required: true content: application/json: - schema: *238 + schema: *239 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59006,8 +59091,8 @@ paths: in: query schema: type: string - - *435 - *436 + - *437 - *17 - *19 responses: @@ -59025,11 +59110,11 @@ paths: type: integer runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59051,8 +59136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -59060,9 +59145,9 @@ paths: application/json: schema: type: array - items: *242 + items: *243 examples: - default: *243 + default: *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59084,8 +59169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -59128,10 +59213,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *244 + '201': *245 '404': *6 '422': *7 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59159,16 +59244,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *435 - *436 + - *437 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *245 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59196,16 +59281,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *435 - *436 + - *437 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *246 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59227,17 +59312,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *247 + default: *248 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59258,9 +59343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: '204': description: Response @@ -59286,11 +59371,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: - '200': *70 + '200': *72 '404': *6 x-github: githubCloudOnly: false @@ -59312,9 +59397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 requestBody: required: true content: @@ -59338,7 +59423,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59362,9 +59447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 requestBody: required: true content: @@ -59389,7 +59474,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59413,11 +59498,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: - '200': *248 + '200': *249 '404': *6 x-github: githubCloudOnly: false @@ -59444,12 +59529,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 - - *249 + - *437 + - *66 + - *250 responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59475,9 +59560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *435 - *436 - - &480 + - *437 + - &481 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -59485,7 +59570,7 @@ paths: required: false schema: type: string - - &481 + - &482 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -59493,7 +59578,7 @@ paths: required: false schema: type: string - - &482 + - &483 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -59502,7 +59587,7 @@ paths: required: false schema: type: string - - &483 + - &484 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -59529,7 +59614,7 @@ paths: - pending - *17 - *19 - - &484 + - &485 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -59538,7 +59623,7 @@ paths: schema: type: string format: date-time - - &463 + - &464 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -59547,13 +59632,13 @@ paths: schema: type: boolean default: false - - &485 + - &486 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &486 + - &487 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -59576,7 +59661,7 @@ paths: type: integer workflow_runs: type: array - items: &464 + items: &465 title: Workflow Run description: An invocation of a workflow type: object @@ -59671,7 +59756,7 @@ paths: that triggered the run. type: array nullable: true - items: &505 + items: &506 title: Pull Request Minimal type: object properties: @@ -59790,7 +59875,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &509 + properties: &510 id: type: string description: SHA for the commit @@ -59841,7 +59926,7 @@ paths: - name - email nullable: true - required: &510 + required: &511 - id - tree_id - message @@ -59849,8 +59934,8 @@ paths: - author - committer nullable: true - repository: *241 - head_repository: *241 + repository: *242 + head_repository: *242 head_repository_id: type: integer example: 5 @@ -59888,7 +59973,7 @@ paths: - workflow_url - pull_requests examples: - default: &487 + default: &488 value: total_count: 1 workflow_runs: @@ -60102,7 +60187,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60124,24 +60209,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *435 - *436 - - &465 + - *437 + - &466 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: &468 + default: &469 value: id: 30433642 name: Build @@ -60382,9 +60467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '204': description: Response @@ -60407,9 +60492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -60528,15 +60613,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -60563,12 +60648,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *435 - *436 - - *465 + - *437 + - *466 - *17 - *19 - - *466 + - *467 responses: '200': description: Response @@ -60584,11 +60669,11 @@ paths: type: integer artifacts: type: array - items: *452 + items: *453 examples: - default: *467 + default: *468 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60610,25 +60695,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *435 - *436 - - *465 - - &469 + - *437 + - *466 + - &470 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *468 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60651,10 +60736,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *435 - *436 - - *465 - - *469 + - *437 + - *466 + - *470 - *17 - *19 responses: @@ -60672,9 +60757,9 @@ paths: type: integer jobs: type: array - items: *470 + items: *471 examples: - default: &471 + default: &472 value: total_count: 1 jobs: @@ -60763,7 +60848,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -60787,10 +60872,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *435 - *436 - - *465 - - *469 + - *437 + - *466 + - *470 responses: '302': description: Response @@ -60818,19 +60903,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '202': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60853,9 +60938,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: true content: @@ -60922,19 +61007,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '202': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60957,9 +61042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -60989,11 +61074,11 @@ paths: type: integer jobs: type: array - items: *470 + items: *471 examples: - default: *471 + default: *472 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61016,9 +61101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '302': description: Response @@ -61045,14 +61130,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '204': description: Response '403': *29 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61074,9 +61159,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -61136,7 +61221,7 @@ paths: items: type: object properties: - type: &593 + type: &594 type: string description: The type of reviewer. enum: @@ -61146,7 +61231,7 @@ paths: reviewer: anyOf: - *4 - - *269 + - *270 required: - environment - wait_timer @@ -61221,9 +61306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: true content: @@ -61270,7 +61355,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -61358,8 +61443,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -61376,7 +61461,7 @@ paths: - created_at - updated_at examples: - default: &580 + default: &581 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -61432,9 +61517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: false content: @@ -61455,7 +61540,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61478,9 +61563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: false content: @@ -61501,7 +61586,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61534,9 +61619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -61673,8 +61758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -61692,11 +61777,11 @@ paths: type: integer secrets: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61719,16 +61804,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61750,17 +61835,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: &606 + default: &607 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -61786,9 +61871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -61819,7 +61904,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61845,9 +61930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -61872,9 +61957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *435 - *436 - - *459 + - *437 + - *460 - *19 responses: '200': @@ -61891,11 +61976,11 @@ paths: type: integer variables: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61916,8 +62001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -61944,7 +62029,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61969,17 +62054,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: &607 + default: &608 value: name: USERNAME value: octocat @@ -62005,9 +62090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 requestBody: required: true content: @@ -62049,9 +62134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 responses: '204': description: Response @@ -62076,8 +62161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -62095,7 +62180,7 @@ paths: type: integer workflows: type: array - items: &478 + items: &479 title: Workflow description: A GitHub Actions workflow type: object @@ -62179,7 +62264,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62202,9 +62287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *435 - *436 - - &479 + - *437 + - &480 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -62219,7 +62304,7 @@ paths: description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -62252,9 +62337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62279,9 +62364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62332,9 +62417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62361,19 +62446,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *435 - *436 - - *479 + - *437 - *480 - *481 - *482 - *483 + - *484 - *17 - *19 - - *484 - - *463 - *485 + - *464 - *486 + - *487 responses: '200': description: Response @@ -62389,11 +62474,11 @@ paths: type: integer workflow_runs: type: array - items: *464 + items: *465 examples: - default: *487 + default: *488 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62424,9 +62509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '200': description: Response @@ -62487,12 +62572,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *435 - *436 - - *100 + - *437 + - *101 - *17 - - *98 - *99 + - *100 - name: ref description: |- The Git reference for the activities you want to list. @@ -62633,7 +62718,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '422': *7 x-github: githubCloudOnly: false @@ -62652,8 +62737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -62665,9 +62750,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -62690,8 +62775,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *435 - *436 + - *437 - name: assignee in: path required: true @@ -62727,8 +62812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -62840,11 +62925,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *435 - *436 + - *437 - *17 - - *98 - *99 + - *100 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -62895,7 +62980,7 @@ paths: bundle_url: type: string examples: - default: *488 + default: *489 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62915,8 +63000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -62924,7 +63009,7 @@ paths: application/json: schema: type: array - items: &489 + items: &490 title: Autolink reference description: An autolink reference. type: object @@ -62978,8 +63063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -63018,9 +63103,9 @@ paths: description: response content: application/json: - schema: *489 + schema: *490 examples: - default: &490 + default: &491 value: id: 1 key_prefix: TICKET- @@ -63051,9 +63136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *435 - *436 - - &491 + - *437 + - &492 name: autolink_id description: The unique identifier of the autolink. in: path @@ -63065,9 +63150,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 + default: *491 '404': *6 x-github: githubCloudOnly: false @@ -63087,9 +63172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *435 - *436 - - *491 + - *437 + - *492 responses: '204': description: Response @@ -63113,8 +63198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response if Dependabot is enabled @@ -63162,8 +63247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -63184,8 +63269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -63205,8 +63290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *435 - *436 + - *437 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -63244,7 +63329,7 @@ paths: - url protected: type: boolean - protection: &493 + protection: &494 title: Branch Protection description: Branch Protection type: object @@ -63286,7 +63371,7 @@ paths: required: - contexts - checks - enforce_admins: &496 + enforce_admins: &497 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -63301,7 +63386,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &498 + required_pull_request_reviews: &499 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -63322,7 +63407,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *269 + items: *270 apps: description: The list of apps with review dismissal access. @@ -63351,7 +63436,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *269 + items: *270 apps: description: The list of apps allowed to bypass pull request requirements. @@ -63377,7 +63462,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &495 + restrictions: &496 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -63440,7 +63525,7 @@ paths: type: string teams: type: array - items: *269 + items: *270 apps: type: array items: @@ -63636,7 +63721,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -63654,9 +63739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *435 - *436 - - &494 + - *437 + - &495 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -63670,14 +63755,14 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &554 + commit: &555 title: Commit description: Commit type: object @@ -63711,7 +63796,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &492 + properties: &493 name: type: string example: '"Chris Wanstrath"' @@ -63726,7 +63811,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true message: type: string @@ -63747,7 +63832,7 @@ paths: required: - sha - url - verification: &613 + verification: &614 title: Verification type: object properties: @@ -63781,12 +63866,12 @@ paths: nullable: true oneOf: - *4 - - *252 + - *253 committer: nullable: true oneOf: - *4 - - *252 + - *253 parents: type: array items: @@ -63817,7 +63902,7 @@ paths: type: integer files: type: array - items: &567 + items: &568 title: Diff Entry description: Diff Entry type: object @@ -63901,7 +63986,7 @@ paths: - self protected: type: boolean - protection: *493 + protection: *494 protection_url: type: string format: uri @@ -64008,7 +64093,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *449 + '301': *450 '404': *6 x-github: githubCloudOnly: false @@ -64030,15 +64115,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -64232,9 +64317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -64489,7 +64574,7 @@ paths: url: type: string format: uri - required_status_checks: &501 + required_status_checks: &502 title: Status Check Policy description: Status Check Policy type: object @@ -64565,7 +64650,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 apps: type: array items: *5 @@ -64583,7 +64668,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 apps: type: array items: *5 @@ -64641,7 +64726,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *495 + restrictions: *496 required_conversation_resolution: type: object properties: @@ -64753,9 +64838,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -64780,17 +64865,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &497 + default: &498 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -64812,17 +64897,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64841,9 +64926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -64868,17 +64953,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: &499 + default: &500 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -64974,9 +65059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65074,9 +65159,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *499 + default: *500 '422': *15 x-github: githubCloudOnly: false @@ -65097,9 +65182,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65126,17 +65211,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &500 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -65159,17 +65244,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *500 + default: *501 '404': *6 x-github: githubCloudOnly: false @@ -65189,9 +65274,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65216,17 +65301,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: - default: &502 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -65252,9 +65337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65306,9 +65391,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *502 examples: - default: *502 + default: *503 '404': *6 '422': *15 x-github: @@ -65330,9 +65415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65356,9 +65441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65392,9 +65477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65461,9 +65546,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65527,9 +65612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: content: application/json: @@ -65595,15 +65680,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -65694,9 +65779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65719,9 +65804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65731,7 +65816,7 @@ paths: type: array items: *5 examples: - default: &503 + default: &504 value: - id: 1 slug: octoapp @@ -65788,9 +65873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65824,7 +65909,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65845,9 +65930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65881,7 +65966,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65902,9 +65987,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65938,7 +66023,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65960,9 +66045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65970,9 +66055,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: false @@ -65992,9 +66077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -66030,9 +66115,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66053,9 +66138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -66091,9 +66176,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66114,9 +66199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: content: application/json: @@ -66151,9 +66236,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66175,9 +66260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -66187,7 +66272,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: false @@ -66211,9 +66296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66246,7 +66331,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66271,9 +66356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66306,7 +66391,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66331,9 +66416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66366,7 +66451,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66393,9 +66478,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66417,7 +66502,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -66531,12 +66616,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -66546,11 +66631,11 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": get: summary: Get a repository push bypass request @@ -66568,8 +66653,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66583,7 +66668,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: default: value: @@ -66621,7 +66706,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for a repository @@ -66642,12 +66727,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -66657,12 +66742,12 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *268 + default: *269 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/secret-scanning/{bypass_request_number}": get: summary: Get a bypass request for secret scanning @@ -66683,8 +66768,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66696,7 +66781,7 @@ paths: description: A single bypass request. content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -66734,7 +66819,7 @@ paths: html_url: https://github.com/octo-org/smile/exemptions/1 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review a bypass request for secret scanning description: |- @@ -66754,8 +66839,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66805,7 +66890,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-responses/secret-scanning/{bypass_response_id}": delete: summary: Dismiss a response on a bypass request for secret scanning @@ -66826,8 +66911,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_response_id in: path required: true @@ -66840,7 +66925,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/check-runs": post: summary: Create a check run @@ -66860,8 +66945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -67140,7 +67225,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: CheckRun description: A check performed on the code of a given code change type: object @@ -67251,16 +67336,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *505 - deployment: &834 + items: *506 + deployment: &835 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -67327,8 +67412,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -67540,9 +67625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *435 - *436 - - &507 + - *437 + - &508 name: check_run_id description: The unique identifier of the check run. in: path @@ -67554,9 +67639,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &508 + default: &509 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -67656,9 +67741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *435 - *436 - - *507 + - *437 + - *508 requestBody: required: true content: @@ -67898,9 +67983,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *508 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67920,9 +68005,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *435 - *436 - - *507 + - *437 + - *508 - *17 - *19 responses: @@ -67997,7 +68082,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68017,15 +68102,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *435 - *436 - - *507 + - *437 + - *508 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -68063,8 +68148,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -68086,7 +68171,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &511 + schema: &512 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -68150,7 +68235,7 @@ paths: nullable: true pull_requests: type: array - items: *505 + items: *506 nullable: true app: title: GitHub app @@ -68161,9 +68246,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - repository: *241 + properties: *177 + required: *178 + repository: *242 created_at: type: string format: date-time @@ -68172,12 +68257,12 @@ paths: type: string format: date-time nullable: true - head_commit: &860 + head_commit: &861 title: Simple Commit description: A commit. type: object - properties: *509 - required: *510 + properties: *510 + required: *511 latest_check_runs_count: type: integer check_runs_url: @@ -68205,7 +68290,7 @@ paths: - check_runs_url - pull_requests examples: - default: &512 + default: &513 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -68496,9 +68581,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68517,8 +68602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -68579,7 +68664,7 @@ paths: required: - app_id - setting - repository: *241 + repository: *242 examples: default: value: @@ -68827,9 +68912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *435 - *436 - - &513 + - *437 + - &514 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -68841,9 +68926,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68866,17 +68951,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *435 - *436 - - *513 - - &560 + - *437 + - *514 + - &561 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &561 + - &562 name: status description: Returns check runs with the specified `status`. in: query @@ -68915,9 +69000,9 @@ paths: type: integer check_runs: type: array - items: *506 + items: *507 examples: - default: &562 + default: &563 value: total_count: 1 check_runs: @@ -68999,7 +69084,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69019,15 +69104,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *435 - *436 - - *513 + - *437 + - *514 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -69054,30 +69139,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *435 - *436 - - *273 + - *437 - *274 + - *275 - *19 - *17 - - &529 + - &530 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *514 - - &530 + schema: *515 + - &531 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *100 - - *98 + - *101 - *99 + - *100 - name: sort description: The property by which to sort the results. in: query @@ -69093,13 +69178,13 @@ paths: be returned. in: query required: false - schema: *275 + schema: *276 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *515 + schema: *516 responses: '200': description: Response @@ -69110,14 +69195,14 @@ paths: items: type: object properties: - number: *112 - created_at: *119 - updated_at: *120 - url: *117 - html_url: *118 - instances_url: *516 - state: *103 - fixed_at: *122 + number: *113 + created_at: *120 + updated_at: *121 + url: *118 + html_url: *119 + instances_url: *517 + state: *104 + fixed_at: *123 dismissed_by: title: Simple User description: A GitHub user. @@ -69125,12 +69210,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *121 - dismissed_reason: *517 - dismissed_comment: *518 - rule: *519 - tool: *520 - most_recent_instance: *521 + dismissed_at: *122 + dismissed_reason: *518 + dismissed_comment: *519 + rule: *520 + tool: *521 + most_recent_instance: *522 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69253,14 +69338,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &522 + '403': &523 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69280,9 +69365,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *435 - *436 - - &523 + - *437 + - &524 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -69290,23 +69375,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *112 + schema: *113 responses: '200': description: Response content: application/json: - schema: &524 + schema: &525 type: object properties: - number: *112 - created_at: *119 - updated_at: *120 - url: *117 - html_url: *118 - instances_url: *516 - state: *103 - fixed_at: *122 + number: *113 + created_at: *120 + updated_at: *121 + url: *118 + html_url: *119 + instances_url: *517 + state: *104 + fixed_at: *123 dismissed_by: title: Simple User description: A GitHub user. @@ -69314,9 +69399,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *121 - dismissed_reason: *517 - dismissed_comment: *518 + dismissed_at: *122 + dismissed_reason: *518 + dismissed_comment: *519 rule: type: object properties: @@ -69370,8 +69455,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *520 - most_recent_instance: *521 + tool: *521 + most_recent_instance: *522 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69467,9 +69552,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69487,9 +69572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: true content: @@ -69504,8 +69589,8 @@ paths: enum: - open - dismissed - dismissed_reason: *517 - dismissed_comment: *518 + dismissed_reason: *518 + dismissed_comment: *519 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -69524,7 +69609,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -69600,14 +69685,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &528 + '403': &529 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -69627,15 +69712,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 responses: '200': description: Response content: application/json: - schema: &525 + schema: &526 type: object properties: status: @@ -69661,13 +69746,13 @@ paths: - description - started_at examples: - default: &526 + default: &527 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &527 + '400': &528 description: Bad Request content: application/json: @@ -69678,9 +69763,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69703,29 +69788,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 responses: '200': description: OK content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '202': description: Accepted content: application/json: - schema: *525 + schema: *526 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *527 + '400': *528 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -69735,7 +69820,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69757,9 +69842,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: false content: @@ -69804,12 +69889,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *527 - '403': *528 + '400': *528 + '403': *529 '404': *6 '422': description: Unprocessable Entity - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69829,13 +69914,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 - *19 - *17 - - *529 - *530 + - *531 responses: '200': description: Response @@ -69843,7 +69928,7 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: default: value: @@ -69882,9 +69967,9 @@ paths: end_column: 50 classifications: - source - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69916,29 +70001,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *435 - *436 - - *273 + - *437 - *274 + - *275 - *19 - *17 - - *530 + - *531 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *514 + schema: *515 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &533 + schema: &534 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *100 + - *101 - name: sort description: The property by which to sort the results. in: query @@ -69955,23 +70040,23 @@ paths: application/json: schema: type: array - items: &534 + items: &535 type: object properties: - ref: *514 - commit_sha: &542 + ref: *515 + commit_sha: &543 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *531 + analysis_key: *532 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *532 + category: *533 error: type: string example: error reading field xyz @@ -69995,8 +70080,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *533 - tool: *520 + sarif_id: *534 + tool: *521 deletable: type: boolean warning: @@ -70057,9 +70142,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70093,8 +70178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *435 - *436 + - *437 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70107,7 +70192,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: response: summary: application/json response @@ -70161,14 +70246,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *522 + '403': *523 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70248,8 +70333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *435 - *436 + - *437 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70302,9 +70387,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *528 + '403': *529 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70324,8 +70409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -70333,7 +70418,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 title: CodeQL Database description: A CodeQL database. type: object @@ -70444,9 +70529,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70473,8 +70558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *435 - *436 + - *437 - name: language in: path description: The language of the CodeQL database. @@ -70486,7 +70571,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -70518,11 +70603,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &569 + '302': &570 description: Found - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70542,8 +70627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *435 - *436 + - *437 - name: language in: path description: The language of the CodeQL database. @@ -70553,9 +70638,9 @@ paths: responses: '204': description: Response - '403': *528 + '403': *529 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70581,8 +70666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -70591,7 +70676,7 @@ paths: type: object additionalProperties: false properties: - language: &536 + language: &537 type: string description: The language targeted by the CodeQL query enum: @@ -70670,7 +70755,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &540 + schema: &541 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -70678,9 +70763,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *109 + controller_repo: *110 actor: *4 - query_language: *536 + query_language: *537 query_pack_url: type: string description: The download url for the query pack. @@ -70727,7 +70812,7 @@ paths: items: type: object properties: - repository: &537 + repository: &538 title: Repository Identifier description: Repository Identifier type: object @@ -70763,7 +70848,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &541 + analysis_status: &542 type: string description: The new status of the CodeQL variant analysis repository task. @@ -70795,7 +70880,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &538 + access_mismatch_repos: &539 type: object properties: repository_count: @@ -70809,7 +70894,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *537 + items: *538 required: - repository_count - repositories @@ -70831,8 +70916,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *538 - over_limit_repos: *538 + no_codeql_db_repos: *539 + over_limit_repos: *539 required: - access_mismatch_repos - not_found_repos @@ -70848,7 +70933,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &539 + value: &540 summary: Default response value: id: 1 @@ -71000,17 +71085,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *539 + value: *540 repository_lists: summary: Response for a successful variant analysis submission - value: *539 + value: *540 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71031,8 +71116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *435 - *436 + - *437 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -71044,11 +71129,11 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *539 + default: *540 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71069,7 +71154,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *435 + - *436 - name: repo in: path description: The name of the controller repository. @@ -71103,8 +71188,8 @@ paths: schema: type: object properties: - repository: *109 - analysis_status: *541 + repository: *110 + analysis_status: *542 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -71208,7 +71293,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71229,8 +71314,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -71315,9 +71400,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71336,8 +71421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -71404,7 +71489,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -71429,7 +71514,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *528 + '403': *529 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -71443,7 +71528,7 @@ paths: content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71500,8 +71585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -71509,7 +71594,7 @@ paths: schema: type: object properties: - commit_sha: *542 + commit_sha: *543 ref: type: string description: |- @@ -71567,7 +71652,7 @@ paths: schema: type: object properties: - id: *533 + id: *534 url: type: string description: The REST API URL for checking the status of the upload. @@ -71581,11 +71666,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *528 + '403': *529 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71604,8 +71689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *435 - *436 + - *437 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -71651,10 +71736,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *522 + '403': *523 '404': description: Not Found if the sarif id does not match any upload - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71676,8 +71761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -71701,7 +71786,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *104 + configuration: *105 examples: default: value: @@ -71733,7 +71818,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *132 + '204': *133 '304': *37 '403': *29 '404': *6 @@ -71758,8 +71843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *435 - *436 + - *437 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -71879,8 +71964,8 @@ paths: parameters: - *17 - *19 - - *435 - *436 + - *437 responses: '200': description: Response @@ -71896,7 +71981,7 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: default: value: @@ -72172,7 +72257,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -72194,8 +72279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -72258,22 +72343,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -72297,8 +72382,8 @@ paths: parameters: - *17 - *19 - - *435 - *436 + - *437 responses: '200': description: Response @@ -72338,7 +72423,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *91 + '500': *40 '400': *14 '401': *25 '403': *29 @@ -72362,8 +72447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *435 - *436 + - *437 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -72398,14 +72483,14 @@ paths: type: integer machines: type: array - items: &784 + items: &785 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *544 - required: *545 + properties: *545 + required: *546 examples: - default: &785 + default: &786 value: total_count: 2 machines: @@ -72422,7 +72507,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -72445,8 +72530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *435 - *436 + - *437 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -72530,8 +72615,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *435 - *436 + - *437 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -72576,7 +72661,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72597,8 +72682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -72616,7 +72701,7 @@ paths: type: integer secrets: type: array - items: &549 + items: &550 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -72636,9 +72721,9 @@ paths: - created_at - updated_at examples: - default: *546 + default: *547 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72659,16 +72744,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -72688,17 +72773,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72718,9 +72803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -72748,7 +72833,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -72772,9 +72857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -72802,8 +72887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *435 - *436 + - *437 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -72845,7 +72930,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &551 + properties: &552 login: type: string example: octocat @@ -72938,7 +73023,7 @@ paths: user_view_type: type: string example: public - required: &552 + required: &553 - avatar_url - events_url - followers_url @@ -72987,7 +73072,7 @@ paths: admin: false role_name: write headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -73012,9 +73097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '204': description: Response if user is a collaborator @@ -73060,9 +73145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 requestBody: required: false content: @@ -73088,7 +73173,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &626 + schema: &627 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -73099,7 +73184,7 @@ paths: example: 42 type: integer format: int64 - repository: *241 + repository: *242 invitee: title: Simple User description: A GitHub user. @@ -73277,7 +73362,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *218 + schema: *219 '403': *29 x-github: triggersNotification: true @@ -73317,9 +73402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '204': description: No Content when collaborator was removed from the repository. @@ -73350,9 +73435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '200': description: if user has admin permissions @@ -73372,8 +73457,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *551 - required: *552 + properties: *552 + required: *553 nullable: true required: - permission @@ -73428,8 +73513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -73439,7 +73524,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Commit Comment description: Commit Comment type: object @@ -73480,8 +73565,8 @@ paths: updated_at: type: string format: date-time - author_association: *178 - reactions: *179 + author_association: *179 + reactions: *180 required: - url - html_url @@ -73497,7 +73582,7 @@ paths: - created_at - updated_at examples: - default: &556 + default: &557 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73531,7 +73616,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73556,17 +73641,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &557 + default: &558 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73623,9 +73708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -73647,7 +73732,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -73698,9 +73783,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -73721,9 +73806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -73749,11 +73834,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -73772,9 +73857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -73806,16 +73891,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -73837,10 +73922,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -73889,8 +73974,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *435 - *436 + - *437 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -73946,9 +74031,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: &676 + default: &677 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74018,11 +74103,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '400': *14 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74042,9 +74127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *435 - *436 - - &555 + - *437 + - &556 name: commit_sha description: The SHA of the commit. in: path @@ -74091,7 +74176,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74116,9 +74201,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *435 - *436 - - *555 + - *437 + - *556 - *17 - *19 responses: @@ -74128,11 +74213,11 @@ paths: application/json: schema: type: array - items: *553 + items: *554 examples: - default: *556 + default: *557 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74158,9 +74243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *435 - *436 - - *555 + - *437 + - *556 requestBody: required: true content: @@ -74195,9 +74280,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *557 + default: *558 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74225,9 +74310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *435 - *436 - - *555 + - *437 + - *556 - *17 - *19 responses: @@ -74237,9 +74322,9 @@ paths: application/json: schema: type: array - items: *558 + items: *559 examples: - default: &668 + default: &669 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -74718,8 +74803,8 @@ paths: auto_merge: draft: false headers: - Link: *40 - '409': *108 + Link: *43 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74776,11 +74861,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *435 - *436 + - *437 - *19 - *17 - - &559 + - &560 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -74795,9 +74880,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: &655 + default: &656 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74883,9 +74968,9 @@ paths: ..... '422': *15 '404': *6 - '500': *91 - '503': *166 - '409': *108 + '500': *40 + '503': *167 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74910,11 +74995,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *435 - *436 - - *559 + - *437 - *560 - *561 + - *562 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -74948,11 +75033,11 @@ paths: type: integer check_runs: type: array - items: *506 + items: *507 examples: - default: *562 + default: *563 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74975,9 +75060,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -74985,7 +75070,7 @@ paths: schema: type: integer example: 1 - - *560 + - *561 - *17 - *19 responses: @@ -75003,7 +75088,7 @@ paths: type: integer check_suites: type: array - items: *511 + items: *512 examples: default: value: @@ -75178,7 +75263,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75203,9 +75288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - *17 - *19 responses: @@ -75272,7 +75357,7 @@ paths: type: string total_count: type: integer - repository: *241 + repository: *242 commit_url: type: string format: uri @@ -75403,9 +75488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - *17 - *19 responses: @@ -75415,7 +75500,7 @@ paths: application/json: schema: type: array - items: &729 + items: &730 title: Status description: The status of a commit. type: object @@ -75495,8 +75580,8 @@ paths: type: User site_admin: false headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75524,8 +75609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -75554,20 +75639,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *563 - required: *564 + properties: *564 + required: *565 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &565 + properties: &566 url: type: string format: uri html_url: type: string format: uri - required: &566 + required: &567 - url - html_url nullable: true @@ -75575,32 +75660,32 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true contributing: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true readme: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true issue_template: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true pull_request_template: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true required: - code_of_conduct @@ -75727,8 +75812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *435 - *436 + - *437 - *19 - *17 - name: basehead @@ -75771,8 +75856,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *554 - merge_base_commit: *554 + base_commit: *555 + merge_base_commit: *555 status: type: string enum: @@ -75792,10 +75877,10 @@ paths: example: 6 commits: type: array - items: *554 + items: *555 files: type: array - items: *567 + items: *568 required: - url - html_url @@ -76038,8 +76123,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76081,8 +76166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -76225,7 +76310,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &568 + response-if-content-is-a-file: &569 summary: Response if content is a file value: type: file @@ -76357,7 +76442,7 @@ paths: - size - type - url - - &681 + - &682 title: Content File description: Content File type: object @@ -76558,7 +76643,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *568 + response-if-content-is-a-file: *569 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -76627,7 +76712,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *569 + '302': *570 '304': *37 x-github: githubCloudOnly: false @@ -76650,8 +76735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -76744,7 +76829,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &571 title: File Commit description: File Commit type: object @@ -76896,7 +76981,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: example-for-creating-a-file: value: @@ -76950,7 +77035,7 @@ paths: schema: oneOf: - *3 - - &608 + - &609 description: Repository rule violation was detected type: object properties: @@ -76971,7 +77056,7 @@ paths: items: type: object properties: - placeholder_id: &721 + placeholder_id: &722 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -77003,8 +77088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -77065,7 +77150,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: default: value: @@ -77099,8 +77184,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *108 - '503': *166 + '409': *109 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77120,8 +77205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *435 - *436 + - *437 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -77221,7 +77306,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *40 + Link: *43 '204': description: Response if repository is empty '403': *29 @@ -77244,23 +77329,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *435 - *436 - - *290 + - *437 - *291 - *292 - *293 + - *294 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *294 - *295 - *296 - *297 - - *100 + - *298 + - *101 - name: page description: "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead." @@ -77277,10 +77362,10 @@ paths: schema: type: integer default: 30 - - *98 - *99 - - *298 + - *100 - *299 + - *300 responses: '200': description: Response @@ -77288,11 +77373,11 @@ paths: application/json: schema: type: array - items: &573 + items: &574 type: object description: A Dependabot alert. properties: - number: *112 + number: *113 state: type: string description: The state of the Dependabot alert. @@ -77307,7 +77392,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *113 + package: *114 manifest_path: type: string description: The full path to the dependency manifest file, @@ -77334,13 +77419,13 @@ paths: - unknown - direct - transitive - security_advisory: *571 - security_vulnerability: *116 - url: *117 - html_url: *118 - created_at: *119 - updated_at: *120 - dismissed_at: *121 + security_advisory: *572 + security_vulnerability: *117 + url: *118 + html_url: *119 + created_at: *120 + updated_at: *121 + dismissed_at: *122 dismissed_by: title: Simple User description: A GitHub user. @@ -77364,8 +77449,8 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *122 - auto_dismissed_at: *572 + fixed_at: *123 + auto_dismissed_at: *573 required: - number - state @@ -77595,9 +77680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *435 - *436 - - &574 + - *437 + - &575 name: alert_number in: path description: |- @@ -77606,13 +77691,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *112 + schema: *113 responses: '200': description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -77725,9 +77810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *435 - *436 - - *574 + - *437 + - *575 requestBody: required: true content: @@ -77772,7 +77857,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -77878,7 +77963,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *7 x-github: githubCloudOnly: false @@ -77901,8 +77986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -77920,7 +78005,7 @@ paths: type: integer secrets: type: array - items: &577 + items: &578 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -77951,7 +78036,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77973,16 +78058,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78002,15 +78087,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -78036,9 +78121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -78066,7 +78151,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -78090,9 +78175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -78114,8 +78199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *435 - *436 + - *437 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -78251,7 +78336,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *40 + Link: *43 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -78275,8 +78360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -78492,7 +78577,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *40 + Link: *43 '404': *6 '403': *29 x-github: @@ -78515,8 +78600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -78591,7 +78676,7 @@ paths: - version - url additionalProperties: false - metadata: &578 + metadata: &579 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -78624,7 +78709,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *578 + metadata: *579 resolved: type: object description: A collection of resolved package dependencies. @@ -78637,7 +78722,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *578 + metadata: *579 relationship: type: string description: A notation of whether a dependency is requested @@ -78766,8 +78851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *435 - *436 + - *437 - name: sha description: The SHA recorded at creation time. in: query @@ -78807,11 +78892,11 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: *580 + default: *581 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78875,8 +78960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -78957,7 +79042,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: simple-example: summary: Simple example @@ -79030,9 +79115,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *435 - *436 - - &581 + - *437 + - &582 name: deployment_id description: deployment_id parameter in: path @@ -79044,7 +79129,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: default: value: @@ -79109,9 +79194,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *435 - *436 - - *581 + - *437 + - *582 responses: '204': description: Response @@ -79133,9 +79218,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *435 - *436 - - *581 + - *437 + - *582 - *17 - *19 responses: @@ -79145,7 +79230,7 @@ paths: application/json: schema: type: array - items: &582 + items: &583 title: Deployment Status description: The status of a deployment. type: object @@ -79236,8 +79321,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -79286,7 +79371,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -79306,9 +79391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *435 - *436 - - *581 + - *437 + - *582 requestBody: required: true content: @@ -79383,9 +79468,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -79441,9 +79526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *435 - *436 - - *581 + - *437 + - *582 - name: status_id in: path required: true @@ -79454,9 +79539,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '404': *6 x-github: githubCloudOnly: false @@ -79483,12 +79568,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 - - *584 + - *437 - *585 - *586 - *587 + - *588 - *17 - *19 responses: @@ -79498,12 +79583,12 @@ paths: application/json: schema: type: array - items: *588 + items: *589 examples: - default: *589 + default: *590 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/code-scanning/{alert_number}": get: summary: Get a dismissal request for a code scanning alert for a repository @@ -79524,8 +79609,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79537,7 +79622,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -79573,7 +79658,7 @@ paths: html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review a dismissal request for a code scanning alert for a repository description: |- @@ -79593,8 +79678,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79632,7 +79717,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for a repository @@ -79653,12 +79738,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - - *590 + - *96 + - *591 - *17 - *19 responses: @@ -79668,12 +79753,12 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *592 + default: *593 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/secret-scanning/{alert_number}": get: summary: Get an alert dismissal request for secret scanning @@ -79695,8 +79780,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79708,7 +79793,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -79745,7 +79830,7 @@ paths: html_url: https://github.com/octo-org/smile/security/secret-scanning/17 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review an alert dismissal request for secret scanning description: |- @@ -79766,8 +79851,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79817,7 +79902,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dispatches": post: summary: Create a repository dispatch event @@ -79836,8 +79921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -79894,8 +79979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -79912,7 +79997,7 @@ paths: type: integer environments: type: array - items: &594 + items: &595 title: Environment description: Details of a deployment environment type: object @@ -79964,7 +80049,7 @@ paths: type: type: string example: wait_timer - wait_timer: &596 + wait_timer: &597 type: integer example: 30 description: The amount of time to delay a job after @@ -80001,11 +80086,11 @@ paths: items: type: object properties: - type: *593 + type: *594 reviewer: anyOf: - *4 - - *269 + - *270 required: - id - node_id @@ -80025,7 +80110,7 @@ paths: - id - node_id - type - deployment_branch_policy: &597 + deployment_branch_policy: &598 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -80141,9 +80226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *435 - *436 - - &595 + - *437 + - &596 name: environment_name in: path required: true @@ -80156,9 +80241,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &598 + default: &599 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -80242,9 +80327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: false content: @@ -80253,7 +80338,7 @@ paths: type: object nullable: true properties: - wait_timer: *596 + wait_timer: *597 prevent_self_review: type: boolean example: false @@ -80270,13 +80355,13 @@ paths: items: type: object properties: - type: *593 + type: *594 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *597 + deployment_branch_policy: *598 additionalProperties: false examples: default: @@ -80296,9 +80381,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *598 + default: *599 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -80322,9 +80407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *435 - *436 - - *595 + - *437 + - *596 responses: '204': description: Default response @@ -80349,9 +80434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *435 - *436 - - *595 + - *437 + - *596 - *17 - *19 responses: @@ -80369,7 +80454,7 @@ paths: example: 2 branch_policies: type: array - items: &599 + items: &600 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -80426,9 +80511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: true content: @@ -80474,9 +80559,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - example-wildcard: &600 + example-wildcard: &601 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -80518,10 +80603,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - &601 + - *437 + - *596 + - &602 name: branch_policy_id in: path required: true @@ -80533,9 +80618,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *600 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80554,10 +80639,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - *601 + - *437 + - *596 + - *602 requestBody: required: true content: @@ -80585,9 +80670,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *600 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80606,10 +80691,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - *601 + - *437 + - *596 + - *602 responses: '204': description: Response @@ -80634,9 +80719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 responses: '200': description: List of deployment protection rules @@ -80652,7 +80737,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &602 + items: &603 title: Deployment protection rule description: Deployment protection rule type: object @@ -80671,7 +80756,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &603 + app: &604 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -80770,9 +80855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 requestBody: content: application/json: @@ -80793,9 +80878,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *602 + schema: *603 examples: - default: &604 + default: &605 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -80830,9 +80915,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 - *19 - *17 responses: @@ -80851,7 +80936,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *603 + items: *604 examples: default: value: @@ -80886,10 +80971,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *435 - *436 - - *595 - - &605 + - *437 + - *596 + - &606 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -80901,9 +80986,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *604 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80924,10 +81009,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 - - *605 + - *606 responses: '204': description: Response @@ -80953,9 +81038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *435 - *436 - - *595 + - *437 + - *596 - *17 - *19 responses: @@ -80973,11 +81058,11 @@ paths: type: integer secrets: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81000,17 +81085,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *435 - *436 - - *595 + - *437 + - *596 responses: '200': description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81032,18 +81117,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *606 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81065,10 +81150,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 requestBody: required: true content: @@ -81099,7 +81184,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -81125,10 +81210,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 responses: '204': description: Default response @@ -81153,10 +81238,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *435 - *436 - - *595 - - *459 + - *437 + - *596 + - *460 - *19 responses: '200': @@ -81173,11 +81258,11 @@ paths: type: integer variables: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81198,9 +81283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: true content: @@ -81227,7 +81312,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -81252,18 +81337,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *435 - *436 - - *595 - - *254 + - *437 + - *596 + - *255 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81284,10 +81369,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *435 - *436 - - *254 - - *595 + - *437 + - *255 + - *596 requestBody: required: true content: @@ -81329,10 +81414,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *435 - *436 - - *254 - - *595 + - *437 + - *255 + - *596 responses: '204': description: Response @@ -81354,8 +81439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -81365,7 +81450,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: 200-response: value: @@ -81432,8 +81517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *435 - *436 + - *437 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -81455,7 +81540,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -81568,7 +81653,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *40 + Link: *43 '400': *14 x-github: githubCloudOnly: false @@ -81592,8 +81677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -81625,9 +81710,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 '400': *14 '422': *15 '403': *29 @@ -81648,8 +81733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -81700,7 +81785,7 @@ paths: schema: type: string '404': *6 - '409': *108 + '409': *109 '403': *29 '422': description: Validation failed @@ -81708,8 +81793,8 @@ paths: application/json: schema: oneOf: - - *218 - - *608 + - *219 + - *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81734,8 +81819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *435 - *436 + - *437 - name: file_sha in: path required: true @@ -81786,7 +81871,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81834,8 +81919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -81944,7 +82029,7 @@ paths: description: Response content: application/json: - schema: &609 + schema: &610 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -82108,7 +82193,7 @@ paths: type: string '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82158,15 +82243,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *435 - *436 - - *555 + - *437 + - *556 responses: '200': description: Response content: application/json: - schema: *609 + schema: *610 examples: default: value: @@ -82197,7 +82282,7 @@ paths: payload: verified_at: '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82222,9 +82307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *435 - *436 - - &610 + - *437 + - &611 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -82241,7 +82326,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 title: Git Reference description: Git references within a repository type: object @@ -82294,8 +82379,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *40 - '409': *108 + Link: *43 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82316,17 +82401,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: &612 + default: &613 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -82336,7 +82421,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82355,8 +82440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82385,16 +82470,16 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: *612 + default: *613 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82413,9 +82498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 requestBody: required: true content: @@ -82444,11 +82529,11 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: *612 + default: *613 '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82464,16 +82549,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82521,8 +82606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82589,7 +82674,7 @@ paths: description: Response content: application/json: - schema: &614 + schema: &615 title: Git Tag description: Metadata for a Git tag type: object @@ -82640,7 +82725,7 @@ paths: - sha - type - url - verification: *613 + verification: *614 required: - sha - url @@ -82650,7 +82735,7 @@ paths: - tag - message examples: - default: &615 + default: &616 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -82677,7 +82762,7 @@ paths: schema: type: string '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82723,8 +82808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *435 - *436 + - *437 - name: tag_sha in: path required: true @@ -82735,11 +82820,11 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82761,8 +82846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82835,7 +82920,7 @@ paths: description: Response content: application/json: - schema: &616 + schema: &617 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -82908,7 +82993,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82931,8 +83016,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *435 - *436 + - *437 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -82955,7 +83040,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *617 examples: default-response: summary: Default response @@ -82996,7 +83081,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83014,8 +83099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -83025,7 +83110,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 title: Webhook description: Webhooks for repositories. type: object @@ -83079,7 +83164,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &868 + last_response: &869 title: Hook Response type: object properties: @@ -83134,7 +83219,7 @@ paths: status: unused message: headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -83153,8 +83238,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -83206,9 +83291,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: &618 + default: &619 value: type: Repository id: 12345678 @@ -83256,17 +83341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '200': description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -83286,9 +83371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 requestBody: required: true content: @@ -83333,9 +83418,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '422': *15 '404': *6 x-github: @@ -83356,9 +83441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83382,9 +83467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '200': description: Response @@ -83411,9 +83496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *435 - *436 - - *307 + - *437 + - *308 requestBody: required: false content: @@ -83457,11 +83542,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *435 - *436 - - *307 - - *17 + - *437 - *308 + - *17 + - *309 responses: '200': description: Response @@ -83469,9 +83554,9 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: - default: *310 + default: *311 '400': *14 '422': *15 x-github: @@ -83490,18 +83575,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 - *16 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *312 + default: *313 '400': *14 '422': *15 x-github: @@ -83520,9 +83605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 - *16 responses: '202': *39 @@ -83545,9 +83630,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83572,9 +83657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83632,14 +83717,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &619 + schema: &620 title: Import description: A repository import from an external source. type: object @@ -83738,7 +83823,7 @@ paths: - html_url - authors_url examples: - default: &622 + default: &623 value: vcs: subversion use_lfs: true @@ -83754,7 +83839,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &620 + '503': &621 description: Unavailable due to service under maintenance. content: application/json: @@ -83783,8 +83868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -83832,7 +83917,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default: value: @@ -83857,7 +83942,7 @@ paths: type: string '422': *15 '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83885,8 +83970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -83935,7 +84020,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: example-1: summary: Example 1 @@ -83983,7 +84068,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84006,12 +84091,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *435 - *436 + - *437 responses: '204': description: Response - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84037,9 +84122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *435 - *436 - - &807 + - *437 + - &808 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -84053,7 +84138,7 @@ paths: application/json: schema: type: array - items: &621 + items: &622 title: Porter Author description: Porter Author type: object @@ -84107,7 +84192,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84132,8 +84217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *435 - *436 + - *437 - name: author_id in: path required: true @@ -84163,7 +84248,7 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: default: value: @@ -84176,7 +84261,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84200,8 +84285,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84242,7 +84327,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84270,8 +84355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -84298,11 +84383,11 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *622 + default: *623 '422': *15 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84325,8 +84410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84334,8 +84419,8 @@ paths: application/json: schema: *22 examples: - default: *623 - '301': *449 + default: *624 + '301': *450 '404': *6 x-github: githubCloudOnly: false @@ -84355,8 +84440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84364,12 +84449,12 @@ paths: application/json: schema: anyOf: - - *325 + - *326 - type: object properties: {} additionalProperties: false examples: - default: &625 + default: &626 value: limit: collaborators_only origin: repository @@ -84394,13 +84479,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *624 + schema: *625 examples: default: summary: Example request body @@ -84412,9 +84497,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *625 + default: *626 '409': description: Response x-github: @@ -84436,8 +84521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -84460,8 +84545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -84471,9 +84556,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: &800 + default: &801 value: - id: 1 repository: @@ -84587,7 +84672,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84604,9 +84689,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *435 - *436 - - *329 + - *437 + - *330 requestBody: required: false content: @@ -84635,7 +84720,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -84766,9 +84851,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *435 - *436 - - *329 + - *437 + - *330 responses: '204': description: Response @@ -84799,8 +84884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *435 - *436 + - *437 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -84848,7 +84933,7 @@ paths: required: false schema: type: string - - *333 + - *334 - name: sort description: What to sort results by. in: query @@ -84860,8 +84945,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -84871,9 +84956,9 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: &635 + default: &636 value: - id: 1 node_id: MDU6SXNzdWUx @@ -85020,8 +85105,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '422': *15 '404': *6 x-github: @@ -85050,8 +85135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -85133,9 +85218,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: &632 + default: &633 value: id: 1 node_id: MDU6SXNzdWUx @@ -85289,9 +85374,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *166 + '503': *167 '404': *6 - '410': *446 + '410': *447 x-github: triggersNotification: true githubCloudOnly: false @@ -85319,9 +85404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *435 - *436 - - *201 + - *437 + - *202 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -85331,7 +85416,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -85341,9 +85426,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: &634 + default: &635 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85374,7 +85459,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '422': *15 '404': *6 x-github: @@ -85401,17 +85486,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85465,9 +85550,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -85489,9 +85574,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -85509,9 +85594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -85531,9 +85616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -85559,11 +85644,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -85582,9 +85667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -85616,16 +85701,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -85647,10 +85732,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -85670,8 +85755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -85681,7 +85766,7 @@ paths: application/json: schema: type: array - items: &631 + items: &632 title: Issue Event description: Issue Event type: object @@ -85724,8 +85809,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true label: title: Issue Event Label @@ -85769,7 +85854,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *269 + requested_team: *270 dismissed_review: title: Issue Event Dismissed Review type: object @@ -85834,7 +85919,7 @@ paths: required: - from - to - author_association: *178 + author_association: *179 lock_reason: type: string nullable: true @@ -85847,8 +85932,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -86014,7 +86099,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -86032,8 +86117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *435 - *436 + - *437 - name: event_id in: path required: true @@ -86044,7 +86129,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -86237,7 +86322,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *446 + '410': *447 '403': *29 x-github: githubCloudOnly: false @@ -86271,9 +86356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *435 - *436 - - &633 + - *437 + - &634 name: issue_number description: The number that identifies the issue. in: path @@ -86285,12 +86370,12 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '404': *6 - '410': *446 + '410': *447 '304': *37 x-github: githubCloudOnly: false @@ -86315,9 +86400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -86421,15 +86506,15 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 '422': *15 - '503': *166 + '503': *167 '403': *29 - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86447,9 +86532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -86475,9 +86560,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86493,9 +86578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: content: application/json: @@ -86520,9 +86605,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86544,9 +86629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: assignee in: path required: true @@ -86586,10 +86671,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *435 - *436 - - *633 - - *181 + - *437 + - *634 + - *182 - *17 - *19 responses: @@ -86599,13 +86684,13 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *634 + default: *635 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86634,9 +86719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -86658,16 +86743,16 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -86695,9 +86780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86707,14 +86792,14 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86742,9 +86827,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -86766,17 +86851,17 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *449 + '301': *450 '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -86807,9 +86892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -86821,15 +86906,15 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 x-github: triggersNotification: true githubCloudOnly: false @@ -86855,9 +86940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86867,14 +86952,14 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86891,9 +86976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86907,7 +86992,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &638 + - &639 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -86938,8 +87023,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 label: type: object properties: @@ -86961,7 +87046,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &639 + - &640 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -86992,8 +87077,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 label: type: object properties: @@ -87081,8 +87166,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 assigner: *4 required: @@ -87097,7 +87182,7 @@ paths: - performed_via_github_app - assignee - assigner - - &640 + - &641 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -87128,8 +87213,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 milestone: type: object properties: @@ -87148,7 +87233,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &641 + - &642 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -87179,8 +87264,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 milestone: type: object properties: @@ -87199,7 +87284,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &642 + - &643 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -87230,8 +87315,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 rename: type: object properties: @@ -87253,7 +87338,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &643 + - &644 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -87284,10 +87369,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 review_requester: *4 - requested_team: *269 + requested_team: *270 requested_reviewer: *4 required: - review_requester @@ -87300,7 +87385,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &644 + - &645 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -87331,10 +87416,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 review_requester: *4 - requested_team: *269 + requested_team: *270 requested_reviewer: *4 required: - review_requester @@ -87347,7 +87432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &645 + - &646 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -87378,8 +87463,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 dismissed_review: type: object properties: @@ -87407,7 +87492,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &646 + - &647 title: Locked Issue Event description: Locked Issue Event type: object @@ -87438,8 +87523,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 lock_reason: type: string example: '"off-topic"' @@ -87455,7 +87540,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &647 + - &648 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -87486,8 +87571,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87521,7 +87606,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &649 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -87552,8 +87637,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87587,7 +87672,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &650 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -87618,8 +87703,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87653,7 +87738,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &651 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -87743,8 +87828,8 @@ paths: name: label color: red headers: - Link: *40 - '410': *446 + Link: *43 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87761,9 +87846,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -87773,7 +87858,7 @@ paths: application/json: schema: type: array - items: &636 + items: &637 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -87820,7 +87905,7 @@ paths: - color - default examples: - default: &637 + default: &638 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87837,10 +87922,10 @@ paths: color: a2eeef default: false headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87857,9 +87942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -87918,12 +88003,12 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 - '301': *449 + default: *638 + '301': *450 '404': *6 - '410': *446 + '410': *447 '422': *15 x-github: githubCloudOnly: false @@ -87940,9 +88025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -88002,12 +88087,12 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 - '301': *449 + default: *638 + '301': *450 '404': *6 - '410': *446 + '410': *447 '422': *15 x-github: githubCloudOnly: false @@ -88024,15 +88109,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '204': description: Response - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88051,9 +88136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: name in: path required: true @@ -88066,7 +88151,7 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: default: value: @@ -88077,9 +88162,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88099,9 +88184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -88129,7 +88214,7 @@ paths: '204': description: Response '403': *29 - '410': *446 + '410': *447 '404': *6 '422': *15 x-github: @@ -88147,9 +88232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '204': description: Response @@ -88179,20 +88264,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '200': description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88209,9 +88294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -88237,13 +88322,13 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88261,9 +88346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88295,16 +88380,16 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -88326,10 +88411,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *435 - *436 - - *633 - - *427 + - *437 + - *634 + - *428 responses: '204': description: Response @@ -88358,9 +88443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88382,9 +88467,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -88417,9 +88502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -88429,13 +88514,13 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88463,9 +88548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88492,16 +88577,16 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -88521,9 +88606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88554,13 +88639,13 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 '403': *29 '404': *6 '422': *7 - '503': *166 + '503': *167 x-github: triggersNotification: true githubCloudOnly: false @@ -88578,9 +88663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -88595,7 +88680,6 @@ paths: description: Timeline Event type: object anyOf: - - *638 - *639 - *640 - *641 @@ -88608,6 +88692,7 @@ paths: - *648 - *649 - *650 + - *651 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -88650,7 +88735,7 @@ paths: issue_url: type: string format: uri - author_association: *178 + author_association: *179 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -88660,9 +88745,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - event - actor @@ -88693,7 +88778,7 @@ paths: properties: type: type: string - issue: *191 + issue: *192 required: - event - created_at @@ -88893,7 +88978,7 @@ paths: type: string body_text: type: string - author_association: *178 + author_association: *179 required: - event - id @@ -88916,7 +89001,7 @@ paths: type: string comments: type: array - items: &670 + items: &671 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -89005,7 +89090,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *178 + author_association: *179 _links: type: object properties: @@ -89089,7 +89174,7 @@ paths: enum: - line - file - reactions: *179 + reactions: *180 body_html: type: string example: '"

comment body

"' @@ -89125,7 +89210,7 @@ paths: type: string comments: type: array - items: *553 + items: *554 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -89156,8 +89241,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 required: - id @@ -89200,8 +89285,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 required: - id @@ -89244,8 +89329,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 state_reason: type: string nullable: true @@ -89412,9 +89497,9 @@ paths: type: User site_admin: true headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89431,8 +89516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -89442,7 +89527,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -89492,7 +89577,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89508,8 +89593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -89545,9 +89630,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: &652 + default: &653 value: id: 1 key: ssh-rsa AAA... @@ -89581,9 +89666,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *435 - *436 - - &653 + - *437 + - &654 name: key_id description: The unique identifier of the key. in: path @@ -89595,9 +89680,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: *652 + default: *653 '404': *6 x-github: githubCloudOnly: false @@ -89615,9 +89700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *435 - *436 - - *653 + - *437 + - *654 responses: '204': description: Response @@ -89637,8 +89722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -89648,11 +89733,11 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 + default: *638 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -89671,8 +89756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -89708,9 +89793,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: - default: &654 + default: &655 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89742,8 +89827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89754,9 +89839,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: - default: *654 + default: *655 '404': *6 x-github: githubCloudOnly: false @@ -89773,8 +89858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89813,7 +89898,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -89839,8 +89924,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89866,8 +89951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -89903,8 +89988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *435 - *436 + - *437 responses: '202': *39 '403': @@ -89932,8 +90017,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -89959,9 +90044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *435 - *436 - - *529 + - *437 + - *530 responses: '200': description: Response @@ -90023,8 +90108,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true required: - _links @@ -90106,8 +90191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90172,8 +90257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90207,9 +90292,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *554 + schema: *555 examples: - default: *655 + default: *656 '204': description: Response when already merged '404': @@ -90234,8 +90319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *435 - *436 + - *437 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -90276,12 +90361,12 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 examples: default: value: @@ -90320,7 +90405,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -90337,8 +90422,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90378,9 +90463,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -90439,9 +90524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *435 - *436 - - &658 + - *437 + - &659 name: milestone_number description: The number that identifies the milestone. in: path @@ -90453,9 +90538,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 x-github: githubCloudOnly: false @@ -90472,9 +90557,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 requestBody: required: false content: @@ -90512,9 +90597,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90530,9 +90615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 responses: '204': description: Response @@ -90553,9 +90638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 - *17 - *19 responses: @@ -90565,11 +90650,11 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 + default: *638 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90586,12 +90671,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *435 - *436 - - *659 + - *437 - *660 - - *181 - *661 + - *182 + - *662 - *17 - *19 responses: @@ -90601,11 +90686,11 @@ paths: application/json: schema: type: array - items: *204 + items: *205 examples: - default: *662 + default: *663 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90627,8 +90712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -90686,14 +90771,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &663 + schema: &664 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -90818,7 +90903,7 @@ paths: - custom_404 - public examples: - default: &664 + default: &665 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -90859,8 +90944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90914,11 +90999,11 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *664 + default: *665 '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90939,8 +91024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91026,7 +91111,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91047,14 +91132,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *435 - *436 + - *437 responses: '204': description: Response '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91074,8 +91159,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -91085,7 +91170,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Page Build description: Page Build type: object @@ -91160,7 +91245,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91179,8 +91264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *435 - *436 + - *437 responses: '201': description: Response @@ -91225,16 +91310,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -91282,8 +91367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *435 - *436 + - *437 - name: build_id in: path required: true @@ -91294,9 +91379,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91316,8 +91401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91422,9 +91507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *435 - *436 - - &667 + - *437 + - &668 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -91482,11 +91567,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *435 - *436 - - *667 + - *437 + - *668 responses: - '204': *132 + '204': *133 '404': *6 x-github: githubCloudOnly: false @@ -91511,8 +91596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -91743,7 +91828,7 @@ paths: description: Empty response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -91770,8 +91855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Private vulnerability reporting status @@ -91808,10 +91893,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *435 - *436 + - *437 responses: - '204': *132 + '204': *133 '422': *14 x-github: githubCloudOnly: false @@ -91830,10 +91915,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *435 - *436 + - *437 responses: - '204': *132 + '204': *133 '422': *14 x-github: githubCloudOnly: false @@ -91854,8 +91939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *435 - *436 + - *437 - name: state description: Indicates the state of the projects to return. in: query @@ -91876,7 +91961,7 @@ paths: application/json: schema: type: array - items: *364 + items: *365 examples: default: value: @@ -91912,11 +91997,11 @@ paths: created_at: '2011-04-10T20:09:31Z' updated_at: '2014-03-03T18:58:10Z' headers: - Link: *40 + Link: *43 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -91939,8 +92024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91966,13 +92051,13 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: *445 + default: *446 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -91995,8 +92080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -92004,7 +92089,7 @@ paths: application/json: schema: type: array - items: *378 + items: *379 examples: default: value: @@ -92035,8 +92120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -92048,7 +92133,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *378 + items: *379 required: - properties examples: @@ -92098,8 +92183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *435 - *436 + - *437 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -92159,11 +92244,11 @@ paths: application/json: schema: type: array - items: *558 + items: *559 examples: - default: *668 + default: *669 headers: - Link: *40 + Link: *43 '304': *37 '422': *15 x-github: @@ -92193,8 +92278,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -92259,7 +92344,7 @@ paths: description: Response content: application/json: - schema: &672 + schema: &673 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -92370,8 +92455,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true active_lock_reason: type: string @@ -92416,7 +92501,7 @@ paths: nullable: true requested_teams: type: array - items: *402 + items: *403 nullable: true head: type: object @@ -92425,7 +92510,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: *4 @@ -92442,7 +92527,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: *4 @@ -92455,14 +92540,14 @@ paths: _links: type: object properties: - comments: *372 - commits: *372 - statuses: *372 - html: *372 - issue: *372 - review_comments: *372 - review_comment: *372 - self: *372 + comments: *373 + commits: *373 + statuses: *373 + html: *373 + issue: *373 + review_comments: *373 + review_comment: *373 + self: *373 required: - comments - commits @@ -92472,8 +92557,8 @@ paths: - review_comments - review_comment - self - author_association: *178 - auto_merge: *669 + author_association: *179 + auto_merge: *670 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -92565,7 +92650,7 @@ paths: - merged_by - review_comments examples: - default: &673 + default: &674 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -93092,8 +93177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *435 - *436 + - *437 - name: sort in: query required: false @@ -93112,7 +93197,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -93122,9 +93207,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: &675 + default: &676 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -93176,7 +93261,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93201,17 +93286,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: &671 + default: &672 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -93286,9 +93371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -93310,9 +93395,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93328,9 +93413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -93351,9 +93436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -93379,11 +93464,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -93402,9 +93487,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -93436,16 +93521,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -93467,10 +93552,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -93513,9 +93598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *435 - *436 - - &674 + - *437 + - &675 name: pull_number description: The number that identifies the pull request. in: path @@ -93528,9 +93613,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 '304': *37 '404': *6 '406': @@ -93538,8 +93623,8 @@ paths: content: application/json: schema: *3 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93565,9 +93650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -93609,9 +93694,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 '422': *15 '403': *29 x-github: @@ -93633,9 +93718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -93695,21 +93780,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -93735,10 +93820,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *435 - *436 - - *674 - - *201 + - *437 + - *675 + - *202 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -93748,7 +93833,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -93758,11 +93843,11 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *675 + default: *676 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93793,9 +93878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -93900,7 +93985,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: example-for-a-multi-line-comment: value: @@ -93988,10 +94073,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *435 - *436 - - *674 - - *190 + - *437 + - *675 + - *191 requestBody: required: true content: @@ -94013,7 +94098,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: default: value: @@ -94099,9 +94184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -94111,11 +94196,11 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: *676 + default: *677 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94143,9 +94228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -94155,7 +94240,7 @@ paths: application/json: schema: type: array - items: *567 + items: *568 examples: default: value: @@ -94171,10 +94256,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *40 + Link: *43 '422': *15 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94193,9 +94278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *435 - *436 - - *674 + - *437 + - *675 responses: '204': description: Response if pull request has been merged @@ -94218,9 +94303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -94331,9 +94416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 responses: '200': description: Response @@ -94349,7 +94434,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 required: - users - teams @@ -94390,7 +94475,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94408,9 +94493,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -94447,7 +94532,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -94983,9 +95068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -95019,7 +95104,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -95524,9 +95609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -95536,7 +95621,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -95605,7 +95690,7 @@ paths: type: string body_text: type: string - author_association: *178 + author_association: *179 required: - id - node_id @@ -95654,7 +95739,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95687,9 +95772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -95775,9 +95860,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &679 + default: &680 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95840,10 +95925,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - &678 + - *437 + - *675 + - &679 name: review_id description: The unique identifier of the review. in: path @@ -95855,9 +95940,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &680 + default: &681 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95916,10 +96001,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -95942,7 +96027,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -96004,18 +96089,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 responses: '200': description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *679 + default: *680 '422': *7 '404': *6 x-github: @@ -96042,10 +96127,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 - *17 - *19 responses: @@ -96124,13 +96209,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *178 + author_association: *179 _links: type: object properties: - self: *372 - html: *372 - pull_request: *372 + self: *373 + html: *373 + pull_request: *373 required: - self - html @@ -96139,7 +96224,7 @@ paths: type: string body_html: type: string - reactions: *179 + reactions: *180 side: description: The side of the first line of the range for a multi-line comment. @@ -96251,7 +96336,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -96280,10 +96365,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -96311,7 +96396,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -96374,10 +96459,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -96412,9 +96497,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *680 + default: *681 '404': *6 '422': *7 '403': *29 @@ -96436,9 +96521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -96501,8 +96586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *435 - *436 + - *437 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -96515,9 +96600,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: &682 + default: &683 value: type: file encoding: base64 @@ -96559,8 +96644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *435 - *436 + - *437 - name: dir description: The alternate path to look for a README file in: path @@ -96580,9 +96665,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *6 '422': *15 x-github: @@ -96604,8 +96689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -96615,7 +96700,7 @@ paths: application/json: schema: type: array - items: &683 + items: &684 title: Release description: A release. type: object @@ -96686,7 +96771,7 @@ paths: author: *4 assets: type: array - items: &684 + items: &685 title: Release Asset description: Data related to a release. type: object @@ -96761,7 +96846,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *179 + reactions: *180 required: - assets_url - upload_url @@ -96853,7 +96938,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -96873,8 +96958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -96950,9 +97035,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: &687 + default: &688 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -97057,9 +97142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *435 - *436 - - &685 + - *437 + - &686 name: asset_id description: The unique identifier of the asset. in: path @@ -97071,9 +97156,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: &686 + default: &687 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -97108,7 +97193,7 @@ paths: type: User site_admin: false '404': *6 - '302': *569 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97124,9 +97209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *435 - *436 - - *685 + - *437 + - *686 requestBody: required: false content: @@ -97154,9 +97239,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *686 + default: *687 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97172,9 +97257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *435 - *436 - - *685 + - *437 + - *686 responses: '204': description: Response @@ -97198,8 +97283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -97284,16 +97369,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97310,8 +97395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *435 - *436 + - *437 - name: tag description: tag parameter in: path @@ -97324,9 +97409,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '404': *6 x-github: githubCloudOnly: false @@ -97348,9 +97433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *435 - *436 - - &688 + - *437 + - &689 name: release_id description: The unique identifier of the release. in: path @@ -97364,9 +97449,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '401': description: Unauthorized x-github: @@ -97384,9 +97469,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 requestBody: required: false content: @@ -97450,9 +97535,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '404': description: Not Found if the discussion category name is invalid content: @@ -97473,9 +97558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 responses: '204': description: Response @@ -97495,9 +97580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *435 - *436 - - *688 + - *437 + - *689 - *17 - *19 responses: @@ -97507,7 +97592,7 @@ paths: application/json: schema: type: array - items: *684 + items: *685 examples: default: value: @@ -97544,7 +97629,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97589,9 +97674,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *435 - *436 - - *688 + - *437 + - *689 - name: name in: query required: true @@ -97617,7 +97702,7 @@ paths: description: Response for successful upload content: application/json: - schema: *684 + schema: *685 examples: response-for-successful-upload: value: @@ -97672,9 +97757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -97698,11 +97783,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -97721,9 +97806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 requestBody: required: true content: @@ -97753,16 +97838,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -97784,10 +97869,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *435 - *436 - - *688 - - *427 + - *437 + - *689 + - *428 responses: '204': description: Response @@ -97811,9 +97896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 - *17 - *19 responses: @@ -97829,8 +97914,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *141 - - &689 + - *142 + - &690 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -97849,66 +97934,66 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *142 - - *689 - allOf: - *143 - - *689 + - *690 - allOf: - *144 - - *689 - - allOf: - *690 - - *689 - allOf: - *145 - - *689 + - *690 + - allOf: + - *691 + - *690 - allOf: - *146 - - *689 + - *690 - allOf: - *147 - - *689 + - *690 - allOf: - *148 - - *689 + - *690 - allOf: - *149 - - *689 + - *690 - allOf: - *150 - - *689 + - *690 - allOf: - *151 - - *689 + - *690 - allOf: - *152 - - *689 + - *690 - allOf: - *153 - - *689 + - *690 - allOf: - *154 - - *689 + - *690 - allOf: - *155 - - *689 + - *690 - allOf: - *156 - - *689 + - *690 - allOf: - *157 - - *689 + - *690 - allOf: - *158 - - *689 + - *690 - allOf: - *159 - - *689 + - *690 - allOf: - *160 - - *689 + - *690 + - allOf: + - *161 + - *690 examples: default: value: @@ -97947,8 +98032,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - *17 - *19 - name: includes_parents @@ -97959,7 +98044,7 @@ paths: schema: type: boolean default: true - - *691 + - *692 responses: '200': description: Response @@ -97967,7 +98052,7 @@ paths: application/json: schema: type: array - items: *161 + items: *162 examples: default: value: @@ -97998,7 +98083,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -98014,8 +98099,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 requestBody: description: Request body required: true @@ -98035,16 +98120,16 @@ paths: - tag - push default: branch - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *135 + items: *141 + conditions: *136 rules: type: array description: An array of rules within the ruleset. - items: *692 + items: *693 required: - name - enforcement @@ -98075,9 +98160,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: &701 + default: &702 value: id: 42 name: super cool ruleset @@ -98110,7 +98195,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -98124,12 +98209,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *435 - *436 - - *693 - - *95 + - *437 - *694 + - *96 - *695 + - *696 - *17 - *19 responses: @@ -98137,11 +98222,11 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98160,19 +98245,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *435 - *436 - - *698 + - *437 + - *699 responses: '200': description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *700 + default: *701 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98198,8 +98283,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98219,11 +98304,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *701 + default: *702 '404': *6 - '500': *91 + '500': *40 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -98239,8 +98324,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98265,16 +98350,16 @@ paths: - branch - tag - push - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *135 + items: *141 + conditions: *136 rules: description: An array of rules within the ruleset. type: array - items: *692 + items: *693 examples: default: value: @@ -98302,11 +98387,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *701 + default: *702 '404': *6 - '500': *91 + '500': *40 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -98322,8 +98407,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98334,7 +98419,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -98346,8 +98431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *435 - *436 + - *437 - *17 - *19 - name: ruleset_id @@ -98363,11 +98448,11 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *387 + default: *388 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98384,8 +98469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98403,7 +98488,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -98436,7 +98521,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98458,21 +98543,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *435 - *436 - - *389 + - *437 - *390 - *391 - *392 - - *100 + - *393 + - *101 - *19 - *17 - - *702 - *703 - - *393 + - *704 - *394 - *395 - *396 + - *397 responses: '200': description: Response @@ -98480,11 +98565,11 @@ paths: application/json: schema: type: array - items: &707 + items: &708 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -98492,15 +98577,15 @@ paths: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *704 - resolution: *705 + state: *705 + resolution: *706 resolved_at: type: string format: date-time @@ -98596,7 +98681,7 @@ paths: pull request. ' - oneOf: *706 + oneOf: *707 nullable: true has_more_locations: type: boolean @@ -98697,7 +98782,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98719,16 +98804,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 - - *396 + - *437 + - *524 + - *397 responses: '200': description: Response content: application/json: - schema: *707 + schema: *708 examples: default: value: @@ -98759,7 +98844,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98780,9 +98865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: true content: @@ -98790,8 +98875,8 @@ paths: schema: type: object properties: - state: *704 - resolution: *705 + state: *705 + resolution: *706 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -98809,7 +98894,7 @@ paths: description: Response content: application/json: - schema: *707 + schema: *708 examples: default: value: @@ -98862,7 +98947,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -98884,9 +98969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 - *19 - *17 responses: @@ -98897,7 +98982,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &890 + items: &891 type: object properties: type: @@ -98923,7 +99008,6 @@ paths: example: commit details: oneOf: - - *708 - *709 - *710 - *711 @@ -98936,6 +99020,7 @@ paths: - *718 - *719 - *720 + - *721 examples: default: value: @@ -98995,11 +99080,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *40 + Link: *43 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99021,8 +99106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99030,14 +99115,14 @@ paths: schema: type: object properties: - reason: &722 + reason: &723 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *721 + placeholder_id: *722 required: - reason - placeholder_id @@ -99054,7 +99139,7 @@ paths: schema: type: object properties: - reason: *722 + reason: *723 expire_at: type: string format: date-time @@ -99077,7 +99162,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -99097,13 +99182,13 @@ paths: 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: - - *435 - *436 + - *437 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *166 + '503': *167 '200': description: Response content: @@ -99113,7 +99198,7 @@ paths: properties: incremental_scans: type: array - items: &723 + items: &724 description: Information on a single scan performed by secret scanning on the repository type: object @@ -99139,15 +99224,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *723 + items: *724 backfill_scans: type: array - items: *723 + items: *724 custom_pattern_backfill_scans: type: array items: allOf: - - *723 + - *724 - type: object properties: pattern_name: @@ -99217,9 +99302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *435 - *436 - - *100 + - *437 + - *101 - name: sort description: The property to sort the results by. in: query @@ -99231,8 +99316,8 @@ paths: - updated - published default: created - - *98 - *99 + - *100 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -99262,9 +99347,9 @@ paths: application/json: schema: type: array - items: *724 + items: *725 examples: - default: *725 + default: *726 '400': *14 '404': *6 x-github: @@ -99287,8 +99372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99361,7 +99446,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 required: - login - type @@ -99448,9 +99533,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: &727 + default: &728 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -99683,8 +99768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99788,7 +99873,7 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: default: value: @@ -99935,17 +100020,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '200': description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: *727 + default: *728 '403': *29 '404': *6 x-github: @@ -99969,9 +100054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 requestBody: required: true content: @@ -100044,7 +100129,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 required: - login - type @@ -100130,17 +100215,17 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: *727 - add_credit: *727 + default: *728 + add_credit: *728 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *218 + schema: *219 examples: invalid_state_transition: value: @@ -100171,9 +100256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '202': *39 '400': *14 @@ -100200,17 +100285,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '202': description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 '400': *14 '422': *15 '403': *29 @@ -100236,8 +100321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -100314,7 +100399,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -100336,8 +100421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -100346,7 +100431,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -100359,7 +100444,7 @@ paths: - 1124 - -435 '202': *39 - '204': *132 + '204': *133 '422': description: Repository contains more than 10,000 commits x-github: @@ -100379,8 +100464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -100429,7 +100514,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100456,8 +100541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -100531,7 +100616,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100553,8 +100638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *435 - *436 + - *437 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -100708,8 +100793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *435 - *436 + - *437 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -100719,7 +100804,7 @@ paths: application/json: schema: type: array - items: *728 + items: *729 examples: default: value: @@ -100732,7 +100817,7 @@ paths: - - 0 - 2 - 21 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100752,8 +100837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *435 - *436 + - *437 - name: sha in: path required: true @@ -100807,7 +100892,7 @@ paths: description: Response content: application/json: - schema: *729 + schema: *730 examples: default: value: @@ -100861,8 +100946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -100874,9 +100959,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100894,14 +100979,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *435 - *436 + - *437 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &730 + schema: &731 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -100969,8 +101054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -100996,7 +101081,7 @@ paths: description: Response content: application/json: - schema: *730 + schema: *731 examples: default: value: @@ -101023,8 +101108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -101044,8 +101129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -101101,7 +101186,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101124,8 +101209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101133,7 +101218,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Tag protection description: Tag protection type: object @@ -101185,8 +101270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101209,7 +101294,7 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: default: value: @@ -101240,8 +101325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *435 - *436 + - *437 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -101278,8 +101363,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *435 - *436 + - *437 - name: ref in: path required: true @@ -101315,8 +101400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -101326,11 +101411,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -101348,8 +101433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *435 - *436 + - *437 - *19 - *17 responses: @@ -101357,7 +101442,7 @@ paths: description: Response content: application/json: - schema: &732 + schema: &733 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -101369,7 +101454,7 @@ paths: required: - names examples: - default: &733 + default: &734 value: names: - octocat @@ -101392,8 +101477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101424,9 +101509,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: *733 + default: *734 '404': *6 '422': *7 x-github: @@ -101447,9 +101532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *435 - *436 - - &734 + - *437 + - &735 name: per description: The time frame to display results for. in: query @@ -101478,7 +101563,7 @@ paths: example: 128 clones: type: array - items: &735 + items: &736 title: Traffic type: object properties: @@ -101565,8 +101650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101656,8 +101741,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101717,9 +101802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *435 - *436 - - *734 + - *437 + - *735 responses: '200': description: Response @@ -101738,7 +101823,7 @@ paths: example: 3782 views: type: array - items: *735 + items: *736 required: - uniques - count @@ -101815,8 +101900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101852,7 +101937,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: default: value: @@ -102090,8 +102175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -102114,8 +102199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -102137,8 +102222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -102164,8 +102249,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *435 - *436 + - *437 - name: ref in: path required: true @@ -102257,9 +102342,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -102300,7 +102385,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -102410,7 +102495,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &743 + - &744 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -102419,7 +102504,7 @@ paths: schema: type: string example: members - - &748 + - &749 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -102430,7 +102515,7 @@ paths: default: 1 format: int32 example: 1 - - &749 + - &750 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -102472,7 +102557,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &738 + items: &739 allOf: - type: object required: @@ -102547,7 +102632,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: &750 + meta: &751 type: object description: The metadata associated with the creation/updates to the user. @@ -102607,30 +102692,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &739 + '400': &740 description: Bad request content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '401': *737 - '403': &740 + schema: *737 + '401': *738 + '403': &741 description: Permission denied - '429': &741 + '429': &742 description: Too many requests content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '500': &742 + schema: *737 + '500': &743 description: Internal server error content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 + schema: *737 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102654,7 +102739,7 @@ paths: required: true content: application/json: - schema: &746 + schema: &747 type: object required: - schemas @@ -102714,9 +102799,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *738 + schema: *739 examples: - group: &744 + group: &745 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -102735,13 +102820,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': *739 - '401': *737 - '403': *740 - '409': &747 + '400': *740 + '401': *738 + '403': *741 + '409': &748 description: Duplicate record detected - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102758,7 +102843,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: - - &745 + - &746 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -102766,22 +102851,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *743 + - *744 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *738 + schema: *739 examples: - default: *744 - '400': *739 - '401': *737 - '403': *740 + default: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102800,13 +102885,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: - - *745 + - *746 - *41 requestBody: required: true content: application/json: - schema: *746 + schema: *747 examples: group: summary: Group @@ -102832,17 +102917,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *738 + schema: *739 examples: - group: *744 - groupWithMembers: *744 - '400': *739 - '401': *737 - '403': *740 + group: *745 + groupWithMembers: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102866,13 +102951,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: - - *745 + - *746 - *41 requestBody: required: true content: application/json: - schema: &757 + schema: &758 type: object required: - Operations @@ -102932,17 +103017,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *738 + schema: *739 examples: - updateGroup: *744 - addMembers: *744 - '400': *739 - '401': *737 - '403': *740 + updateGroup: *745 + addMembers: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102958,17 +103043,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: - - *745 + - *746 - *41 responses: '204': description: Group was deleted, no content - '400': *739 - '401': *737 - '403': *740 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103002,8 +103087,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *748 - *749 + - *750 - *41 responses: '200': @@ -103036,7 +103121,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &752 + items: &753 allOf: - type: object required: @@ -103115,7 +103200,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &751 + roles: &752 type: array description: The roles assigned to the user. items: @@ -103171,7 +103256,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *750 + meta: *751 startIndex: type: integer description: A starting index for the returned page @@ -103208,11 +103293,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *739 - '401': *737 - '403': *740 - '429': *741 - '500': *742 + '400': *740 + '401': *738 + '403': *741 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103236,7 +103321,7 @@ paths: required: true content: application/json: - schema: &755 + schema: &756 type: object required: - schemas @@ -103318,9 +103403,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *751 + roles: *752 examples: - user: &756 + user: &757 summary: User value: schemas: @@ -103367,9 +103452,9 @@ paths: description: User has been created content: application/scim+json: - schema: *752 + schema: *753 examples: - user: &753 + user: &754 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -103395,13 +103480,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: *753 - '400': *739 - '401': *737 - '403': *740 - '409': *747 - '429': *741 - '500': *742 + enterpriseOwner: *754 + '400': *740 + '401': *738 + '403': *741 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103418,7 +103503,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: - - &754 + - &755 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -103431,15 +103516,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *752 + schema: *753 examples: - default: *753 - '400': *739 - '401': *737 - '403': *740 + default: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103461,30 +103546,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: - - *754 + - *755 - *41 requestBody: required: true content: application/json: - schema: *755 + schema: *756 examples: - user: *756 + user: *757 responses: '200': description: User was updated content: application/scim+json: - schema: *752 + schema: *753 examples: - user: *753 - '400': *739 - '401': *737 - '403': *740 + user: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103519,13 +103604,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: - - *754 + - *755 - *41 requestBody: required: true content: application/json: - schema: *757 + schema: *758 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -103565,18 +103650,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *752 + schema: *753 examples: - userMultiValuedProperties: *753 - userSingleValuedProperties: *753 - disableUser: *753 - '400': *739 - '401': *737 - '403': *740 + userMultiValuedProperties: *754 + userSingleValuedProperties: *754 + disableUser: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103596,17 +103681,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: - - *754 + - *755 - *41 responses: '204': description: User was deleted, no content - '400': *739 - '401': *737 - '403': *740 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103639,7 +103724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *76 + - *78 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -103693,7 +103778,7 @@ paths: example: 1 Resources: type: array - items: &758 + items: &759 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -103924,22 +104009,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': *37 - '404': &759 + '404': &760 description: Resource not found content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '403': &760 + schema: *737 + '403': &761 description: Forbidden content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '400': *739 - '429': *741 + schema: *737 + '400': *740 + '429': *742 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -103959,15 +104044,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *76 + - *78 responses: '201': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: &761 + default: &762 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -103990,17 +104075,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': *37 - '404': *759 - '403': *760 - '500': *742 + '404': *760 + '403': *761 + '500': *743 '409': description: Conflict content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '400': *739 + schema: *737 + '400': *740 requestBody: required: true content: @@ -104097,18 +104182,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 - '404': *759 - '403': *760 + default: *762 + '404': *760 + '403': *761 '304': *37 x-github: githubCloudOnly: true @@ -104131,19 +104216,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '304': *37 - '404': *759 - '403': *760 + '404': *760 + '403': *761 requestBody: required: true content: @@ -104255,20 +104340,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '304': *37 - '404': *759 - '403': *760 - '400': *739 + '404': *760 + '403': *761 + '400': *740 '429': description: Response content: @@ -104358,13 +104443,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *76 - - *754 + - *78 + - *755 responses: '204': description: Response - '404': *759 - '403': *760 + '404': *760 + '403': *761 '304': *37 x-github: githubCloudOnly: true @@ -104479,7 +104564,7 @@ paths: html_url: type: string format: uri - repository: *241 + repository: *242 score: type: number file_size: @@ -104497,7 +104582,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &762 + text_matches: &763 title: Search Result Text Matches type: array items: @@ -104611,7 +104696,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *166 + '503': *167 '422': *15 '403': *29 x-github: @@ -104660,7 +104745,7 @@ paths: enum: - author-date - committer-date - - &763 + - &764 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 @@ -104731,7 +104816,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true comment_count: type: integer @@ -104751,7 +104836,7 @@ paths: url: type: string format: uri - verification: *613 + verification: *614 required: - author - committer @@ -104770,7 +104855,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true parents: type: array @@ -104783,12 +104868,12 @@ paths: type: string sha: type: string - repository: *241 + repository: *242 score: type: number node_id: type: string - text_matches: *762 + text_matches: *763 required: - sha - node_id @@ -104971,7 +105056,7 @@ paths: - interactions - created - updated - - *763 + - *764 - *17 - *19 - name: advanced_search @@ -105068,11 +105153,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: type: string state_reason: @@ -105089,8 +105174,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true comments: type: integer @@ -105104,7 +105189,7 @@ paths: type: string format: date-time nullable: true - text_matches: *762 + text_matches: *763 pull_request: type: object properties: @@ -105137,10 +105222,10 @@ paths: type: string score: type: number - author_association: *178 + author_association: *179 draft: type: boolean - repository: *67 + repository: *69 body_html: type: string body_text: @@ -105148,7 +105233,7 @@ paths: timeline_url: type: string format: uri - type: *330 + type: *331 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -105158,9 +105243,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - assignee - closed_at @@ -105276,7 +105361,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *166 + '503': *167 '422': *15 '304': *37 '403': *29 @@ -105332,7 +105417,7 @@ paths: enum: - created - updated - - *763 + - *764 - *17 - *19 responses: @@ -105376,7 +105461,7 @@ paths: nullable: true score: type: number - text_matches: *762 + text_matches: *763 required: - id - node_id @@ -105462,7 +105547,7 @@ paths: - forks - help-wanted-issues - updated - - *763 + - *764 - *17 - *19 responses: @@ -105681,8 +105766,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true permissions: type: object @@ -105701,7 +105786,7 @@ paths: - admin - pull - push - text_matches: *762 + text_matches: *763 temp_clone_token: type: string allow_merge_commit: @@ -105903,7 +105988,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *166 + '503': *167 '422': *15 '304': *37 x-github: @@ -106002,7 +106087,7 @@ paths: type: string format: uri nullable: true - text_matches: *762 + text_matches: *763 related: type: array nullable: true @@ -106195,7 +106280,7 @@ paths: - followers - repositories - joined - - *763 + - *764 - *17 - *19 responses: @@ -106299,7 +106384,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *762 + text_matches: *763 blog: type: string nullable: true @@ -106358,7 +106443,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *166 + '503': *167 '422': *15 x-github: githubCloudOnly: false @@ -106378,7 +106463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &767 + - &768 name: team_id description: The unique identifier of the team. in: path @@ -106390,9 +106475,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -106419,7 +106504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *767 + - *768 requestBody: required: true content: @@ -106482,16 +106567,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '201': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 '422': *15 '403': *29 @@ -106519,7 +106604,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *767 + - *768 responses: '204': description: Response @@ -106550,8 +106635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *767 - - *100 + - *768 + - *101 - *17 - *19 responses: @@ -106561,11 +106646,11 @@ paths: application/json: schema: type: array - items: *418 + items: *419 examples: - default: *768 + default: *769 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106592,7 +106677,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *767 + - *768 requestBody: required: true content: @@ -106626,9 +106711,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: triggersNotification: true githubCloudOnly: false @@ -106655,16 +106740,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 responses: '200': description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106689,8 +106774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: false content: @@ -106713,9 +106798,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *769 + default: *770 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106740,8 +106825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 responses: '204': description: Response @@ -106770,9 +106855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *767 - - *420 - - *100 + - *768 + - *421 + - *101 - *17 - *19 responses: @@ -106782,11 +106867,11 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *770 + default: *771 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106813,8 +106898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: true content: @@ -106836,9 +106921,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: triggersNotification: true githubCloudOnly: false @@ -106865,17 +106950,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106900,9 +106985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 requestBody: required: true content: @@ -106924,9 +107009,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *771 + default: *772 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106951,9 +107036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 responses: '204': description: Response @@ -106982,9 +107067,9 @@ 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: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -107010,11 +107095,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107041,9 +107126,9 @@ 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: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 requestBody: required: true content: @@ -107075,9 +107160,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107103,8 +107188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -107130,11 +107215,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107161,8 +107246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: true content: @@ -107194,9 +107279,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107220,7 +107305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107230,11 +107315,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107258,7 +107343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *767 + - *768 - name: role description: Filters members returned by their role in the team. in: query @@ -107281,9 +107366,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107309,8 +107394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: if user is a member @@ -107346,8 +107431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107386,8 +107471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107423,16 +107508,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '200': description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-user-is-a-team-maintainer: *772 + response-if-user-is-a-team-maintainer: *773 '404': *6 x-github: githubCloudOnly: false @@ -107465,8 +107550,8 @@ 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: - - *767 - - *263 + - *768 + - *264 requestBody: required: false content: @@ -107491,9 +107576,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-users-membership-with-team-is-now-pending: *773 + response-if-users-membership-with-team-is-now-pending: *774 '403': description: Forbidden if team synchronization is set up '422': @@ -107527,8 +107612,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107556,7 +107641,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107566,11 +107651,11 @@ paths: application/json: schema: type: array - items: *433 + items: *434 examples: - default: *774 + default: *775 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107594,16 +107679,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *767 - - *434 + - *768 + - *435 responses: '200': description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: *775 + default: *776 '404': description: Not Found if project is not managed by this team x-github: @@ -107627,8 +107712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *767 - - *434 + - *768 + - *435 requestBody: required: false content: @@ -107695,8 +107780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *767 - - *434 + - *768 + - *435 responses: '204': description: Response @@ -107723,7 +107808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107733,11 +107818,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107765,15 +107850,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *776 + schema: *777 examples: alternative-response-with-extra-repository-information: value: @@ -107924,9 +108009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 requestBody: required: false content: @@ -107976,9 +108061,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 responses: '204': description: Response @@ -108007,15 +108092,15 @@ 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: - - *767 + - *768 responses: '200': description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 '403': *29 '404': *6 x-github: @@ -108042,7 +108127,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: - - *767 + - *768 requestBody: required: true content: @@ -108099,7 +108184,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -108130,7 +108215,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -108140,11 +108225,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - response-if-child-teams-exist: *777 + response-if-child-teams-exist: *778 headers: - Link: *40 + Link: *43 '404': *6 '403': *29 '422': *15 @@ -108175,7 +108260,7 @@ paths: application/json: schema: oneOf: - - &779 + - &780 title: Private User description: Private User type: object @@ -108378,7 +108463,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *778 + - *779 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -108531,7 +108616,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -108610,7 +108695,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '304': *37 '404': *6 '403': *29 @@ -108633,7 +108718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *263 + - *264 responses: '204': description: If the user is blocked @@ -108661,7 +108746,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -108685,7 +108770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -108734,11 +108819,11 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: - default: *337 + default: *338 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -108875,21 +108960,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108929,7 +109014,7 @@ paths: type: integer secrets: type: array - items: &780 + items: &781 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108969,9 +109054,9 @@ paths: - visibility - selected_repositories_url examples: - default: *546 + default: *547 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109039,13 +109124,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 responses: '200': description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -109075,7 +109160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 requestBody: required: true content: @@ -109120,7 +109205,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -109148,7 +109233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 responses: '204': description: Response @@ -109173,7 +109258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *251 + - *252 responses: '200': description: Response @@ -109189,13 +109274,13 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *781 + default: *782 '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109216,7 +109301,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *251 + - *252 requestBody: required: true content: @@ -109248,7 +109333,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109270,7 +109355,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *251 + - *252 - name: repository_id in: path required: true @@ -109282,7 +109367,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109303,7 +109388,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *251 + - *252 - name: repository_id in: path required: true @@ -109315,7 +109400,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109335,17 +109420,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109369,7 +109454,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 requestBody: required: false content: @@ -109399,9 +109484,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 @@ -109423,11 +109508,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '202': *39 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109452,13 +109537,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '202': description: Response content: application/json: - schema: &782 + schema: &783 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -109499,7 +109584,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &783 + default: &784 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -109507,7 +109592,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109531,7 +109616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *338 + - *339 - name: export_id in: path required: true @@ -109544,9 +109629,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *783 + default: *784 '404': *6 x-github: githubCloudOnly: false @@ -109567,7 +109652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *338 + - *339 responses: '200': description: Response @@ -109583,11 +109668,11 @@ paths: type: integer machines: type: array - items: *784 + items: *785 examples: - default: *785 + default: *786 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109614,7 +109699,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *338 + - *339 requestBody: required: true content: @@ -109664,13 +109749,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *448 + repository: *449 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *544 - required: *545 + properties: *545 + required: *546 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -110444,17 +110529,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '304': *37 - '500': *91 + '500': *40 '400': *14 '401': *25 '402': @@ -110464,7 +110549,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110484,16 +110569,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 - '500': *91 + default: *544 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -110522,9 +110607,9 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: &797 + default: &798 value: - id: 197 name: hello_docker @@ -110625,7 +110710,7 @@ paths: application/json: schema: type: array - items: &786 + items: &787 title: Email description: Email type: object @@ -110690,16 +110775,16 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: &799 + default: &800 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -110767,7 +110852,7 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: default: value: @@ -110877,9 +110962,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -110910,9 +110995,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -110932,7 +111017,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *263 + - *264 responses: '204': description: if the person is followed by the authenticated user @@ -110962,7 +111047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -110987,7 +111072,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -111023,7 +111108,7 @@ paths: application/json: schema: type: array - items: &787 + items: &788 title: GPG Key description: A unique encryption key type: object @@ -111154,7 +111239,7 @@ paths: - subkeys - revoked examples: - default: &817 + default: &818 value: - id: 3 name: Octocat's GPG Key @@ -111186,7 +111271,7 @@ paths: revoked: false raw_key: string headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -111239,9 +111324,9 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: &788 + default: &789 value: id: 3 name: Octocat's GPG Key @@ -111298,7 +111383,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: - - &789 + - &790 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -111310,9 +111395,9 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: *788 + default: *789 '404': *6 '304': *37 '403': *29 @@ -111335,7 +111420,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: - - *789 + - *790 responses: '204': description: Response @@ -111478,7 +111563,7 @@ paths: suspended_at: suspended_by: headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -111524,11 +111609,11 @@ paths: type: string repositories: type: array - items: *67 + items: *69 examples: - default: *236 + default: *237 headers: - Link: *40 + Link: *43 '404': *6 '403': *29 '304': *37 @@ -111551,7 +111636,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *235 + - *236 responses: '204': description: Response @@ -111577,7 +111662,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *235 + - *236 responses: '204': description: Response @@ -111611,12 +111696,12 @@ paths: application/json: schema: anyOf: - - *325 + - *326 - type: object properties: {} additionalProperties: false examples: - default: *326 + default: *327 '204': description: Response when there are no restrictions x-github: @@ -111640,7 +111725,7 @@ paths: required: true content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -111651,7 +111736,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: default: value: @@ -111732,7 +111817,7 @@ paths: - closed - all default: open - - *333 + - *334 - name: sort description: What to sort results by. in: query @@ -111744,8 +111829,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -111755,11 +111840,11 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *334 + default: *335 headers: - Link: *40 + Link: *43 '404': *6 '304': *37 x-github: @@ -111790,7 +111875,7 @@ paths: application/json: schema: type: array - items: &790 + items: &791 title: Key description: Key type: object @@ -111841,7 +111926,7 @@ paths: verified: false read_only: false headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -111891,9 +111976,9 @@ paths: description: Response content: application/json: - schema: *790 + schema: *791 examples: - default: &791 + default: &792 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111926,15 +112011,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '200': description: Response content: application/json: - schema: *790 + schema: *791 examples: - default: *791 + default: *792 '404': *6 '304': *37 '403': *29 @@ -111957,7 +112042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '204': description: Response @@ -111990,7 +112075,7 @@ paths: application/json: schema: type: array - items: &792 + items: &793 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112047,7 +112132,7 @@ paths: - id - type - login - plan: *195 + plan: *196 required: - billing_cycle - next_billing_date @@ -112058,7 +112143,7 @@ paths: - account - plan examples: - default: &793 + default: &794 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112091,7 +112176,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '304': *37 '401': *25 '404': *6 @@ -112120,11 +112205,11 @@ paths: application/json: schema: type: array - items: *792 + items: *793 examples: - default: *793 + default: *794 headers: - Link: *40 + Link: *43 '304': *37 '401': *25 x-github: @@ -112162,7 +112247,7 @@ paths: application/json: schema: type: array - items: *339 + items: *340 examples: default: value: @@ -112239,7 +112324,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -112264,13 +112349,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -112328,7 +112413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 requestBody: required: true content: @@ -112353,7 +112438,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -112421,7 +112506,7 @@ paths: application/json: schema: type: array - items: *341 + items: *342 examples: default: value: @@ -112574,7 +112659,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -112674,7 +112759,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -112854,7 +112939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *342 + - *343 - name: exclude in: query required: false @@ -112867,7 +112952,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -113061,7 +113146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *342 + - *343 responses: '302': description: Response @@ -113087,7 +113172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *342 + - *343 responses: '204': description: Response @@ -113116,8 +113201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *342 - - *794 + - *343 + - *795 responses: '204': description: Response @@ -113141,7 +113226,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *342 + - *343 - *17 - *19 responses: @@ -113151,11 +113236,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -113188,11 +113273,11 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: *795 + default: *796 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -113232,7 +113317,7 @@ paths: - docker - nuget - container - - *796 + - *797 - *19 - *17 responses: @@ -113242,10 +113327,10 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 - '400': *798 + default: *798 + '400': *799 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113265,16 +113350,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: - default: &818 + default: &819 value: id: 40201 name: octo-name @@ -113387,8 +113472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 responses: '204': description: Response @@ -113418,8 +113503,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 - name: token description: package token schema: @@ -113451,8 +113536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *350 - *351 + - *352 - *19 - *17 - name: state @@ -113472,7 +113557,7 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: default: value: @@ -113521,15 +113606,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -113565,9 +113650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '204': description: Response @@ -113597,9 +113682,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '204': description: Response @@ -113655,7 +113740,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -113727,11 +113812,11 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: *799 + default: *800 headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -113840,9 +113925,9 @@ paths: application/json: schema: type: array - items: *67 + items: *69 examples: - default: &806 + default: &807 summary: Default response value: - id: 1296269 @@ -113963,7 +114048,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '403': *29 @@ -114146,9 +114231,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -114186,11 +114271,11 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *800 + default: *801 headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114211,12 +114296,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *329 + - *330 responses: '204': description: Response '403': *29 - '409': *108 + '409': *109 '404': *6 '304': *37 x-github: @@ -114234,11 +114319,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *329 + - *330 responses: '204': description: Response - '409': *108 + '409': *109 '304': *37 '404': *6 '403': *29 @@ -114267,7 +114352,7 @@ paths: application/json: schema: type: array - items: &801 + items: &802 title: Social account description: Social media account type: object @@ -114282,12 +114367,12 @@ paths: - provider - url examples: - default: &802 + default: &803 value: - provider: twitter url: https://twitter.com/github headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114344,9 +114429,9 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *802 + default: *803 '422': *15 '304': *37 '404': *6 @@ -114433,7 +114518,7 @@ paths: application/json: schema: type: array - items: &803 + items: &804 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -114453,7 +114538,7 @@ paths: - title - created_at examples: - default: &819 + default: &820 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114466,7 +114551,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114519,9 +114604,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: &804 + default: &805 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114552,7 +114637,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: - - &805 + - &806 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -114564,9 +114649,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: *804 + default: *805 '404': *6 '304': *37 '403': *29 @@ -114589,7 +114674,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: - - *805 + - *806 responses: '204': description: Response @@ -114618,7 +114703,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: - - &820 + - &821 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 @@ -114631,7 +114716,7 @@ paths: - created - updated default: created - - *100 + - *101 - *17 - *19 responses: @@ -114641,13 +114726,13 @@ paths: application/json: schema: type: array - items: *67 + items: *69 examples: - default-response: *806 + default-response: *807 application/vnd.github.v3.star+json: schema: type: array - items: &821 + items: &822 title: Starred Repository description: Starred Repository type: object @@ -114655,7 +114740,7 @@ paths: starred_at: type: string format: date-time - repo: *67 + repo: *69 required: - starred_at - repo @@ -114783,7 +114868,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -114803,8 +114888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response if this repository is starred by you @@ -114832,8 +114917,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -114857,8 +114942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -114891,11 +114976,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -114930,7 +115015,7 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: default: value: @@ -114981,7 +115066,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -115008,7 +115093,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *197 + - *198 responses: '200': description: Response @@ -115016,10 +115101,10 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: &812 + default-response: &813 summary: Default response value: login: octocat @@ -115054,7 +115139,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &813 + response-with-git-hub-plan-information: &814 summary: Response with GitHub plan information value: login: octocat @@ -115114,7 +115199,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *807 + - *808 - *17 responses: '200': @@ -115125,7 +115210,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: Link: example: ; rel="next" @@ -115148,8 +115233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *367 - - &808 + - *368 + - &809 name: user_id description: The unique identifier of the user. in: path @@ -115161,11 +115246,11 @@ paths: description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115185,11 +115270,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *367 - - *808 + - *368 + - *809 - *17 - - *98 - *99 + - *100 responses: '200': description: Response @@ -115197,11 +115282,11 @@ paths: application/json: schema: type: array - items: *368 + items: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115221,19 +115306,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *367 + - *368 + - *810 - *809 - - *808 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115254,10 +115339,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *367 - - *808 - - *98 + - *368 + - *809 - *99 + - *100 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -115284,11 +115369,11 @@ paths: application/json: schema: type: array - items: *374 + items: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115307,8 +115392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *808 - - *367 + - *809 + - *368 requestBody: required: true description: Details of the item to add to the project. @@ -115345,9 +115430,9 @@ paths: description: Response content: application/json: - schema: *810 + schema: *811 examples: - default: *811 + default: *812 '304': *37 '403': *29 '401': *25 @@ -115367,9 +115452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -115386,11 +115471,11 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115409,9 +115494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -115481,9 +115566,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '401': *25 '403': *29 '404': *6 @@ -115503,9 +115588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 responses: '204': description: Response @@ -115534,7 +115619,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *263 + - *264 responses: '200': description: Response @@ -115542,11 +115627,11 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: *812 - response-with-git-hub-plan-information: *813 + default-response: *813 + response-with-git-hub-plan-information: *814 '404': *6 x-github: githubCloudOnly: false @@ -115570,9 +115655,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *98 - *99 - - *263 + - *100 + - *264 requestBody: required: true content: @@ -115595,8 +115680,8 @@ paths: required: - subject_digests examples: - default: *814 - withPredicateType: *815 + default: *815 + withPredicateType: *816 responses: '200': description: Response @@ -115649,7 +115734,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *816 + default: *817 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115667,7 +115752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *263 + - *264 requestBody: required: true content: @@ -115732,7 +115817,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *263 + - *264 - name: subject_digest description: Subject Digest in: path @@ -115763,7 +115848,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *263 + - *264 - name: attestation_id description: Attestation ID in: path @@ -115799,9 +115884,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *98 - *99 - - *263 + - *100 + - *264 - name: subject_digest description: Subject Digest in: path @@ -115851,12 +115936,12 @@ paths: bundle_url: type: string examples: - default: *488 + default: *489 '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -115882,7 +115967,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *263 + - *264 responses: '200': description: Response @@ -115890,9 +115975,9 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 + default: *798 '403': *29 '401': *25 x-github: @@ -115915,7 +116000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -115925,7 +116010,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -115996,8 +116081,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *263 - - *76 + - *264 + - *78 - *17 - *19 responses: @@ -116007,7 +116092,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -116086,7 +116171,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116096,7 +116181,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -116163,7 +116248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116175,9 +116260,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116194,7 +116279,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116206,9 +116291,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116225,7 +116310,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *263 + - *264 - name: target_user in: path required: true @@ -116252,8 +116337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *263 - - *181 + - *264 + - *182 - *17 - *19 responses: @@ -116263,11 +116348,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -116286,7 +116371,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116296,11 +116381,11 @@ paths: application/json: schema: type: array - items: *787 + items: *788 examples: - default: *817 + default: *818 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116322,7 +116407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *263 + - *264 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -116394,7 +116479,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *263 + - *264 responses: '200': description: Response @@ -116402,7 +116487,7 @@ paths: application/json: schema: *22 examples: - default: *623 + default: *624 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116420,7 +116505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116455,7 +116540,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116475,7 +116560,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116485,11 +116570,11 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: *795 + default: *796 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116526,8 +116611,8 @@ paths: - docker - nuget - container - - *796 - - *263 + - *797 + - *264 - *19 - *17 responses: @@ -116537,12 +116622,12 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 + default: *798 '403': *29 '401': *25 - '400': *798 + '400': *799 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116562,17 +116647,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: - default: *818 + default: *819 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116593,9 +116678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '204': description: Response @@ -116627,9 +116712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 - name: token description: package token schema: @@ -116661,9 +116746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '200': description: Response @@ -116671,7 +116756,7 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: default: value: @@ -116729,16 +116814,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *350 - *351 - - *353 - - *263 + - *352 + - *354 + - *264 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -116773,10 +116858,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *350 - *351 - - *263 - - *353 + - *352 + - *264 + - *354 responses: '204': description: Response @@ -116808,10 +116893,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *350 - *351 - - *263 - - *353 + - *352 + - *264 + - *354 responses: '204': description: Response @@ -116837,7 +116922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-user-projects parameters: - - *263 + - *264 - name: state description: Indicates the state of the projects to return. in: query @@ -116858,7 +116943,7 @@ paths: application/json: schema: type: array - items: *364 + items: *365 examples: default: value: @@ -116894,7 +116979,7 @@ paths: created_at: '2011-04-10T20:09:31Z' updated_at: '2014-03-03T18:58:10Z' headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -116916,15 +117001,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *263 + - *264 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *98 - *99 + - *100 - *17 responses: '200': @@ -116933,11 +117018,11 @@ paths: application/json: schema: type: array - items: *365 + items: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -116962,7 +117047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116972,7 +117057,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -117051,7 +117136,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117061,7 +117146,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -117138,7 +117223,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *263 + - *264 - name: type description: Limit results to repositories of the specified type. in: query @@ -117181,11 +117266,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117207,15 +117292,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117237,15 +117322,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117267,15 +117352,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117295,11 +117380,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - - *263 - - *210 + - *264 - *211 - *212 - *213 + - *214 responses: '200': description: Response when getting a billing usage report @@ -117369,8 +117454,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117388,7 +117473,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117398,11 +117483,11 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *802 + default: *803 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117420,7 +117505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117430,11 +117515,11 @@ paths: application/json: schema: type: array - items: *803 + items: *804 examples: - default: *819 + default: *820 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117456,9 +117541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *263 - - *820 - - *100 + - *264 + - *821 + - *101 - *17 - *19 responses: @@ -117469,13 +117554,13 @@ paths: schema: anyOf: - type: array - items: *821 + items: *822 - type: array - items: *67 + items: *69 examples: - default-response: *806 + default-response: *807 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117492,7 +117577,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117502,11 +117587,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117632,7 +117717,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &822 + enterprise: &823 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117690,7 +117775,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &823 + installation: &824 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117709,7 +117794,7 @@ x-webhooks: required: - id - node_id - organization: &824 + organization: &825 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117769,13 +117854,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &825 + repository: &826 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &862 + properties: &863 id: description: Unique identifier of the repository example: 42 @@ -117795,8 +117880,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true organization: title: Simple User @@ -118458,7 +118543,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &863 + required: &864 - archive_url - assignees_url - blobs_url @@ -118609,10 +118694,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -118688,11 +118773,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: &826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: &827 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) @@ -118915,11 +119000,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: *826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: *827 sender: *4 required: - action @@ -119102,11 +119187,11 @@ x-webhooks: - everyone required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: *826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: *827 sender: *4 required: - action @@ -119177,7 +119262,7 @@ x-webhooks: required: true content: application/json: - schema: &829 + schema: &830 title: Exemption request cancellation event type: object properties: @@ -119185,11 +119270,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: &827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: &828 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -119422,7 +119507,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &828 + items: &829 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -119530,7 +119615,7 @@ x-webhooks: required: true content: application/json: - schema: &830 + schema: &831 title: Exemption request completed event type: object properties: @@ -119538,11 +119623,11 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 sender: *4 required: - action @@ -119612,7 +119697,7 @@ x-webhooks: required: true content: application/json: - schema: &831 + schema: &832 title: Exemption request created event type: object properties: @@ -119620,11 +119705,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 sender: *4 required: - action @@ -119694,7 +119779,7 @@ x-webhooks: required: true content: application/json: - schema: &832 + schema: &833 title: Exemption response dismissed event type: object properties: @@ -119702,12 +119787,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 - exemption_response: *828 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 + exemption_response: *829 sender: *4 required: - action @@ -119779,7 +119864,7 @@ x-webhooks: required: true content: application/json: - schema: &833 + schema: &834 title: Exemption response submitted event type: object properties: @@ -119787,12 +119872,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 - exemption_response: *828 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 + exemption_response: *829 sender: *4 required: - action @@ -119865,7 +119950,7 @@ x-webhooks: required: true content: application/json: - schema: *829 + schema: *830 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119932,7 +120017,7 @@ x-webhooks: required: true content: application/json: - schema: *830 + schema: *831 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119999,7 +120084,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120066,7 +120151,7 @@ x-webhooks: required: true content: application/json: - schema: *832 + schema: *833 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120134,7 +120219,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120212,7 +120297,7 @@ x-webhooks: type: string enum: - completed - check_run: &835 + check_run: &836 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120265,8 +120350,8 @@ x-webhooks: type: string pull_requests: type: array - items: *505 - repository: *241 + items: *506 + repository: *242 status: example: completed type: string @@ -120303,7 +120388,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *834 + deployment: *835 details_url: example: https://example.com type: string @@ -120353,7 +120438,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *505 + items: *506 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -120388,10 +120473,10 @@ x-webhooks: - output - app - pull_requests - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -120784,11 +120869,11 @@ x-webhooks: type: string enum: - created - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -121184,11 +121269,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 requested_action: description: The action requested by the user. type: object @@ -121593,11 +121678,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -122574,10 +122659,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -123247,10 +123332,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -123914,10 +123999,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -124080,7 +124165,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124225,20 +124310,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &836 + commit_oid: &837 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: *822 - installation: *823 - organization: *824 - ref: &837 + enterprise: *823 + installation: *824 + organization: *825 + ref: &838 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: *825 + repository: *826 sender: *4 required: - action @@ -124400,7 +124485,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124630,12 +124715,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -124730,7 +124815,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124898,12 +124983,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -125066,7 +125151,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -125232,12 +125317,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -125334,7 +125419,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125502,16 +125587,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 ref: 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 nullable: true - repository: *825 + repository: *826 sender: *4 required: - action @@ -125605,7 +125690,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125745,12 +125830,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -126007,10 +126092,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -126090,18 +126175,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *824 - pusher_type: &838 + organization: *825 + pusher_type: &839 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &839 + ref: &840 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -126111,7 +126196,7 @@ x-webhooks: enum: - tag - branch - repository: *825 + repository: *826 sender: *4 required: - ref @@ -126193,10 +126278,10 @@ x-webhooks: type: string enum: - created - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126281,9 +126366,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126360,10 +126445,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126440,10 +126525,10 @@ x-webhooks: type: string enum: - updated - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126520,19 +126605,19 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - repository: *825 - organization: *824 + enterprise: *823 + installation: *824 + repository: *826 + organization: *825 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *378 + items: *379 old_property_values: type: array description: The old custom property values for the repository. - items: *378 + items: *379 required: - action - repository @@ -126608,18 +126693,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - pusher_type: *838 - ref: *839 + enterprise: *823 + installation: *824 + organization: *825 + pusher_type: *839 + ref: *840 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *825 + repository: *826 sender: *4 required: - ref @@ -126703,11 +126788,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126791,11 +126876,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126879,11 +126964,11 @@ x-webhooks: type: string enum: - created - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126965,11 +127050,11 @@ x-webhooks: type: string enum: - dismissed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127051,11 +127136,11 @@ x-webhooks: type: string enum: - fixed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127138,11 +127223,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127224,11 +127309,11 @@ x-webhooks: type: string enum: - reopened - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127305,9 +127390,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - key: &840 + enterprise: *823 + installation: *824 + key: &841 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127343,8 +127428,8 @@ x-webhooks: - verified - created_at - read_only - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -127421,11 +127506,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - key: *840 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + key: *841 + organization: *825 + repository: *826 sender: *4 required: - action @@ -127986,12 +128071,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: &844 + workflow: &845 title: Workflow type: object nullable: true @@ -128717,13 +128802,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *579 + deployment: *580 pull_requests: type: array - items: *672 - repository: *825 - organization: *824 - installation: *823 + items: *673 + repository: *826 + organization: *825 + installation: *824 sender: *4 responses: '200': @@ -128794,7 +128879,7 @@ x-webhooks: type: string enum: - approved - approver: &841 + approver: &842 type: object properties: avatar_url: @@ -128837,11 +128922,11 @@ x-webhooks: type: string comment: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - reviewers: &842 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + reviewers: &843 type: array items: type: object @@ -128920,7 +129005,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &843 + workflow_job_run: &844 type: object properties: conclusion: @@ -129651,18 +129736,18 @@ x-webhooks: type: string enum: - rejected - approver: *841 + approver: *842 comment: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - reviewers: *842 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + reviewers: *843 sender: *4 since: type: string - workflow_job_run: *843 + workflow_job_run: *844 workflow_job_runs: type: array items: @@ -130366,13 +130451,13 @@ x-webhooks: type: string enum: - requested - enterprise: *822 + enterprise: *823 environment: type: string - installation: *823 - organization: *824 - repository: *825 - requestor: &849 + installation: *824 + organization: *825 + repository: *826 + requestor: &850 title: User type: object nullable: true @@ -132271,12 +132356,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Deployment Workflow Run type: object @@ -132956,7 +133041,7 @@ x-webhooks: type: string enum: - answered - answer: &847 + answer: &848 type: object properties: author_association: @@ -133113,7 +133198,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &845 + discussion: &846 title: Discussion description: A Discussion in a repository. type: object @@ -133399,7 +133484,7 @@ x-webhooks: - id labels: type: array - items: *636 + items: *637 required: - repository_url - category @@ -133421,10 +133506,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133551,11 +133636,11 @@ x-webhooks: - from required: - category - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133638,11 +133723,11 @@ x-webhooks: type: string enum: - closed - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133724,7 +133809,7 @@ x-webhooks: type: string enum: - created - comment: &846 + comment: &847 type: object properties: author_association: @@ -133881,11 +133966,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133968,12 +134053,12 @@ x-webhooks: type: string enum: - deleted - comment: *846 - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + comment: *847 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134068,12 +134153,12 @@ x-webhooks: - from required: - body - comment: *846 - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + comment: *847 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134157,11 +134242,11 @@ x-webhooks: type: string enum: - created - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134243,11 +134328,11 @@ x-webhooks: type: string enum: - deleted - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134347,11 +134432,11 @@ x-webhooks: type: string required: - from - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134433,10 +134518,10 @@ x-webhooks: type: string enum: - labeled - discussion: *845 - enterprise: *822 - installation: *823 - label: &848 + discussion: *846 + enterprise: *823 + installation: *824 + label: &849 title: Label type: object properties: @@ -134468,8 +134553,8 @@ x-webhooks: - color - default - description - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134552,11 +134637,11 @@ x-webhooks: type: string enum: - locked - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134638,11 +134723,11 @@ x-webhooks: type: string enum: - pinned - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134724,11 +134809,11 @@ x-webhooks: type: string enum: - reopened - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134813,16 +134898,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *845 - new_repository: *825 + new_discussion: *846 + new_repository: *826 required: - new_discussion - new_repository - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134905,10 +134990,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *845 - old_answer: *847 - organization: *824 - repository: *825 + discussion: *846 + old_answer: *848 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134990,12 +135075,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *845 - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135078,11 +135163,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135164,11 +135249,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135237,7 +135322,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135300,7 +135385,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135366,7 +135451,7 @@ x-webhooks: required: true content: application/json: - schema: *829 + schema: *830 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135432,7 +135517,7 @@ x-webhooks: required: true content: application/json: - schema: *830 + schema: *831 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135498,7 +135583,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135564,7 +135649,7 @@ x-webhooks: required: true content: application/json: - schema: *832 + schema: *833 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135630,7 +135715,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135697,7 +135782,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *822 + enterprise: *823 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -136357,9 +136442,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *823 - organization: *824 - repository: *825 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - forkee @@ -136505,9 +136590,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pages: description: The pages that were updated. type: array @@ -136544,7 +136629,7 @@ x-webhooks: - action - sha - html_url - repository: *825 + repository: *826 sender: *4 required: - pages @@ -136620,10 +136705,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: &850 + organization: *825 + repositories: &851 description: An array of repository objects that the installation can access. type: array @@ -136649,8 +136734,8 @@ x-webhooks: - name - full_name - private - repository: *825 - requester: *849 + repository: *826 + requester: *850 sender: *4 required: - action @@ -136725,11 +136810,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -136805,11 +136890,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -136885,10 +136970,10 @@ x-webhooks: type: string enum: - added - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories_added: &851 + organization: *825 + repositories_added: &852 description: An array of repository objects, which were added to the installation. type: array @@ -136934,15 +137019,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *825 - repository_selection: &852 + repository: *826 + repository_selection: &853 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *849 + requester: *850 sender: *4 required: - action @@ -137021,10 +137106,10 @@ x-webhooks: type: string enum: - removed - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories_added: *851 + organization: *825 + repositories_added: *852 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -137051,9 +137136,9 @@ x-webhooks: - name - full_name - private - repository: *825 - repository_selection: *852 - requester: *849 + repository: *826 + repository_selection: *853 + requester: *850 sender: *4 required: - action @@ -137132,11 +137217,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -137315,10 +137400,10 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 target_type: type: string @@ -137397,11 +137482,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -137525,8 +137610,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 reactions: title: Reactions type: object @@ -137653,8 +137738,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -138448,8 +138533,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138465,7 +138550,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -138798,8 +138883,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -138879,7 +138964,7 @@ x-webhooks: type: string enum: - deleted - comment: &853 + comment: &854 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -139044,8 +139129,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -139835,8 +139920,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139852,7 +139937,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -140187,8 +140272,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -140268,7 +140353,7 @@ x-webhooks: type: string enum: - edited - changes: &882 + changes: &883 description: The changes to the comment. type: object properties: @@ -140280,9 +140365,9 @@ x-webhooks: type: string required: - from - comment: *853 - enterprise: *822 - installation: *823 + comment: *854 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -141075,8 +141160,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141092,7 +141177,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -141425,8 +141510,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141510,15 +141595,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 + blocked_issue: *192 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - blocking_issue_repo: *67 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + blocking_issue_repo: *69 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141606,15 +141691,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 + blocked_issue: *192 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - blocking_issue_repo: *67 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + blocking_issue_repo: *69 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141701,15 +141786,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 - blocked_issue_repo: *67 + blocked_issue: *192 + blocked_issue_repo: *69 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141797,15 +141882,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 - blocked_issue_repo: *67 + blocked_issue: *192 + blocked_issue_repo: *69 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141890,10 +141975,10 @@ x-webhooks: type: string enum: - assigned - assignee: *849 - enterprise: *822 - installation: *823 - issue: &856 + assignee: *850 + enterprise: *823 + installation: *824 + issue: &857 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -142682,11 +142767,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142702,7 +142787,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -142803,8 +142888,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -142884,8 +142969,8 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -143679,11 +143764,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143699,7 +143784,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -143935,8 +144020,8 @@ x-webhooks: required: - state - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -144015,8 +144100,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144801,11 +144886,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144821,7 +144906,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -144921,8 +145006,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -145001,8 +145086,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145809,11 +145894,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145829,7 +145914,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -145908,7 +145993,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &854 + milestone: &855 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146046,8 +146131,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -146146,8 +146231,8 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146936,11 +147021,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146953,7 +147038,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -147057,9 +147142,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *848 - organization: *824 - repository: *825 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -147139,8 +147224,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147928,11 +148013,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147945,7 +148030,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -148049,9 +148134,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *848 - organization: *824 - repository: *825 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -148131,8 +148216,8 @@ x-webhooks: type: string enum: - locked - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148944,11 +149029,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148961,7 +149046,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -149042,8 +149127,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -149122,8 +149207,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149929,11 +150014,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149949,7 +150034,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -150027,9 +150112,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *854 - organization: *824 - repository: *825 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -150897,11 +150982,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150994,7 +151079,7 @@ x-webhooks: required: - login - id - type: *330 + type: *331 required: - id - number @@ -151463,8 +151548,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152253,11 +152338,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152273,7 +152358,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -152373,8 +152458,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -152454,9 +152539,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *822 - installation: *823 - issue: &855 + enterprise: *823 + installation: *824 + issue: &856 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153239,11 +153324,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153259,7 +153344,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -153359,8 +153444,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -153439,8 +153524,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154250,11 +154335,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154348,9 +154433,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *330 - organization: *824 - repository: *825 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155216,11 +155301,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155236,7 +155321,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -155804,11 +155889,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *822 - installation: *823 - issue: *855 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *856 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155888,12 +155973,12 @@ x-webhooks: type: string enum: - typed - enterprise: *822 - installation: *823 - issue: *856 - type: *330 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155974,7 +156059,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &885 + assignee: &886 title: User type: object nullable: true @@ -156044,11 +156129,11 @@ x-webhooks: required: - login - id - enterprise: *822 - installation: *823 - issue: *856 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + organization: *825 + repository: *826 sender: *4 required: - action @@ -156127,12 +156212,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *822 - installation: *823 - issue: *856 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -156212,8 +156297,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157023,11 +157108,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157043,7 +157128,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -157121,8 +157206,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157202,11 +157287,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *822 - installation: *823 - issue: *855 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *856 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157285,12 +157370,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *822 - installation: *823 - issue: *856 - type: *330 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157370,11 +157455,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157452,11 +157537,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157566,11 +157651,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157652,9 +157737,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: &857 + enterprise: *823 + installation: *824 + marketplace_purchase: &858 title: Marketplace Purchase type: object required: @@ -157737,8 +157822,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *824 - previous_marketplace_purchase: &858 + organization: *825 + previous_marketplace_purchase: &859 title: Marketplace Purchase type: object properties: @@ -157818,7 +157903,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -157898,10 +157983,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -157984,7 +158069,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -158066,10 +158151,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -158151,7 +158236,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -158232,8 +158317,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 marketplace_purchase: title: Marketplace Purchase type: object @@ -158315,9 +158400,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *824 - previous_marketplace_purchase: *858 - repository: *825 + organization: *825 + previous_marketplace_purchase: *859 + repository: *826 sender: *4 required: - action @@ -158397,12 +158482,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 - previous_marketplace_purchase: *858 - repository: *825 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 + previous_marketplace_purchase: *859 + repository: *826 sender: *4 required: - action @@ -158504,11 +158589,11 @@ x-webhooks: type: string required: - to - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158608,11 +158693,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158691,11 +158776,11 @@ x-webhooks: type: string enum: - removed - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158773,11 +158858,11 @@ x-webhooks: type: string enum: - added - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 scope: description: The scope of the membership. Currently, can only be `team`. @@ -158853,7 +158938,7 @@ x-webhooks: required: - login - id - team: &859 + team: &860 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -159043,11 +159128,11 @@ x-webhooks: type: string enum: - removed - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 scope: description: The scope of the membership. Currently, can only be `team`. @@ -159124,7 +159209,7 @@ x-webhooks: required: - login - id - team: *859 + team: *860 required: - action - scope @@ -159206,8 +159291,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *823 - merge_group: &861 + installation: *824 + merge_group: &862 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -159226,15 +159311,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *860 + head_commit: *861 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159320,10 +159405,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *823 - merge_group: *861 - organization: *824 - repository: *825 + installation: *824 + merge_group: *862 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159396,7 +159481,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 + enterprise: *823 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -159505,16 +159590,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *823 - organization: *824 + installation: *824 + organization: *825 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -159595,11 +159680,11 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159678,9 +159763,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - milestone: &864 + enterprise: *823 + installation: *824 + milestone: &865 title: Milestone description: A collection of related issues and pull requests. type: object @@ -159817,8 +159902,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159897,11 +159982,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160011,11 +160096,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160095,11 +160180,11 @@ x-webhooks: type: string enum: - opened - enterprise: *822 - installation: *823 - milestone: *864 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *865 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160178,11 +160263,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *849 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + blocked_user: *850 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160261,11 +160346,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *849 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + blocked_user: *850 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160344,9 +160429,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - membership: &865 + enterprise: *823 + installation: *824 + membership: &866 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -160453,8 +160538,8 @@ x-webhooks: - role - organization_url - user - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160532,11 +160617,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160615,8 +160700,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -160732,10 +160817,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 - user: *849 + user: *850 required: - action - invitation @@ -160813,11 +160898,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160904,11 +160989,11 @@ x-webhooks: properties: from: type: string - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160984,9 +161069,9 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 package: description: Information about the package. type: object @@ -161485,7 +161570,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &866 + items: &867 title: Ruby Gems metadata type: object properties: @@ -161580,7 +161665,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -161656,9 +161741,9 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 package: description: Information about the package. type: object @@ -162011,7 +162096,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *866 + items: *867 source_url: type: string format: uri @@ -162081,7 +162166,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -162258,12 +162343,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *822 + enterprise: *823 id: type: integer - installation: *823 - organization: *824 - repository: *825 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - id @@ -162340,7 +162425,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &867 + personal_access_token_request: &868 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -162486,10 +162571,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *822 - organization: *824 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162566,11 +162651,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *867 - enterprise: *822 - organization: *824 + personal_access_token_request: *868 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162646,11 +162731,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *867 - enterprise: *822 - organization: *824 + personal_access_token_request: *868 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162725,11 +162810,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *867 - organization: *824 - enterprise: *822 + personal_access_token_request: *868 + organization: *825 + enterprise: *823 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162834,7 +162919,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *868 + last_response: *869 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -162866,8 +162951,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 zen: description: Random string of GitHub zen. @@ -163112,10 +163197,10 @@ x-webhooks: - from required: - note - enterprise: *822 - installation: *823 - organization: *824 - project_card: &869 + enterprise: *823 + installation: *824 + organization: *825 + project_card: &870 title: Project Card type: object properties: @@ -163234,7 +163319,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -163315,11 +163400,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project_card: *869 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_card: *870 + repository: *826 sender: *4 required: - action @@ -163399,9 +163484,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 project_card: title: Project Card type: object @@ -163529,8 +163614,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -163624,11 +163709,11 @@ x-webhooks: - from required: - note - enterprise: *822 - installation: *823 - organization: *824 - project_card: *869 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_card: *870 + repository: *826 sender: *4 required: - action @@ -163722,9 +163807,9 @@ x-webhooks: - from required: - column_id - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 project_card: allOf: - title: Project Card @@ -163914,7 +163999,7 @@ x-webhooks: type: string required: - after_id - repository: *825 + repository: *826 sender: *4 required: - action @@ -163994,10 +164079,10 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - organization: *824 - project: &871 + enterprise: *823 + installation: *824 + organization: *825 + project: &872 title: Project type: object properties: @@ -164121,7 +164206,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -164201,10 +164286,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project_column: &870 + enterprise: *823 + installation: *824 + organization: *825 + project_column: &871 title: Project Column type: object properties: @@ -164243,7 +164328,7 @@ x-webhooks: - name - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -164322,18 +164407,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -164423,11 +164508,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 + repository: *826 sender: *4 required: - action @@ -164507,11 +164592,11 @@ x-webhooks: type: string enum: - moved - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 + repository: *826 sender: *4 required: - action @@ -164591,11 +164676,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164675,18 +164760,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - project: *871 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -164788,11 +164873,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164871,11 +164956,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164956,9 +165041,9 @@ x-webhooks: type: string enum: - closed - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165039,9 +165124,9 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165122,9 +165207,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165241,9 +165326,9 @@ x-webhooks: type: string to: type: string - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165326,7 +165411,7 @@ x-webhooks: type: string enum: - archived - changes: &875 + changes: &876 type: object properties: archived_at: @@ -165340,9 +165425,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *823 - organization: *824 - projects_v2_item: &872 + installation: *824 + organization: *825 + projects_v2_item: &873 title: Projects v2 Item description: An item belonging to a project type: object @@ -165360,7 +165445,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *373 + content_type: *374 creator: *4 created_at: type: string @@ -165477,9 +165562,9 @@ x-webhooks: nullable: true to: type: string - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165561,9 +165646,9 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165644,9 +165729,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165752,7 +165837,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &873 + - &874 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -165774,7 +165859,7 @@ x-webhooks: required: - id - name - - &874 + - &875 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -165808,8 +165893,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *873 - *874 + - *875 required: - field_value - type: object @@ -165825,9 +165910,9 @@ x-webhooks: nullable: true required: - body - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165922,9 +166007,9 @@ x-webhooks: to: type: string nullable: true - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -166007,10 +166092,10 @@ x-webhooks: type: string enum: - restored - changes: *875 - installation: *823 - organization: *824 - projects_v2_item: *872 + changes: *876 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -166092,9 +166177,9 @@ x-webhooks: type: string enum: - reopened - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -166175,14 +166260,14 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2_status_update: &878 + installation: *824 + organization: *825 + projects_v2_status_update: &879 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *876 - required: *877 + properties: *877 + required: *878 sender: *4 required: - action @@ -166263,9 +166348,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2_status_update: *878 + installation: *824 + organization: *825 + projects_v2_status_update: *879 sender: *4 required: - action @@ -166401,9 +166486,9 @@ x-webhooks: type: string format: date nullable: true - installation: *823 - organization: *824 - projects_v2_status_update: *878 + installation: *824 + organization: *825 + projects_v2_status_update: *879 sender: *4 required: - action @@ -166474,10 +166559,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - repository @@ -166554,13 +166639,13 @@ x-webhooks: type: string enum: - assigned - assignee: *849 - enterprise: *822 - installation: *823 - number: &879 + assignee: *850 + enterprise: *823 + installation: *824 + number: &880 description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -168843,7 +168928,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -168925,11 +169010,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -171207,7 +171292,7 @@ x-webhooks: - draft reason: type: string - repository: *825 + repository: *826 sender: *4 required: - action @@ -171289,11 +171374,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -173571,7 +173656,7 @@ x-webhooks: - draft reason: type: string - repository: *825 + repository: *826 sender: *4 required: - action @@ -173653,13 +173738,13 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: &880 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: &881 allOf: - - *672 + - *673 - type: object properties: allow_auto_merge: @@ -173721,7 +173806,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *825 + repository: *826 sender: *4 required: - action @@ -173802,12 +173887,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -173887,11 +173972,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *822 - milestone: *656 - number: *879 - organization: *824 - pull_request: &881 + enterprise: *823 + milestone: *657 + number: *880 + organization: *825 + pull_request: &882 title: Pull Request type: object properties: @@ -176154,7 +176239,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -176233,11 +176318,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -178519,7 +178604,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *825 + repository: *826 sender: *4 required: - action @@ -178643,12 +178728,12 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -178728,11 +178813,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -180999,7 +181084,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -181079,11 +181164,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *822 - installation: *823 - label: *848 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + label: *849 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -183365,7 +183450,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -183446,10 +183531,10 @@ x-webhooks: type: string enum: - locked - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -185729,7 +185814,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -185809,12 +185894,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *822 - milestone: *656 - number: *879 - organization: *824 - pull_request: *881 - repository: *825 + enterprise: *823 + milestone: *657 + number: *880 + organization: *825 + pull_request: *882 + repository: *826 sender: *4 required: - action @@ -185893,12 +185978,12 @@ x-webhooks: type: string enum: - opened - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -185979,12 +186064,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -186064,12 +186149,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -186435,9 +186520,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -188607,7 +188692,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -188687,7 +188772,7 @@ x-webhooks: type: string enum: - deleted - comment: &883 + comment: &884 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. @@ -188972,9 +189057,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -191132,7 +191217,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -191212,11 +191297,11 @@ x-webhooks: type: string enum: - edited - changes: *882 - comment: *883 - enterprise: *822 - installation: *823 - organization: *824 + changes: *883 + comment: *884 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -193377,7 +193462,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -193458,9 +193543,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -195633,7 +195718,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 review: description: The review that was affected. type: object @@ -195880,9 +195965,9 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -197936,8 +198021,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 - review: &884 + repository: *826 + review: &885 description: The review that was affected. type: object properties: @@ -198170,12 +198255,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -200458,7 +200543,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_reviewer: title: User type: object @@ -200542,12 +200627,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -202837,7 +202922,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203029,12 +203114,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -205319,7 +205404,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_reviewer: title: User type: object @@ -205404,12 +205489,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -207685,7 +207770,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207866,9 +207951,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -210043,8 +210128,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 - review: *884 + repository: *826 + review: *885 sender: *4 required: - action @@ -210124,9 +210209,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -212196,7 +212281,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 sender: *4 thread: type: object @@ -212583,9 +212668,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -214641,7 +214726,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 sender: *4 thread: type: object @@ -215031,10 +215116,10 @@ x-webhooks: type: string before: type: string - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -217305,7 +217390,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -217387,11 +217472,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *885 - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + assignee: *886 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -219674,7 +219759,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -219753,11 +219838,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *822 - installation: *823 - label: *848 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + label: *849 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -222030,7 +222115,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -222111,10 +222196,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -224379,7 +224464,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -224579,7 +224664,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *822 + enterprise: *823 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -224671,8 +224756,8 @@ x-webhooks: - url - author - committer - installation: *823 - organization: *824 + installation: *824 + organization: *825 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225247,9 +225332,9 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 registry_package: type: object properties: @@ -225695,7 +225780,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *866 + items: *867 summary: type: string tag_name: @@ -225749,7 +225834,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -225827,9 +225912,9 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 registry_package: type: object properties: @@ -226137,7 +226222,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *866 + items: *867 summary: type: string tag_name: @@ -226186,7 +226271,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -226263,10 +226348,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - release: &886 + enterprise: *823 + installation: *824 + organization: *825 + release: &887 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -226584,7 +226669,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *825 + repository: *826 sender: *4 required: - action @@ -226661,11 +226746,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -226782,11 +226867,11 @@ x-webhooks: type: boolean required: - to - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -226864,9 +226949,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -227188,7 +227273,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *825 + repository: *826 sender: *4 required: - action @@ -227264,10 +227349,10 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - release: &887 + enterprise: *823 + installation: *824 + organization: *825 + release: &888 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -227586,7 +227671,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *825 + repository: *826 sender: *4 required: - action @@ -227662,11 +227747,11 @@ x-webhooks: type: string enum: - released - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -227742,11 +227827,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *822 - installation: *823 - organization: *824 - release: *887 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *888 + repository: *826 sender: *4 required: - action @@ -227822,11 +227907,11 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_advisory: *724 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_advisory: *725 sender: *4 required: - action @@ -227902,11 +227987,11 @@ x-webhooks: type: string enum: - reported - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_advisory: *724 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_advisory: *725 sender: *4 required: - action @@ -227982,10 +228067,10 @@ x-webhooks: type: string enum: - archived - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228062,10 +228147,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228143,10 +228228,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228230,10 +228315,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228345,10 +228430,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228420,10 +228505,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 status: type: string @@ -228504,10 +228589,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228584,10 +228669,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228681,10 +228766,10 @@ x-webhooks: - name required: - repository - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228764,11 +228849,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 sender: *4 required: - action @@ -228846,11 +228931,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 sender: *4 required: - action @@ -228928,11 +229013,11 @@ x-webhooks: type: string enum: - edited - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 changes: type: object properties: @@ -228951,16 +229036,16 @@ x-webhooks: properties: added: type: array - items: *135 + items: *136 deleted: type: array - items: *135 + items: *136 updated: type: array items: type: object properties: - condition: *135 + condition: *136 changes: type: object properties: @@ -228993,16 +229078,16 @@ x-webhooks: properties: added: type: array - items: *692 + items: *693 deleted: type: array - items: *692 + items: *693 updated: type: array items: type: object properties: - rule: *692 + rule: *693 changes: type: object properties: @@ -229236,10 +229321,10 @@ x-webhooks: - from required: - owner - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229317,10 +229402,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229398,7 +229483,7 @@ x-webhooks: type: string enum: - create - alert: &888 + alert: &889 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -229519,10 +229604,10 @@ x-webhooks: type: string enum: - open - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229728,10 +229813,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229809,11 +229894,11 @@ x-webhooks: type: string enum: - reopen - alert: *888 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *889 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230012,10 +230097,10 @@ x-webhooks: enum: - fixed - open - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230093,11 +230178,11 @@ x-webhooks: type: string enum: - created - alert: &889 + alert: &890 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -230105,8 +230190,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri @@ -230204,10 +230289,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230288,11 +230373,11 @@ x-webhooks: type: string enum: - created - alert: *889 - installation: *823 - location: *890 - organization: *824 - repository: *825 + alert: *890 + installation: *824 + location: *891 + organization: *825 + repository: *826 sender: *4 required: - location @@ -230530,11 +230615,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230612,11 +230697,11 @@ x-webhooks: type: string enum: - reopened - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230694,11 +230779,11 @@ x-webhooks: type: string enum: - resolved - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230776,11 +230861,11 @@ x-webhooks: type: string enum: - validated - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230906,10 +230991,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *825 - enterprise: *822 - installation: *823 - organization: *824 + repository: *826 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -230987,11 +231072,11 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - security_advisory: &891 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + security_advisory: &892 description: The details of the security advisory, including summary, description, and severity. type: object @@ -231007,7 +231092,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array items: @@ -231174,11 +231259,11 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - security_advisory: *891 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + security_advisory: *892 sender: *4 required: - action @@ -231251,10 +231336,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -231271,7 +231356,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array items: @@ -231438,11 +231523,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *381 - enterprise: *822 - installation: *823 - organization: *824 - repository: *448 + security_and_analysis: *382 + enterprise: *823 + installation: *824 + organization: *825 + repository: *449 sender: *4 required: - changes @@ -231520,12 +231605,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: &892 + sponsorship: &893 type: object properties: created_at: @@ -231826,12 +231911,12 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - sponsorship @@ -231919,12 +232004,12 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232001,17 +232086,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &893 + effective_date: &894 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: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - sponsorship @@ -232085,7 +232170,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &894 + changes: &895 type: object properties: tier: @@ -232129,13 +232214,13 @@ x-webhooks: - from required: - tier - effective_date: *893 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + effective_date: *894 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232212,13 +232297,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *894 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + changes: *895 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232292,10 +232377,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232378,10 +232463,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232801,15 +232886,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *822 + enterprise: *823 id: description: The unique identifier of the status. type: integer - installation: *823 + installation: *824 name: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 sha: description: The Commit SHA. @@ -232918,15 +233003,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - parent_issue_repo: *67 + parent_issue: *192 + parent_issue_repo: *69 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - installation: *823 - organization: *824 - repository: *825 + sub_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233010,15 +233095,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - parent_issue_repo: *67 + parent_issue: *192 + parent_issue_repo: *69 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - installation: *823 - organization: *824 - repository: *825 + sub_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233102,15 +233187,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - sub_issue_repo: *67 + sub_issue: *192 + sub_issue_repo: *69 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - installation: *823 - organization: *824 - repository: *825 + parent_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233194,15 +233279,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - sub_issue_repo: *67 + sub_issue: *192 + sub_issue_repo: *69 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - installation: *823 - organization: *824 - repository: *825 + parent_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233279,12 +233364,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - team: &895 + team: &896 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -233474,9 +233559,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -233934,7 +234019,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -234010,9 +234095,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -234470,7 +234555,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -234547,9 +234632,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -235007,7 +235092,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -235151,9 +235236,9 @@ x-webhooks: - from required: - permissions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -235611,7 +235696,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - changes @@ -235689,9 +235774,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -236149,7 +236234,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -236225,10 +236310,10 @@ x-webhooks: type: string enum: - started - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -236301,16 +236386,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *822 + enterprise: *823 inputs: type: object nullable: true additionalProperties: true - installation: *823 - organization: *824 + installation: *824 + organization: *825 ref: type: string - repository: *825 + repository: *826 sender: *4 workflow: type: string @@ -236392,10 +236477,10 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: allOf: @@ -236632,7 +236717,7 @@ x-webhooks: type: string required: - conclusion - deployment: *579 + deployment: *580 required: - action - repository @@ -236711,10 +236796,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: allOf: @@ -236974,7 +237059,7 @@ x-webhooks: required: - status - steps - deployment: *579 + deployment: *580 required: - action - repository @@ -237053,10 +237138,10 @@ x-webhooks: type: string enum: - queued - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: type: object @@ -237191,7 +237276,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *579 + deployment: *580 required: - action - repository @@ -237270,10 +237355,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: type: object @@ -237409,7 +237494,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *579 + deployment: *580 required: - action - repository @@ -237489,12 +237574,12 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object @@ -238493,12 +238578,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object @@ -239482,12 +239567,12 @@ x-webhooks: type: string enum: - requested - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 76006f093..5bc2712fb 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -16861,6 +16861,310 @@ } } }, + "/enterprises/{enterprise}/access-restrictions/disable": { + "post": { + "summary": "Disable access restrictions for an enterprise", + "description": "Disable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/disable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully disabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, + "/enterprises/{enterprise}/access-restrictions/enable": { + "post": { + "summary": "Enable access restrictions for an enterprise", + "description": "Enable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/enable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully enabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, "/enterprises/{enterprise}/actions/cache/usage": { "get": { "summary": "Get GitHub Actions cache usage for an enterprise", diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 888507d9e..0b74c14dd 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -444,7 +444,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &98 + - &99 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -453,7 +453,7 @@ paths: required: false schema: type: string - - &99 + - &100 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -462,7 +462,7 @@ paths: required: false schema: type: string - - &100 + - &101 name: direction description: The direction to sort the results by. in: query @@ -683,7 +683,7 @@ paths: required: - vector_string - score - cvss_severities: &114 + cvss_severities: &115 type: object nullable: true properties: @@ -723,7 +723,7 @@ paths: required: - vector_string - score - epss: &115 + epss: &116 type: object nullable: true readOnly: true @@ -861,7 +861,7 @@ paths: - subscriptions_url - type - url - type: &401 + type: &402 type: string description: The type of credit the user is receiving. enum: @@ -994,7 +994,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &219 + schema: &220 title: Validation Error Simple description: Validation Error Simple type: object @@ -1027,7 +1027,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: - - &726 + - &727 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1145,7 +1145,7 @@ paths: GitHub. type: object nullable: true - properties: &176 + properties: &177 id: description: Unique identifier of the GitHub app example: 37 @@ -1278,7 +1278,7 @@ paths: about itself. example: 5 type: integer - required: &177 + required: &178 - id - node_id - owner @@ -1583,7 +1583,7 @@ paths: schema: type: integer default: 30 - - &308 + - &309 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1599,7 +1599,7 @@ paths: application/json: schema: type: array - items: &309 + items: &310 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1679,7 +1679,7 @@ paths: - installation_id - repository_id examples: - default: &310 + default: &311 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1711,7 +1711,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &736 + schema: &737 title: Scim Error description: Scim Error type: object @@ -1738,7 +1738,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &218 + schema: &219 title: Validation Error description: Validation Error type: object @@ -1807,7 +1807,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &312 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1921,7 +1921,7 @@ paths: - request - response examples: - default: &312 + default: &313 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2122,7 +2122,7 @@ paths: parameters: - *17 - *19 - - &181 + - &182 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2675,7 +2675,7 @@ paths: suspended_at: suspended_by: headers: - Link: &40 + Link: &43 example: ; rel="next", ; rel="last" schema: @@ -2716,7 +2716,7 @@ paths: application/json: schema: *22 examples: - default: &77 + default: &79 value: id: 1 account: @@ -2866,11 +2866,11 @@ paths: - selected repositories: type: array - items: &67 + items: &69 title: Repository description: A repository on GitHub. type: object - properties: &379 + properties: &380 id: description: Unique identifier of the repository example: 42 @@ -2890,7 +2890,7 @@ paths: title: License Simple description: License Simple type: object - properties: &192 + properties: &193 key: type: string example: mit @@ -2912,7 +2912,7 @@ paths: html_url: type: string format: uri - required: &193 + required: &194 - key - name - url @@ -3308,7 +3308,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &380 + required: &381 - archive_url - assignees_url - blobs_url @@ -5095,7 +5095,7 @@ paths: responses: '202': *39 '422': *7 - '500': &91 + '500': &40 description: Internal Error content: application/json: @@ -7353,6 +7353,97 @@ paths: enabledForGitHubApps: false category: enterprise-admin subcategory: admin-stats + "/enterprises/{enterprise}/access-restrictions/disable": + post: + summary: Disable access restrictions for an enterprise + description: Disable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/disable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise + parameters: + - &41 + name: enterprise + description: The slug version of the enterprise name. + in: path + required: true + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: &42 + type: object + title: Enterprise Access Restrictions + description: Information about the enterprise access restrictions + proxy header. + properties: + message: + type: string + description: The message returned for the request. + header_name: + type: string + description: The name of the proxy header. + example: sec-GitHub-allowed-enterprise + header_value: + type: string + description: The value of the proxy header. + required: + - message + - header_name + - header_value + examples: + default: + value: + message: Enterprise access restrictions successfully disabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': *29 + '404': *6 + '500': *40 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises + "/enterprises/{enterprise}/access-restrictions/enable": + post: + summary: Enable access restrictions for an enterprise + description: Enable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/enable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise + parameters: + - *41 + responses: + '200': + description: Response + content: + application/json: + schema: *42 + examples: + default: + value: + message: Enterprise access restrictions successfully enabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': *29 + '404': *6 + '500': *40 + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises "/enterprises/{enterprise}/actions/cache/usage": get: summary: Get GitHub Actions cache usage for an enterprise @@ -7368,19 +7459,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-enterprise parameters: - - &41 - name: enterprise - description: The slug version of the enterprise name. - in: path - required: true - schema: - type: string + - *41 responses: '200': description: Response content: application/json: - schema: &220 + schema: &221 type: object properties: total_active_caches_count: @@ -7395,12 +7480,12 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &221 + default: &222 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -7438,7 +7523,7 @@ paths: type: integer runners: type: array - items: &42 + items: &44 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -7487,7 +7572,7 @@ paths: - display_name - source nullable: true - machine_size_details: &45 + machine_size_details: &47 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -7579,7 +7664,7 @@ paths: - public_ip_enabled - platform examples: - default: &222 + default: &223 value: total_count: 2 runners: @@ -7621,7 +7706,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -7707,9 +7792,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: &46 + default: &48 value: id: 5 name: My hosted ubuntu runner @@ -7764,7 +7849,7 @@ paths: type: integer images: type: array - items: &43 + items: &45 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -7800,7 +7885,7 @@ paths: - display_name - source examples: - default: &44 + default: &46 value: id: ubuntu-20.04 platform: linux-x64 @@ -7840,9 +7925,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -7865,7 +7950,7 @@ paths: description: Response content: application/json: - schema: &223 + schema: &224 type: object properties: public_ips: @@ -7890,7 +7975,7 @@ paths: required: - public_ips examples: - default: &224 + default: &225 value: public_ips: current_usage: 17 @@ -7928,9 +8013,9 @@ paths: type: integer machine_specs: type: array - items: *45 + items: *47 examples: - default: &225 + default: &226 value: id: 4-core cpu_cores: 4 @@ -7998,7 +8083,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - &47 + - &49 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -8010,11 +8095,11 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -8033,7 +8118,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - *47 + - *49 requestBody: required: true content: @@ -8071,9 +8156,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -8090,15 +8175,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-enterprise parameters: - *41 - - *47 + - *49 responses: '202': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -8166,7 +8251,7 @@ paths: schema: type: object properties: - enabled_organizations: &48 + enabled_organizations: &50 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -8179,7 +8264,7 @@ paths: description: The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`. - allowed_actions: &49 + allowed_actions: &51 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -8187,12 +8272,12 @@ paths: - all - local_only - selected - selected_actions_url: &228 + selected_actions_url: &229 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &50 + sha_pinning_required: &52 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -8234,9 +8319,9 @@ paths: schema: type: object properties: - enabled_organizations: *48 - allowed_actions: *49 - sha_pinning_required: *50 + enabled_organizations: *50 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled_organizations examples: @@ -8267,7 +8352,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &230 + schema: &231 type: object properties: days: @@ -8285,7 +8370,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &737 + '401': &738 description: Authorization failure '404': *6 x-github: @@ -8313,7 +8398,7 @@ paths: required: true content: application/json: - schema: &231 + schema: &232 type: object properties: days: @@ -8348,7 +8433,7 @@ paths: description: Response content: application/json: - schema: &51 + schema: &53 type: object properties: approval_policy: @@ -8362,7 +8447,7 @@ paths: required: - approval_policy examples: - default: &232 + default: &233 value: approval_policy: first_time_contributors '404': *6 @@ -8391,7 +8476,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -8420,7 +8505,7 @@ paths: description: Response content: application/json: - schema: &233 + schema: &234 type: object required: - run_workflows_from_fork_pull_requests @@ -8446,7 +8531,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &52 + default: &54 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -8474,7 +8559,7 @@ paths: required: true content: application/json: - schema: &234 + schema: &235 type: object required: - run_workflows_from_fork_pull_requests @@ -8497,7 +8582,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -8537,11 +8622,11 @@ paths: type: number organizations: type: array - items: &62 + items: &64 title: Organization Simple description: A GitHub organization. type: object - properties: &110 + properties: &111 login: type: string example: github @@ -8582,7 +8667,7 @@ paths: type: string example: A great organization nullable: true - required: &111 + required: &112 - login - url - id @@ -8599,7 +8684,7 @@ paths: - total_count - organizations examples: - default: &63 + default: &65 value: total_count: 1 organizations: @@ -8678,7 +8763,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - &53 + - &55 name: org_id description: The unique identifier of the organization. in: path @@ -8707,7 +8792,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - *53 + - *55 responses: '204': description: Response @@ -8736,7 +8821,7 @@ paths: description: Response content: application/json: - schema: &54 + schema: &56 type: object properties: github_owned_allowed: @@ -8757,7 +8842,7 @@ paths: items: type: string examples: - default: &55 + default: &57 value: github_owned_allowed: true verified_allowed: false @@ -8790,9 +8875,9 @@ paths: required: true content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -8897,17 +8982,17 @@ paths: description: Success response content: application/json: - schema: &237 + schema: &238 type: object properties: - default_workflow_permissions: &56 + default_workflow_permissions: &58 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &57 + can_approve_pull_request_reviews: &59 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -8915,7 +9000,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &58 + default: &60 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -8945,13 +9030,13 @@ paths: required: true content: application/json: - schema: &238 + schema: &239 type: object properties: - default_workflow_permissions: *56 - can_approve_pull_request_reviews: *57 + default_workflow_permissions: *58 + can_approve_pull_request_reviews: *59 examples: - default: *58 + default: *60 responses: '204': description: Success response @@ -8996,7 +9081,7 @@ paths: type: number runner_groups: type: array - items: &59 + items: &61 type: object properties: id: @@ -9175,9 +9260,9 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: - default: &60 + default: &62 value: id: 2 name: octo-runner-group @@ -9212,7 +9297,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - &61 + - &63 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -9224,9 +9309,9 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: - default: *60 + default: *62 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9246,7 +9331,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: false content: @@ -9298,7 +9383,7 @@ paths: description: Response content: application/json: - schema: *59 + schema: *61 examples: default: value: @@ -9334,7 +9419,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-enterprise parameters: - *41 - - *61 + - *63 responses: '204': description: Response @@ -9358,7 +9443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 + - *63 - *17 - *19 responses: @@ -9373,12 +9458,12 @@ paths: type: number organizations: type: array - items: *62 + items: *64 required: - total_count - organizations examples: - default: *63 + default: *65 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9398,7 +9483,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-organization-access-for-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: true content: @@ -9444,8 +9529,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 - - *53 + - *63 + - *55 responses: '204': description: Response @@ -9468,8 +9553,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *61 - - *53 + - *63 + - *55 responses: '204': description: Response @@ -9493,7 +9578,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *61 + - *63 - *17 - *19 responses: @@ -9508,7 +9593,7 @@ paths: type: number runners: type: array - items: &65 + items: &67 title: Self hosted runners description: A self hosted runner type: object @@ -9537,7 +9622,7 @@ paths: type: boolean labels: type: array - items: &69 + items: &71 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -9570,7 +9655,7 @@ paths: - total_count - runners examples: - default: &66 + default: &68 value: total_count: 2 runners: @@ -9610,7 +9695,7 @@ paths: name: no-gpu type: custom headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9630,7 +9715,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *61 + - *63 requestBody: required: true content: @@ -9675,8 +9760,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-enterprise parameters: - *41 - - *61 - - &64 + - *63 + - &66 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -9705,8 +9790,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-enterprise parameters: - *41 - - *61 - - *64 + - *63 + - *66 responses: '204': description: Response @@ -9749,11 +9834,11 @@ paths: type: number runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9781,7 +9866,7 @@ paths: application/json: schema: type: array - items: &242 + items: &243 title: Runner Application description: Runner Application type: object @@ -9806,7 +9891,7 @@ paths: - download_url - filename examples: - default: &243 + default: &244 value: - os: osx architecture: x64 @@ -9890,7 +9975,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &244 + '201': &245 description: Response content: application/json: @@ -9900,7 +9985,7 @@ paths: - runner - encoded_jit_config properties: - runner: *65 + runner: *67 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -9929,7 +10014,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &108 + '409': &109 description: Conflict content: application/json: @@ -9967,7 +10052,7 @@ paths: description: Response content: application/json: - schema: &68 + schema: &70 title: Authentication Token description: Authentication Token type: object @@ -9989,7 +10074,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *67 + items: *69 single_file: type: string example: config.yaml @@ -10005,7 +10090,7 @@ paths: - token - expires_at examples: - default: &245 + default: &246 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10043,9 +10128,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: &246 + default: &247 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10069,15 +10154,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: &247 + default: &248 value: id: 23 name: MBP @@ -10117,7 +10202,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *41 - - *64 + - *66 responses: '204': description: Response @@ -10142,9 +10227,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: - '200': &70 + '200': &72 description: Response content: application/json: @@ -10158,7 +10243,7 @@ paths: type: integer labels: type: array - items: *69 + items: *71 examples: default: value: @@ -10196,7 +10281,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 requestBody: required: true content: @@ -10220,7 +10305,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10243,7 +10328,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 requestBody: required: true content: @@ -10268,7 +10353,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10291,9 +10376,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 + - *66 responses: - '200': &248 + '200': &249 description: Response content: application/json: @@ -10307,7 +10392,7 @@ paths: type: integer labels: type: array - items: *69 + items: *71 examples: default: value: @@ -10348,8 +10433,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *64 - - &249 + - *66 + - &250 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10357,7 +10442,7 @@ paths: schema: type: string responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -10382,20 +10467,20 @@ paths: description: Response content: application/json: - schema: &75 + schema: &77 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &71 + announcement: &73 type: string description: The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see "[Basic writing and formatting syntax](https://docs.github.com/enterprise-cloud@latest//github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)." example: Very **important** announcement about _something_. nullable: true - expires_at: &72 + expires_at: &74 type: string format: date-time description: 'The time at which the announcement expires. This @@ -10405,7 +10490,7 @@ paths: it to an empty string.' example: '"2021-01-01T00:00:00.000-07:00"' nullable: true - user_dismissible: &73 + user_dismissible: &75 type: boolean description: Whether an announcement can be dismissed by the user. example: false @@ -10416,7 +10501,7 @@ paths: - expires_at - user_dismissible examples: - default: &74 + default: &76 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -10440,18 +10525,18 @@ paths: required: true content: application/json: - schema: &256 + schema: &257 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *71 - expires_at: *72 - user_dismissible: *73 + announcement: *73 + expires_at: *74 + user_dismissible: *75 required: - announcement examples: - default: *74 + default: *76 parameters: - *41 responses: @@ -10459,9 +10544,9 @@ paths: description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -10557,7 +10642,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *41 - - &76 + - &78 name: org description: The organization name. The name is not case sensitive. in: path @@ -10574,7 +10659,7 @@ paths: application/json: schema: type: array - items: &78 + items: &80 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -10625,7 +10710,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#list-github-apps-installed-on-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 - *17 - *19 responses: @@ -10720,7 +10805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#install-a-github-app-on-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 responses: '200': description: A GitHub App installation that was installed previously. @@ -10728,14 +10813,14 @@ paths: application/json: schema: *22 examples: - default: *77 + default: *79 '201': description: A GitHub App installation. content: application/json: schema: *22 examples: - default: *77 + default: *79 requestBody: required: true content: @@ -10803,7 +10888,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#uninstall-a-github-app-from-an-enterprise-owned-organization parameters: - *41 - - *76 + - *78 - *23 responses: '204': @@ -10831,7 +10916,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-the-repositories-accessible-to-a-given-github-app-installation parameters: - *41 - - *76 + - *78 - *23 - *17 - *19 @@ -10843,7 +10928,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -10872,7 +10957,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#toggle-installation-repository-access-between-selected-and-all-repositories parameters: - *41 - - *76 + - *78 - *23 requestBody: required: true @@ -10912,7 +10997,7 @@ paths: application/json: schema: *22 examples: - default: *77 + default: *79 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -10933,7 +11018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *41 - - *76 + - *78 - *23 responses: '200': @@ -10943,7 +11028,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -10994,7 +11079,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *41 - - *76 + - *78 - *23 responses: '200': @@ -11004,7 +11089,7 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: default: value: @@ -11081,7 +11166,7 @@ paths: required: false schema: type: string - - &257 + - &258 name: include description: |- The event types to include: @@ -11099,7 +11184,7 @@ paths: - web - git - all - - &258 + - &259 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -11107,7 +11192,7 @@ paths: required: false schema: type: string - - &259 + - &260 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -11115,7 +11200,7 @@ paths: required: false schema: type: string - - &260 + - &261 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11137,7 +11222,7 @@ paths: application/json: schema: type: array - items: &261 + items: &262 type: object properties: "@timestamp": @@ -11259,7 +11344,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &262 + default: &263 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11438,7 +11523,7 @@ paths: vendor_specific: type: object oneOf: - - &82 + - &84 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -11457,7 +11542,7 @@ paths: - key_id - encrypted_sas_url - container - - &83 + - &85 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -11476,7 +11561,7 @@ paths: - name - encrypted_connstring - key_id - - &84 + - &86 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -11504,7 +11589,7 @@ paths: - bucket - key_id - region - - &85 + - &87 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -11538,7 +11623,7 @@ paths: - encrypted_secret_key - key_id - region - - &86 + - &88 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -11566,7 +11651,7 @@ paths: - key_id - port - ssl_verify - - &87 + - &89 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -11598,7 +11683,7 @@ paths: - key_id - port - ssl_verify - - &88 + - &90 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -11616,7 +11701,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &89 + - &91 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -11647,7 +11732,7 @@ paths: - stream_type - vendor_specific examples: - default: &90 + default: &92 value: enabled: false stream_type: Azure Event Hubs @@ -11661,7 +11746,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &79 + schema: &81 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -11692,7 +11777,7 @@ paths: - created_at - updated_at examples: - default: &80 + default: &82 value: id: 1 stream_type: Splunk @@ -11721,7 +11806,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#list-one-audit-log-streaming-configuration-via-a-stream-id parameters: - *41 - - &81 + - &83 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -11733,9 +11818,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *79 + schema: *81 examples: - default: *80 + default: *82 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11755,7 +11840,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *41 - - *81 + - *83 requestBody: required: true content: @@ -11781,28 +11866,28 @@ paths: vendor_specific: type: object oneOf: - - *82 - - *83 - *84 - *85 - *86 - *87 - *88 - *89 + - *90 + - *91 required: - enabled - stream_type - vendor_specific examples: - default: *90 + default: *92 responses: '200': description: Successful update content: application/json: - schema: *79 + schema: *81 examples: - default: *80 + default: *82 '422': description: Validation error content: @@ -11833,7 +11918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#delete-an-audit-log-streaming-configuration-for-an-enterprise parameters: - *41 - - *81 + - *83 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -11860,13 +11945,13 @@ paths: subcategory: bypass-requests parameters: - *41 - - &92 + - &93 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &93 + - &94 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -11874,7 +11959,7 @@ paths: required: false schema: type: string - - &94 + - &95 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -11882,7 +11967,7 @@ paths: required: false schema: type: string - - &95 + - &96 name: time_period description: |- The time period to filter by. @@ -11898,7 +11983,7 @@ paths: - week - month default: day - - &96 + - &97 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -11925,7 +12010,7 @@ paths: application/json: schema: type: array - items: &264 + items: &265 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12042,7 +12127,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &97 + items: &98 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12086,7 +12171,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &265 + default: &266 value: - id: 21 number: 42 @@ -12155,7 +12240,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/enterprises/{enterprise}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for an enterprise @@ -12177,11 +12262,11 @@ paths: subcategory: delegated-bypass parameters: - *41 - - *92 - *93 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -12191,7 +12276,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -12305,7 +12390,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *97 + items: *98 url: type: string format: uri @@ -12316,7 +12401,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &268 + default: &269 value: - id: 21 number: 42 @@ -12383,7 +12468,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -12401,17 +12486,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &273 + - &274 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &101 + schema: &102 type: string description: The name of the tool used to generate the code scanning analysis. - - &274 + - &275 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -12419,22 +12504,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &102 + schema: &103 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *98 - *99 + - *100 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &275 + schema: &276 type: string description: State of a code scanning alert. enum: @@ -12459,42 +12544,42 @@ paths: application/json: schema: type: array - items: &276 + items: &277 type: object properties: - number: &112 + number: &113 type: integer description: The security alert number. readOnly: true - created_at: &119 + created_at: &120 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &120 + updated_at: &121 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - url: &117 + url: &118 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &118 + html_url: &119 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &516 + instances_url: &517 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &103 + state: &104 type: string description: State of a code scanning alert. nullable: true @@ -12502,7 +12587,7 @@ paths: - open - dismissed - fixed - fixed_at: &122 + fixed_at: &123 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -12516,14 +12601,14 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: &121 + dismissed_at: &122 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissed_reason: &517 + dismissed_reason: &518 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12532,13 +12617,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &518 + dismissed_comment: &519 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &519 + rule: &520 type: object properties: id: @@ -12591,25 +12676,25 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &520 + tool: &521 type: object properties: - name: *101 + name: *102 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *102 - most_recent_instance: &521 + guid: *103 + most_recent_instance: &522 type: object properties: - ref: &514 + ref: &515 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &531 + analysis_key: &532 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12620,13 +12705,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &532 + category: &533 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *103 + state: *104 commit_sha: type: string message: @@ -12665,11 +12750,11 @@ paths: - generated - test - library - repository: &109 + repository: &110 title: Simple Repository description: A GitHub repository. type: object - properties: &208 + properties: &209 id: type: integer format: int64 @@ -12896,7 +12981,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &209 + required: &210 - archive_url - assignees_url - blobs_url @@ -12965,7 +13050,7 @@ paths: - most_recent_instance - repository examples: - default: &277 + default: &278 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13194,9 +13279,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *40 + Link: *43 '404': *6 - '503': &166 + '503': &167 description: Service unavailable content: application/json: @@ -13240,8 +13325,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 responses: '200': description: Response @@ -13249,7 +13334,7 @@ paths: application/json: schema: type: array - items: &104 + items: &105 type: object description: A code security configuration properties: @@ -13618,7 +13703,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &278 + code_scanning_options: &279 type: object description: Security Configuration feature options for code scanning nullable: true @@ -13635,7 +13720,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &107 + code_scanning_default_setup_options: &108 type: object description: Feature options for code scanning default setup nullable: true @@ -13752,9 +13837,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *104 + schema: *105 examples: - default: &105 + default: &106 value: id: 1325 target_type: enterprise @@ -13812,7 +13897,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &281 type: array description: A list of default code security configurations items: @@ -13826,9 +13911,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *104 + configuration: *105 examples: - default: &281 + default: &282 value: - default_for_new_repos: public configuration: @@ -13917,7 +14002,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *41 - - &106 + - &107 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -13929,9 +14014,9 @@ paths: description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *105 + default: *106 '304': *37 '403': *29 '404': *6 @@ -13956,7 +14041,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14035,7 +14120,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14123,13 +14208,13 @@ paths: description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *105 + default: *106 '304': *37 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14153,14 +14238,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *41 - - *106 + - *107 responses: - '204': &132 + '204': &133 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14185,7 +14270,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14212,7 +14297,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14237,7 +14322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *41 - - *106 + - *107 requestBody: required: true content: @@ -14277,12 +14362,12 @@ paths: - none - private_and_internal - public - configuration: *104 + configuration: *105 examples: default: value: default_for_new_repos: all - configuration: &279 + configuration: &280 value: id: 1325 target_type: organization @@ -14339,7 +14424,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *41 - - *106 + - *107 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -14348,8 +14433,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -14367,7 +14452,7 @@ paths: application/json: schema: type: array - items: &282 + items: &283 type: object description: Repositories associated with a code security configuration and attachment status @@ -14385,13 +14470,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *109 + repository: *110 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &283 + repository: &284 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -14799,7 +14884,7 @@ paths: visual_studio_subscription_email: '' total_user_accounts: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -14856,7 +14941,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &123 + items: &124 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -14873,14 +14958,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *110 - required: *111 + properties: *111 + required: *112 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &269 + - &270 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -14939,7 +15024,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &345 + properties: &346 id: description: Unique identifier of the team type: integer @@ -14995,7 +15080,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &346 + required: &347 - id - node_id - url @@ -15123,7 +15208,7 @@ paths: - created_at additionalProperties: false examples: - default: &124 + default: &125 value: total_seats: 2 seats: @@ -15193,8 +15278,8 @@ paths: type: User site_admin: false headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15266,7 +15351,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15355,7 +15440,7 @@ paths: response: value: message: Status for delete command - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15431,7 +15516,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15508,7 +15593,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -15575,7 +15660,7 @@ paths: application/json: schema: type: array - items: &172 + items: &173 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -15882,7 +15967,7 @@ paths: - date additionalProperties: true examples: - default: &173 + default: &174 value: - date: '2024-06-24' total_active_users: 24 @@ -15981,10 +16066,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *91 + '500': *40 '403': *29 '404': *6 - '422': &174 + '422': &175 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -16014,7 +16099,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &290 + - &291 name: state in: query description: |- @@ -16023,7 +16108,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &291 + - &292 name: severity in: query description: |- @@ -16032,7 +16117,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &292 + - &293 name: ecosystem in: query description: |- @@ -16041,14 +16126,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &293 + - &294 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &294 + - &295 name: epss_percentage in: query description: |- @@ -16060,7 +16145,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &295 + - &296 name: has in: query description: |- @@ -16074,7 +16159,7 @@ paths: type: string enum: - patch - - &296 + - &297 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -16084,7 +16169,7 @@ paths: enum: - development - runtime - - &297 + - &298 name: sort in: query description: |- @@ -16099,10 +16184,10 @@ paths: - updated - epss_percentage default: created - - *100 - - *98 + - *101 - *99 - - &298 + - *100 + - &299 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -16115,7 +16200,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &299 + - &300 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -16135,11 +16220,11 @@ paths: application/json: schema: type: array - items: &300 + items: &301 type: object description: A Dependabot alert. properties: - number: *112 + number: *113 state: type: string description: The state of the Dependabot alert. @@ -16154,7 +16239,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &113 + package: &114 type: object description: Details for the vulnerable package. readOnly: true @@ -16198,7 +16283,7 @@ paths: - unknown - direct - transitive - security_advisory: &571 + security_advisory: &572 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -16228,13 +16313,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &116 + items: &117 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *113 + package: *114 severity: type: string description: The severity of the vulnerability. @@ -16300,8 +16385,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *114 - epss: *115 + cvss_severities: *115 + epss: *116 cwes: type: array description: Details for the advisory pertaining to Common @@ -16400,12 +16485,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *116 - url: *117 - html_url: *118 - created_at: *119 - updated_at: *120 - dismissed_at: *121 + security_vulnerability: *117 + url: *118 + html_url: *119 + created_at: *120 + updated_at: *121 + dismissed_at: *122 dismissed_by: title: Simple User description: A GitHub user. @@ -16429,15 +16514,15 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *122 - auto_dismissed_at: &572 + fixed_at: *123 + auto_dismissed_at: &573 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - repository: *109 + repository: *110 required: - number - state @@ -16456,7 +16541,7 @@ paths: - repository additionalProperties: false examples: - default: &301 + default: &302 value: - number: 2 state: dismissed @@ -16873,7 +16958,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - &263 + - &264 name: username description: The handle for the GitHub user account. in: path @@ -16895,10 +16980,10 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *123 + items: *124 examples: - default: *124 - '500': *91 + default: *125 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -16940,7 +17025,7 @@ paths: type: integer network_configurations: type: array - items: &125 + items: &126 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -16980,7 +17065,7 @@ paths: - name - created_on examples: - default: &412 + default: &413 value: total_count: 2 network_configurations: @@ -16999,7 +17084,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17058,9 +17143,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: &126 + default: &127 value: id: 123456789ABCDEF name: My network configuration @@ -17087,7 +17172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - &127 + - &128 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -17099,11 +17184,11 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17121,7 +17206,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - *127 + - *128 requestBody: required: true content: @@ -17160,9 +17245,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17180,7 +17265,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise parameters: - *41 - - *127 + - *128 responses: '204': description: Response @@ -17203,7 +17288,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &413 + - &414 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17215,7 +17300,7 @@ paths: description: Response content: application/json: - schema: &414 + schema: &415 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17249,7 +17334,7 @@ paths: - subnet_id - region examples: - default: &415 + default: &416 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -17257,7 +17342,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17284,7 +17369,7 @@ paths: application/json: schema: type: array - items: &128 + items: &129 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -17350,7 +17435,7 @@ paths: - property_name - value_type examples: - default: &129 + default: &130 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17407,7 +17492,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *128 + items: *129 minItems: 1 maxItems: 100 required: @@ -17437,9 +17522,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -17462,8 +17547,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *41 - - *76 - - &130 + - *78 + - &131 name: custom_property_name description: The custom property name in: path @@ -17475,9 +17560,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: &131 + default: &132 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17510,15 +17595,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 responses: '200': description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -17540,12 +17625,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 requestBody: required: true content: application/json: - schema: &377 + schema: &378 title: Custom Property Set Payload description: Custom property set payload type: object @@ -17609,9 +17694,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -17633,9 +17718,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *41 - - *130 + - *131 responses: - '204': *132 + '204': *133 '403': *29 '404': *6 x-github: @@ -17675,7 +17760,7 @@ paths: - push - repository default: branch - enforcement: &139 + enforcement: &140 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -17688,7 +17773,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &140 + items: &141 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -17729,7 +17814,7 @@ paths: - pull_request - exempt default: always - conditions: &163 + conditions: &164 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -17743,7 +17828,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &133 + - &134 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -17769,7 +17854,7 @@ paths: type: string required: - organization_name - - &136 + - &137 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -17798,7 +17883,7 @@ paths: is prevented. required: - repository_name - - &135 + - &136 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -17826,8 +17911,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *133 - - &138 + - *134 + - &139 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -17840,7 +17925,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &134 + items: &135 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -17871,16 +17956,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *134 + items: *135 required: - repository_property - - *135 + - *136 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &137 + - &138 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -17897,25 +17982,25 @@ paths: type: integer required: - organization_id + - *137 - *136 - - *135 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *137 - *138 - - *135 + - *139 + - *136 rules: type: array description: An array of rules within the ruleset. - items: &164 + items: &165 title: Repository Rule type: object description: A repository rule. oneOf: - - &141 + - &142 title: creation description: Only allow users with bypass permission to create matching refs. @@ -17927,7 +18012,7 @@ paths: type: string enum: - creation - - &142 + - &143 title: update description: Only allow users with bypass permission to update matching refs. @@ -17948,7 +18033,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &143 + - &144 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17960,7 +18045,7 @@ paths: type: string enum: - deletion - - &144 + - &145 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17972,7 +18057,7 @@ paths: type: string enum: - required_linear_history - - &145 + - &146 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17996,7 +18081,7 @@ paths: type: string required: - required_deployment_environments - - &146 + - &147 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -18008,7 +18093,7 @@ paths: type: string enum: - required_signatures - - &147 + - &148 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -18068,7 +18153,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &148 + - &149 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -18115,7 +18200,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &149 + - &150 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -18127,7 +18212,7 @@ paths: type: string enum: - non_fast_forward - - &150 + - &151 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -18163,7 +18248,7 @@ paths: required: - operator - pattern - - &151 + - &152 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -18199,7 +18284,7 @@ paths: required: - operator - pattern - - &152 + - &153 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -18235,7 +18320,7 @@ paths: required: - operator - pattern - - &153 + - &154 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -18271,7 +18356,7 @@ paths: required: - operator - pattern - - &154 + - &155 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -18307,7 +18392,7 @@ paths: required: - operator - pattern - - &155 + - &156 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -18331,7 +18416,7 @@ paths: type: string required: - restricted_file_paths - - &156 + - &157 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -18355,7 +18440,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &157 + - &158 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -18378,7 +18463,7 @@ paths: type: string required: - restricted_file_extensions - - &158 + - &159 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -18402,7 +18487,7 @@ paths: maximum: 100 required: - max_file_size - - &159 + - &160 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -18451,7 +18536,7 @@ paths: - repository_id required: - workflows - - &160 + - &161 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -18537,7 +18622,7 @@ paths: description: Response content: application/json: - schema: &161 + schema: &162 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -18572,11 +18657,11 @@ paths: source: type: string description: The name of the source - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 + items: *141 current_user_can_bypass: type: string description: |- @@ -18608,8 +18693,8 @@ paths: conditions: nullable: true anyOf: - - *135 - - &384 + - *136 + - &385 title: Organization ruleset conditions type: object description: |- @@ -18623,14 +18708,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *135 - *136 + - *137 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *135 + - *136 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -18652,20 +18737,20 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *135 - - *138 + - *136 + - *139 rules: type: array - items: &692 + items: &693 title: Repository Rule type: object description: A repository rule. oneOf: - - *141 - *142 - *143 - *144 - - &690 + - *145 + - &691 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -18743,7 +18828,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *145 - *146 - *147 - *148 @@ -18759,6 +18843,7 @@ paths: - *158 - *159 - *160 + - *161 created_at: type: string format: date-time @@ -18766,7 +18851,7 @@ paths: type: string format: date-time examples: - default: &162 + default: &163 value: id: 21 name: super cool ruleset @@ -18792,7 +18877,7 @@ paths: created_at: '2024-08-15T08:43:03Z' updated_at: '2024-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18825,11 +18910,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *162 + default: *163 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18871,16 +18956,16 @@ paths: - tag - push - repository - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *163 + items: *141 + conditions: *164 rules: description: An array of rules within the ruleset. type: array - items: *164 + items: *165 examples: default: value: @@ -18904,11 +18989,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *162 + default: *163 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18935,7 +19020,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -18968,7 +19053,7 @@ paths: application/json: schema: type: array - items: &165 + items: &166 title: Ruleset version type: object description: The historical version of a ruleset @@ -18992,7 +19077,7 @@ paths: type: string format: date-time examples: - default: &387 + default: &388 value: - version_id: 3 actor: @@ -19010,7 +19095,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19045,9 +19130,9 @@ paths: description: Response content: application/json: - schema: &388 + schema: &389 allOf: - - *165 + - *166 - type: object required: - state @@ -19080,7 +19165,7 @@ paths: rules: - type: repository_delete '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19100,7 +19185,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &389 + - &390 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19111,7 +19196,7 @@ paths: enum: - open - resolved - - &390 + - &391 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19121,7 +19206,7 @@ paths: required: false schema: type: string - - &391 + - &392 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19130,7 +19215,7 @@ paths: required: false schema: type: string - - &392 + - &393 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -19142,11 +19227,11 @@ paths: - created - updated default: created - - *100 + - *101 - *17 - - *98 - *99 - - &393 + - *100 + - &394 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19155,7 +19240,7 @@ paths: required: false schema: type: string - - &394 + - &395 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19164,7 +19249,7 @@ paths: schema: type: boolean default: false - - &395 + - &396 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19173,7 +19258,7 @@ paths: schema: type: boolean default: false - - &396 + - &397 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19189,11 +19274,11 @@ paths: application/json: schema: type: array - items: &397 + items: &398 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -19201,21 +19286,21 @@ paths: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &704 + state: &705 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &705 + resolution: &706 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -19249,7 +19334,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *109 + repository: *110 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -19322,8 +19407,8 @@ paths: pull request. ' - oneOf: &706 - - &708 + oneOf: &707 + - &709 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -19375,7 +19460,7 @@ paths: - blob_url - commit_sha - commit_url - - &709 + - &710 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -19430,7 +19515,7 @@ paths: - page_url - commit_sha - commit_url - - &710 + - &711 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -19444,7 +19529,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &711 + - &712 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -19458,7 +19543,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &712 + - &713 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -19472,7 +19557,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &713 + - &714 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -19486,7 +19571,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &714 + - &715 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -19500,7 +19585,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &715 + - &716 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -19514,7 +19599,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &716 + - &717 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -19528,7 +19613,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &717 + - &718 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -19542,7 +19627,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &718 + - &719 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -19556,7 +19641,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &719 + - &720 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -19570,7 +19655,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &720 + - &721 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -19590,7 +19675,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &398 + default: &399 value: number: 2 created_at: '2020-11-06T18:48:51Z' @@ -19747,9 +19832,9 @@ paths: commit_url: https://api.github.com/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b has_more_locations: true headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -19780,13 +19865,13 @@ paths: description: Response content: application/json: - schema: &399 + schema: &400 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. type: object properties: - pattern_config_version: &168 + pattern_config_version: &169 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -19795,7 +19880,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &167 + items: &168 type: object properties: token_type: @@ -19861,9 +19946,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *167 + items: *168 examples: - default: &400 + default: &401 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -19918,7 +20003,7 @@ paths: schema: type: object properties: - pattern_config_version: *168 + pattern_config_version: *169 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -19944,7 +20029,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *168 + custom_pattern_version: *169 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -19980,7 +20065,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 "/enterprises/{enterprise}/settings/billing/actions": get: @@ -20007,7 +20092,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &404 type: object properties: total_minutes_used: @@ -20077,7 +20162,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &404 + default: &405 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20108,7 +20193,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &405 + - &406 name: advanced_security_product in: query description: | @@ -20128,7 +20213,7 @@ paths: description: Success content: application/json: - schema: &406 + schema: &407 type: object properties: total_advanced_security_committers: @@ -20183,7 +20268,7 @@ paths: required: - repositories examples: - default: &407 + default: &408 value: total_advanced_security_committers: 2 total_count: 2 @@ -20292,8 +20377,8 @@ paths: name: Octocat '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20422,7 +20507,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *41 - - &171 + - &172 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -20434,7 +20519,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &169 + schema: &170 type: object properties: id: @@ -20473,7 +20558,7 @@ paths: - name - resources examples: - default: &170 + default: &171 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -20486,8 +20571,8 @@ paths: name: octocat/hello-world '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20537,15 +20622,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *169 + schema: *170 examples: - default: *170 + default: *171 '400': *14 '403': *29 '404': *6 - '409': *108 - '500': *91 - '503': *166 + '409': *109 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20563,7 +20648,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *41 - - *171 + - *172 responses: '200': description: Response when deleting a cost center @@ -20601,8 +20686,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20623,7 +20708,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *41 - - *171 + - *172 requestBody: required: true content: @@ -20693,9 +20778,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *29 - '409': *108 - '500': *91 - '503': *166 + '409': *109 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20715,7 +20800,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *41 - - *171 + - *172 requestBody: required: true content: @@ -20761,8 +20846,8 @@ paths: message: Resources successfully removed from the cost center. '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20793,7 +20878,7 @@ paths: description: Response content: application/json: - schema: &408 + schema: &409 type: object properties: total_gigabytes_bandwidth_used: @@ -20811,7 +20896,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &409 + default: &410 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -20846,7 +20931,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &411 type: object properties: days_left_in_billing_cycle: @@ -20864,7 +20949,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &411 + default: &412 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -20889,7 +20974,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *41 - - &210 + - &211 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -20898,7 +20983,7 @@ paths: required: false schema: type: integer - - &211 + - &212 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -20907,7 +20992,7 @@ paths: required: false schema: type: integer - - &212 + - &213 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -20916,7 +21001,7 @@ paths: required: false schema: type: integer - - &213 + - &214 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -20937,7 +21022,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &214 + schema: &215 type: object properties: usageItems: @@ -20990,7 +21075,7 @@ paths: - netAmount - organizationName examples: - default: &215 + default: &216 value: usageItems: - date: '2023-08-01' @@ -21006,8 +21091,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21078,13 +21163,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -21173,7 +21258,7 @@ paths: application/json: schema: type: array - items: &203 + items: &204 title: Event description: Event type: object @@ -21183,7 +21268,7 @@ paths: type: type: string nullable: true - actor: &175 + actor: &176 title: Actor description: Actor type: object @@ -21223,18 +21308,18 @@ paths: - id - name - url - org: *175 + org: *176 payload: type: object properties: action: type: string - issue: &191 + issue: &192 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &629 + properties: &630 id: type: integer format: int64 @@ -21346,7 +21431,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &370 + properties: &371 url: type: string format: uri @@ -21416,7 +21501,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &371 + required: &372 - closed_issues - creator - description @@ -21495,7 +21580,7 @@ paths: timeline_url: type: string format: uri - type: &330 + type: &331 title: Issue Type description: The type of issue. type: object @@ -21544,7 +21629,7 @@ paths: - node_id - name - description - repository: *67 + repository: *69 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -21554,9 +21639,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - author_association: &178 + properties: *177 + required: *178 + author_association: &179 title: author_association type: string example: OWNER @@ -21570,7 +21655,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &179 + reactions: &180 title: Reaction Rollup type: object properties: @@ -21606,7 +21691,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &764 + sub_issues_summary: &765 title: Sub-issues Summary type: object properties: @@ -21626,7 +21711,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &765 + issue_dependencies_summary: &766 title: Issue Dependencies Summary type: object properties: @@ -21645,7 +21730,7 @@ paths: - total_blocking issue_field_values: type: array - items: &766 + items: &767 title: Issue Field Value description: A value assigned to an issue field type: object @@ -21705,7 +21790,7 @@ paths: - node_id - data_type - value - required: &630 + required: &631 - assignee - closed_at - comments @@ -21726,7 +21811,7 @@ paths: - user - created_at - updated_at - comment: &627 + comment: &628 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -21774,7 +21859,7 @@ paths: issue_url: type: string format: uri - author_association: *178 + author_association: *179 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -21784,9 +21869,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - id - node_id @@ -21881,7 +21966,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21962,7 +22047,7 @@ paths: _links: type: object properties: - timeline: &180 + timeline: &181 title: Link With Type description: Hypermedia Link with Type type: object @@ -21974,17 +22059,17 @@ paths: required: - href - type - user: *180 - security_advisories: *180 - current_user: *180 - current_user_public: *180 - current_user_actor: *180 - current_user_organization: *180 + user: *181 + security_advisories: *181 + current_user: *181 + current_user_public: *181 + current_user_actor: *181 + current_user_organization: *181 current_user_organizations: type: array - items: *180 - repository_discussions: *180 - repository_discussions_category: *180 + items: *181 + repository_discussions: *181 + repository_discussions_category: *181 required: - timeline - user @@ -22046,7 +22131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22056,7 +22141,7 @@ paths: application/json: schema: type: array - items: &182 + items: &183 title: Base Gist description: Base Gist type: object @@ -22155,7 +22240,7 @@ paths: - created_at - updated_at examples: - default: &183 + default: &184 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -22200,7 +22285,7 @@ paths: site_admin: false truncated: false headers: - Link: *40 + Link: *43 '304': *37 '403': *29 x-github: @@ -22276,7 +22361,7 @@ paths: description: Response content: application/json: - schema: &184 + schema: &185 title: Gist Simple description: Gist Simple type: object @@ -22293,7 +22378,7 @@ paths: url: type: string format: uri - user: &778 + user: &779 title: Public User description: Public User type: object @@ -22655,7 +22740,7 @@ paths: truncated: type: boolean examples: - default: &185 + default: &186 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -22759,7 +22844,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22769,11 +22854,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '403': *29 @@ -22793,7 +22878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *181 + - *182 - *17 - *19 responses: @@ -22803,11 +22888,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '401': *25 '304': *37 '403': *29 @@ -22833,7 +22918,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &186 + - &187 name: gist_id description: The unique identifier of the gist. in: path @@ -22845,10 +22930,10 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - default: *185 - '403': &189 + default: *186 + '403': &190 description: Forbidden Gist content: application/json: @@ -22896,7 +22981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *186 + - *187 requestBody: required: true content: @@ -22956,9 +23041,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - updateGist: *185 + updateGist: *186 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -23116,7 +23201,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23145,7 +23230,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23155,7 +23240,7 @@ paths: application/json: schema: type: array - items: &187 + items: &188 title: Gist Comment description: A comment made to a gist. type: object @@ -23190,7 +23275,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *178 + author_association: *179 required: - url - id @@ -23230,7 +23315,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -23255,7 +23340,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *186 + - *187 requestBody: required: true content: @@ -23280,9 +23365,9 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: &188 + default: &189 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -23340,8 +23425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *186 - - &190 + - *187 + - &191 name: comment_id description: The unique identifier of the comment. in: path @@ -23354,12 +23439,12 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: *188 + default: *189 '304': *37 '404': *6 - '403': *189 + '403': *190 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23381,8 +23466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *186 - - *190 + - *187 + - *191 requestBody: required: true content: @@ -23407,9 +23492,9 @@ paths: description: Response content: application/json: - schema: *187 + schema: *188 examples: - default: *188 + default: *189 '404': *6 x-github: githubCloudOnly: false @@ -23426,8 +23511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *186 - - *190 + - *187 + - *191 responses: '204': description: Response @@ -23450,7 +23535,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23551,7 +23636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *186 + - *187 - *17 - *19 responses: @@ -23561,7 +23646,7 @@ paths: application/json: schema: type: array - items: *184 + items: *185 examples: default: value: @@ -23607,7 +23692,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '404': *6 '304': *37 '403': *29 @@ -23626,13 +23711,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *186 + - *187 responses: '201': description: Response content: application/json: - schema: *182 + schema: *183 examples: default: value: @@ -23703,7 +23788,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *186 + - *187 responses: '204': description: Response if gist is starred @@ -23733,7 +23818,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23755,7 +23840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *186 + - *187 responses: '204': description: Response @@ -23784,7 +23869,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *186 + - *187 - name: sha in: path required: true @@ -23795,9 +23880,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *185 examples: - default: *185 + default: *186 '422': *15 '404': *6 '403': *29 @@ -23956,7 +24041,7 @@ paths: type: integer repositories: type: array - items: *67 + items: *69 repository_selection: type: string example: selected @@ -24079,7 +24164,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '403': *29 '304': *37 '401': *25 @@ -24163,7 +24248,7 @@ paths: - closed - all default: open - - &333 + - &334 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24181,8 +24266,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - name: collab in: query required: false @@ -24212,9 +24297,9 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: &334 + default: &335 value: - id: 1 node_id: MDU6SXNzdWUx @@ -24459,7 +24544,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '404': *6 @@ -24498,8 +24583,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 examples: default: value: @@ -24784,7 +24869,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &194 + X-CommonMarker-Version: &195 example: 0.17.4 schema: type: string @@ -24839,7 +24924,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *194 + X-CommonMarker-Version: *195 content: text/html: schema: @@ -24868,7 +24953,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &197 + - &198 name: account_id description: account_id parameter in: path @@ -24880,7 +24965,7 @@ paths: description: Response content: application/json: - schema: &196 + schema: &197 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -24910,7 +24995,7 @@ paths: nullable: true id: type: integer - plan: &195 + plan: &196 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -24999,7 +25084,7 @@ paths: nullable: true updated_at: type: string - plan: *195 + plan: *196 required: - url - id @@ -25007,7 +25092,7 @@ paths: - login - marketplace_purchase examples: - default: &198 + default: &199 value: url: https://api.github.com/orgs/github type: Organization @@ -25092,9 +25177,9 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: &199 + default: &200 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -25112,7 +25197,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '404': *6 '401': *25 x-github: @@ -25134,14 +25219,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &200 + - &201 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &201 + - &202 name: sort description: The property to sort the results by. in: query @@ -25171,9 +25256,9 @@ paths: application/json: schema: type: array - items: *196 + items: *197 examples: - default: &202 + default: &203 value: - url: https://api.github.com/orgs/github type: Organization @@ -25224,7 +25309,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '404': *6 '422': *15 '401': *25 @@ -25247,15 +25332,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *197 + - *198 responses: '200': description: Response content: application/json: - schema: *196 + schema: *197 examples: - default: *198 + default: *199 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -25287,11 +25372,11 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: - default: *199 + default: *200 headers: - Link: *40 + Link: *43 '401': *25 x-github: githubCloudOnly: false @@ -25312,8 +25397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *200 - *201 + - *202 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -25333,11 +25418,11 @@ paths: application/json: schema: type: array - items: *196 + items: *197 examples: - default: *202 + default: *203 headers: - Link: *40 + Link: *43 '401': *25 x-github: githubCloudOnly: false @@ -25599,14 +25684,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &435 + - &436 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &436 + - &437 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -25623,7 +25708,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -25677,7 +25762,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &449 + '301': &450 description: Moved permanently content: application/json: @@ -25699,7 +25784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &659 + - &660 name: all description: If `true`, show notifications marked as read. in: query @@ -25707,7 +25792,7 @@ paths: schema: type: boolean default: false - - &660 + - &661 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -25716,8 +25801,8 @@ paths: schema: type: boolean default: false - - *181 - - &661 + - *182 + - &662 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -25742,18 +25827,18 @@ paths: application/json: schema: type: array - items: &204 + items: &205 title: Thread description: Thread type: object properties: id: type: string - repository: &241 + repository: &242 title: Minimal Repository description: Minimal Repository type: object - properties: &303 + properties: &304 id: type: integer format: int64 @@ -26029,7 +26114,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &381 + security_and_analysis: &382 nullable: true type: object properties: @@ -26111,7 +26196,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &304 + required: &305 - archive_url - assignees_url - blobs_url @@ -26199,7 +26284,7 @@ paths: - url - subscription_url examples: - default: &662 + default: &663 value: - id: '1' repository: @@ -26281,7 +26366,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -26365,7 +26450,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &205 + - &206 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -26379,7 +26464,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *205 examples: default: value: @@ -26482,7 +26567,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *205 + - *206 responses: '205': description: Reset Content @@ -26505,7 +26590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *205 + - *206 responses: '204': description: No content @@ -26528,13 +26613,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *205 + - *206 responses: '200': description: Response content: application/json: - schema: &206 + schema: &207 title: Thread Subscription description: Thread Subscription type: object @@ -26571,7 +26656,7 @@ paths: - url - subscribed examples: - default: &207 + default: &208 value: subscribed: true ignored: false @@ -26602,7 +26687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *205 + - *206 requestBody: required: false content: @@ -26623,9 +26708,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: - default: *207 + default: *208 '304': *37 '403': *29 '401': *25 @@ -26648,7 +26733,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *205 + - *206 responses: '204': description: Response @@ -26743,9 +26828,9 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: &795 + default: &796 value: - login: github id: 1 @@ -26809,7 +26894,7 @@ paths: type: integer custom_roles: type: array - items: &285 + items: &286 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -26857,7 +26942,7 @@ paths: - created_at - updated_at examples: - default: &286 + default: &287 value: id: 8030 name: Security Engineer @@ -26904,7 +26989,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *76 + - *78 - name: page in: query description: The page number of results to fetch. @@ -26948,8 +27033,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *208 - required: *209 + properties: *209 + required: *210 nullable: true additionalProperties: false examples: @@ -27055,7 +27140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -27121,7 +27206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *76 + - *78 requestBody: required: true content: @@ -27168,23 +27253,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - - *76 - - *210 + - *78 - *211 - *212 - *213 + - *214 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *214 + schema: *215 examples: - default: *215 + default: *216 '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27210,13 +27295,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &216 + schema: &217 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -27549,7 +27634,7 @@ paths: - updated_at - archived_at examples: - default-response: &217 + default-response: &218 value: login: github id: 1 @@ -27651,7 +27736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *76 + - *78 requestBody: required: false content: @@ -27874,18 +27959,18 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: *217 + default: *218 '422': description: Validation failed content: application/json: schema: oneOf: - - *218 - *219 - '409': *108 + - *220 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27908,7 +27993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *76 + - *78 responses: '202': *39 '404': *6 @@ -27933,17 +28018,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *221 + default: *222 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27964,7 +28049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -27982,7 +28067,7 @@ paths: type: integer repository_cache_usages: type: array - items: &454 + items: &455 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -28017,7 +28102,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28037,7 +28122,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -28055,11 +28140,11 @@ paths: type: integer runners: type: array - items: *42 + items: *44 examples: - default: *222 + default: *223 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28077,7 +28162,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -28144,9 +28229,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28164,7 +28249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28180,9 +28265,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28200,7 +28285,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28216,9 +28301,9 @@ paths: type: integer images: type: array - items: *43 + items: *45 examples: - default: *44 + default: *46 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28235,15 +28320,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28261,7 +28346,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28277,9 +28362,9 @@ paths: type: integer machine_specs: type: array - items: *45 + items: *47 examples: - default: *225 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28297,7 +28382,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28341,18 +28426,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 responses: '200': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28370,8 +28455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 requestBody: required: true content: @@ -28409,9 +28494,9 @@ paths: description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28427,16 +28512,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *76 - - *47 + - *78 + - *49 responses: '202': description: Response content: application/json: - schema: *42 + schema: *44 examples: - default: *46 + default: *48 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28456,13 +28541,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *76 + - *78 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &226 + schema: &227 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -28476,7 +28561,7 @@ paths: required: - include_claim_keys examples: - default: &227 + default: &228 value: include_claim_keys: - repo @@ -28498,20 +28583,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 responses: '201': description: Empty response content: application/json: - schema: &252 + schema: &253 title: Empty Object description: An object without any properties. type: object @@ -28541,7 +28626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -28550,7 +28635,7 @@ paths: schema: type: object properties: - enabled_repositories: &229 + enabled_repositories: &230 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -28563,9 +28648,9 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: *49 - selected_actions_url: *228 - sha_pinning_required: *50 + allowed_actions: *51 + selected_actions_url: *229 + sha_pinning_required: *52 required: - enabled_repositories examples: @@ -28595,7 +28680,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -28606,9 +28691,9 @@ paths: schema: type: object properties: - enabled_repositories: *229 - allowed_actions: *49 - sha_pinning_required: *50 + enabled_repositories: *230 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled_repositories examples: @@ -28636,13 +28721,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: response: summary: Example response @@ -28668,12 +28753,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *231 + schema: *232 examples: application/json: value: @@ -28683,7 +28768,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -28703,15 +28788,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *51 + schema: *53 examples: - default: *232 + default: *233 '404': *6 x-github: enabledForGitHubApps: true @@ -28730,7 +28815,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -28740,7 +28825,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -28762,15 +28847,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *52 + default: *54 '403': *29 '404': *6 x-github: @@ -28788,14 +28873,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *234 + schema: *235 examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -28825,7 +28910,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -28843,9 +28928,9 @@ paths: type: number repositories: type: array - items: *67 + items: *69 examples: - default: &236 + default: &237 value: total_count: 1 repositories: @@ -28985,7 +29070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -29029,8 +29114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *76 - - &235 + - *78 + - &236 name: repository_id description: The unique identifier of the repository. in: path @@ -29058,8 +29143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: Response @@ -29082,15 +29167,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *54 + schema: *56 examples: - default: *55 + default: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29113,7 +29198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -29121,9 +29206,9 @@ paths: required: false content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29143,7 +29228,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -29191,7 +29276,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29218,7 +29303,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29238,7 +29323,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -29253,9 +29338,9 @@ paths: type: integer repositories: type: array - items: *67 + items: *69 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -29275,7 +29360,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29323,14 +29408,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29350,14 +29435,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *76 - - *235 + - *78 + - *236 responses: '204': description: No content '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 x-github: enabledForGitHubApps: true @@ -29379,15 +29464,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29408,7 +29493,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Success response @@ -29419,9 +29504,9 @@ paths: required: false content: application/json: - schema: *238 + schema: *239 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29441,7 +29526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *76 + - *78 - *17 - *19 - name: visible_to_repository @@ -29466,7 +29551,7 @@ paths: type: number runner_groups: type: array - items: &239 + items: &240 type: object properties: id: @@ -29582,7 +29667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -29654,9 +29739,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: &240 + default: &241 value: id: 2 name: octo-runner-group @@ -29691,14 +29776,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 responses: '200': description: Response content: application/json: - schema: *239 + schema: *240 examples: default: value: @@ -29734,8 +29819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -29789,9 +29874,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: *240 + default: *241 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29810,8 +29895,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *76 - - *61 + - *78 + - *63 responses: '204': description: Response @@ -29834,8 +29919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *17 - *19 responses: @@ -29853,11 +29938,11 @@ paths: type: number runners: type: array - items: *42 + items: *44 examples: - default: *222 + default: *223 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -29877,8 +29962,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *19 - *17 responses: @@ -29896,9 +29981,9 @@ paths: type: number repositories: type: array - items: *241 + items: *242 examples: - default: &781 + default: &782 value: total_count: 1 repositories: @@ -30150,8 +30235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -30195,9 +30280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 - - *235 + - *78 + - *63 + - *236 responses: '204': description: Response @@ -30219,9 +30304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *76 - - *61 - - *235 + - *78 + - *63 + - *236 responses: '204': description: Response @@ -30244,8 +30329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 - *17 - *19 responses: @@ -30263,11 +30348,11 @@ paths: type: number runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -30286,8 +30371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *76 - - *61 + - *78 + - *63 requestBody: required: true content: @@ -30331,9 +30416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *76 - - *61 - - *64 + - *78 + - *63 + - *66 responses: '204': description: Response @@ -30355,9 +30440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *76 - - *61 - - *64 + - *78 + - *63 + - *66 responses: '204': description: Response @@ -30387,7 +30472,7 @@ paths: in: query schema: type: string - - *76 + - *78 - *17 - *19 responses: @@ -30405,11 +30490,11 @@ paths: type: integer runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30431,7 +30516,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -30439,9 +30524,9 @@ paths: application/json: schema: type: array - items: *242 + items: *243 examples: - default: *243 + default: *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30463,7 +30548,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -30506,10 +30591,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *244 + '201': *245 '404': *6 '422': *7 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30537,15 +30622,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *245 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30573,15 +30658,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *76 + - *78 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *246 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30603,16 +30688,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *247 + default: *248 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30633,8 +30718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: '204': description: Response @@ -30660,10 +30745,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: - '200': *70 + '200': *72 '404': *6 x-github: githubCloudOnly: false @@ -30685,8 +30770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 requestBody: required: true content: @@ -30710,7 +30795,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30734,8 +30819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 requestBody: required: true content: @@ -30760,7 +30845,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30784,10 +30869,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 + - *78 + - *66 responses: - '200': *248 + '200': *249 '404': *6 x-github: githubCloudOnly: false @@ -30814,11 +30899,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *76 - - *64 - - *249 + - *78 + - *66 + - *250 responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -30843,7 +30928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -30861,7 +30946,7 @@ paths: type: integer secrets: type: array - items: &250 + items: &251 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -30911,7 +30996,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30934,13 +31019,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &474 + schema: &475 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -30969,7 +31054,7 @@ paths: - key_id - key examples: - default: &475 + default: &476 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30994,8 +31079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *76 - - &251 + - *78 + - &252 name: secret_name description: The name of the secret. in: path @@ -31007,7 +31092,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -31037,8 +31122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -31095,7 +31180,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -31121,8 +31206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -31148,8 +31233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -31167,9 +31252,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: &255 + default: &256 value: total_count: 1 repositories: @@ -31261,8 +31346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -31314,8 +31399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -31348,8 +31433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -31381,8 +31466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *76 - - &459 + - *78 + - &460 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -31406,7 +31491,7 @@ paths: type: integer variables: type: array - items: &253 + items: &254 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -31470,7 +31555,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31491,7 +31576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *76 + - *78 requestBody: required: true content: @@ -31539,7 +31624,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -31564,8 +31649,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *76 - - &254 + - *78 + - &255 name: name description: The name of the variable. in: path @@ -31577,7 +31662,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -31607,8 +31692,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 requestBody: required: true content: @@ -31670,8 +31755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 responses: '204': description: Response @@ -31697,8 +31782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - *19 - *17 responses: @@ -31716,9 +31801,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 '409': description: Response when the visibility of the variable is not set to `selected` @@ -31744,8 +31829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 requestBody: required: true content: @@ -31794,8 +31879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - name: repository_id in: path required: true @@ -31829,8 +31914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *76 - - *254 + - *78 + - *255 - name: repository_id in: path required: true @@ -31861,15 +31946,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -31888,19 +31973,19 @@ paths: required: true content: application/json: - schema: *256 + schema: *257 examples: - default: *74 + default: *76 parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *75 + schema: *77 examples: - default: *74 + default: *76 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -31916,7 +32001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -31939,7 +32024,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *76 + - *78 requestBody: required: true content: @@ -32069,7 +32154,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *76 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -32152,9 +32237,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations-by-bulk-subject-digests parameters: - *17 - - *98 - *99 - - *76 + - *100 + - *78 requestBody: required: true content: @@ -32177,12 +32262,12 @@ paths: required: - subject_digests examples: - default: &814 + default: &815 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &815 + withPredicateType: &816 value: subject_digests: - sha256:abc123 @@ -32240,7 +32325,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &816 + default: &817 value: attestations_subject_digests: - sha256:abc: @@ -32349,7 +32434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *76 + - *78 requestBody: required: true content: @@ -32414,7 +32499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *76 + - *78 - name: subject_digest description: Subject Digest in: path @@ -32445,7 +32530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *76 + - *78 - name: attestation_id description: Attestation ID in: path @@ -32481,9 +32566,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations parameters: - *17 - - *98 - *99 - - *76 + - *100 + - *78 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -32534,7 +32619,7 @@ paths: bundle_url: type: string examples: - default: &488 + default: &489 value: attestations: - bundle: @@ -32652,7 +32737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *76 + - *78 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -32660,10 +32745,10 @@ paths: required: false schema: type: string - - *257 - *258 - *259 - *260 + - *261 - *17 responses: '200': @@ -32672,9 +32757,9 @@ paths: application/json: schema: type: array - items: *261 + items: *262 examples: - default: *262 + default: *263 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -32691,7 +32776,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -32703,7 +32788,7 @@ paths: type: array items: *4 examples: - default: &335 + default: &336 value: - login: octocat id: 1 @@ -32741,8 +32826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: If the user is blocked @@ -32767,8 +32852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -32788,8 +32873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -32815,17 +32900,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *76 - - &266 + - *78 + - &267 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *93 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -32835,11 +32920,11 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for an org @@ -32860,12 +32945,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *76 - - *266 - - *93 + - *78 + - *267 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -32875,11 +32960,11 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *268 + default: *269 '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/campaigns": get: summary: List campaigns for an organization @@ -32896,15 +32981,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *76 + - *78 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &270 + schema: &271 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -32930,7 +33015,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -32961,7 +33046,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *269 + items: *270 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -32979,7 +33064,7 @@ paths: type: string format: date-time nullable: true - state: *270 + state: *271 contact_link: description: The contact link of the campaign. type: string @@ -33074,9 +33159,9 @@ paths: closed_at: state: open headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33100,7 +33185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -33194,9 +33279,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: &272 + default: &273 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -33245,7 +33330,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33267,7 +33352,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33279,16 +33364,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33309,7 +33394,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33358,7 +33443,7 @@ paths: type: string format: uri nullable: true - state: *270 + state: *271 examples: default: value: @@ -33368,9 +33453,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 '400': description: Bad Request content: @@ -33382,7 +33467,7 @@ paths: content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33403,7 +33488,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *76 + - *78 - name: campaign_number description: The campaign number. in: path @@ -33414,7 +33499,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33436,20 +33521,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *76 - - *273 + - *78 - *274 - - *98 + - *275 - *99 + - *100 - *19 - *17 - - *100 + - *101 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *275 + schema: *276 - name: sort description: The property by which to sort the results. in: query @@ -33465,7 +33550,7 @@ paths: be returned. in: query required: false - schema: &515 + schema: &516 type: string description: Severity of a code scanning alert. enum: @@ -33483,13 +33568,13 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *277 + default: *278 headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33511,7 +33596,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *76 + - *78 - name: target_type in: query description: The target type of the code security configuration @@ -33530,8 +33615,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 responses: '200': description: Response @@ -33539,7 +33624,7 @@ paths: application/json: schema: type: array - items: *104 + items: *105 examples: default: value: @@ -33622,7 +33707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *76 + - *78 requestBody: required: true content: @@ -33700,7 +33785,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *278 + code_scanning_options: *279 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -33709,7 +33794,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -33841,9 +33926,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *104 + schema: *105 examples: - default: *279 + default: *280 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33865,15 +33950,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: - default: *281 + default: *282 '304': *37 '403': *29 '404': *6 @@ -33899,7 +33984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -33925,11 +34010,11 @@ paths: - 32 - 91 responses: - '204': *132 + '204': *133 '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33951,16 +34036,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 responses: '200': description: Response content: application/json: - schema: *104 + schema: *105 examples: - default: *279 + default: *280 '304': *37 '403': *29 '404': *6 @@ -33984,8 +34069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34064,7 +34149,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *107 + code_scanning_default_setup_options: *108 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -34182,7 +34267,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *104 + schema: *105 examples: default: value: @@ -34241,14 +34326,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 responses: - '204': *132 + '204': *133 '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34272,8 +34357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34336,8 +34421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *76 - - *106 + - *78 + - *107 requestBody: required: true content: @@ -34377,12 +34462,12 @@ paths: - none - private_and_internal - public - configuration: *104 + configuration: *105 examples: default: value: default_for_new_repos: all - configuration: *279 + configuration: *280 '403': *29 '404': *6 x-github: @@ -34406,8 +34491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *76 - - *106 + - *78 + - *107 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -34416,8 +34501,8 @@ paths: schema: type: integer default: 30 - - *98 - *99 + - *100 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -34435,13 +34520,13 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *283 + repository: *284 '403': *29 '404': *6 x-github: @@ -34465,7 +34550,7 @@ paths: parameters: - *17 - *19 - - *76 + - *78 responses: '200': description: Response @@ -34481,7 +34566,7 @@ paths: type: integer codespaces: type: array - items: &336 + items: &337 type: object title: Codespace description: A codespace. @@ -34506,12 +34591,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *241 + repository: *242 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &544 + properties: &545 name: type: string description: The name of the machine. @@ -34553,7 +34638,7 @@ paths: - ready - in_progress nullable: true - required: &545 + required: &546 - name - display_name - operating_system @@ -34758,7 +34843,7 @@ paths: - pulls_url - recent_folders examples: - default: &337 + default: &338 value: total_count: 3 codespaces: @@ -35168,7 +35253,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -35190,7 +35275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -35234,7 +35319,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35257,7 +35342,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *76 + - *78 deprecated: true requestBody: required: true @@ -35289,7 +35374,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35312,7 +35397,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *76 + - *78 requestBody: required: true content: @@ -35343,7 +35428,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35364,7 +35449,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -35382,7 +35467,7 @@ paths: type: integer secrets: type: array - items: &284 + items: &285 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -35421,7 +35506,7 @@ paths: - updated_at - visibility examples: - default: &546 + default: &547 value: total_count: 2 secrets: @@ -35434,7 +35519,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35453,13 +35538,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &547 + schema: &548 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -35488,7 +35573,7 @@ paths: - key_id - key examples: - default: &548 + default: &549 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35511,23 +35596,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: &550 + default: &551 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35547,8 +35632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -35603,7 +35688,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -35629,8 +35714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -35655,8 +35740,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -35674,9 +35759,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 '404': *6 x-github: githubCloudOnly: false @@ -35698,8 +35783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -35749,8 +35834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -35783,8 +35868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -35823,7 +35908,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *76 + - *78 responses: '200': description: OK @@ -35932,7 +36017,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -35964,7 +36049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *76 + - *78 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -35987,12 +36072,12 @@ paths: currently being billed. seats: type: array - items: *123 + items: *124 examples: - default: *124 + default: *125 headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36025,7 +36110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36067,7 +36152,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36103,7 +36188,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36145,7 +36230,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36183,7 +36268,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36224,7 +36309,7 @@ paths: default: value: seats_created: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36260,7 +36345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *76 + - *78 requestBody: content: application/json: @@ -36302,7 +36387,7 @@ paths: default: value: seats_cancelled: 5 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -36341,7 +36426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *76 + - *78 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -36373,13 +36458,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36401,7 +36486,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -36545,7 +36630,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *76 + - *78 - name: credential_id in: path required: true @@ -36576,7 +36661,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of custom role names @@ -36591,7 +36676,7 @@ paths: type: integer custom_roles: type: array - items: *285 + items: *286 examples: default: value: @@ -36678,12 +36763,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &288 + schema: &289 type: object properties: name: @@ -36724,9 +36809,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36750,8 +36835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *76 - - &287 + - *78 + - &288 name: role_id description: The unique identifier of the role. in: path @@ -36763,9 +36848,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '404': *6 x-github: githubCloudOnly: true @@ -36787,13 +36872,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: application/json: - schema: &289 + schema: &290 type: object properties: name: @@ -36831,9 +36916,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36857,8 +36942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -36886,12 +36971,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: *288 + schema: *289 examples: default: value: @@ -36905,9 +36990,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -36937,16 +37022,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '200': description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '404': *6 x-github: githubCloudOnly: true @@ -36974,13 +37059,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: application/json: - schema: *289 + schema: *290 examples: default: value: @@ -36995,9 +37080,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 '422': *15 '404': *6 x-github: @@ -37027,8 +37112,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -37056,12 +37141,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *76 - - *290 + - *78 - *291 - *292 - *293 - *294 + - *295 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37077,14 +37162,14 @@ paths: Can be: `jfrog-artifactory` schema: type: string - - *295 - *296 - *297 - - *100 - - *98 - - *99 - *298 + - *101 + - *99 + - *100 - *299 + - *300 - *17 responses: '200': @@ -37093,9 +37178,9 @@ paths: application/json: schema: type: array - items: *300 + items: *301 examples: - default: *301 + default: *302 '304': *37 '400': *14 '403': *29 @@ -37121,7 +37206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *76 + - *78 - *17 - *19 responses: @@ -37139,7 +37224,7 @@ paths: type: integer secrets: type: array - items: &302 + items: &303 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37189,7 +37274,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37210,13 +37295,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: &575 + schema: &576 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37233,7 +37318,7 @@ paths: - key_id - key examples: - default: &576 + default: &577 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37256,14 +37341,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: Response content: application/json: - schema: *302 + schema: *303 examples: default: value: @@ -37291,8 +37376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -37347,7 +37432,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -37371,8 +37456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -37396,8 +37481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - *19 - *17 responses: @@ -37415,9 +37500,9 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37438,8 +37523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -37489,8 +37574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -37521,8 +37606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *76 - - *251 + - *78 + - *252 - name: repository_id in: path required: true @@ -37558,8 +37643,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *76 - - &584 + - *78 + - &585 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -37567,7 +37652,7 @@ paths: required: false schema: type: string - - &585 + - &586 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -37575,7 +37660,7 @@ paths: required: false schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -37591,7 +37676,7 @@ paths: - week - month default: month - - &587 + - &588 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -37606,7 +37691,7 @@ paths: - denied - all default: all - - *266 + - *267 - *17 - *19 responses: @@ -37616,7 +37701,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -37772,7 +37857,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &589 + default: &590 value: - id: 21 number: 42 @@ -37837,7 +37922,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -37858,12 +37943,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *76 - - *266 - - *93 + - *78 + - *267 - *94 - *95 - - &590 + - *96 + - &591 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -37889,7 +37974,7 @@ paths: application/json: schema: type: array - items: &591 + items: &592 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -37999,7 +38084,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *97 + items: *98 url: type: string format: uri @@ -38010,7 +38095,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &592 + default: &593 value: - id: 21 number: 42 @@ -38075,7 +38160,7 @@ paths: html_url: https://github.com/octo-org/smile/security/secret-scanning/19 '404': *6 '403': *29 - '500': *91 + '500': *40 "/orgs/{org}/docker/conflicts": get: summary: Get list of conflicting packages during Docker migration for organization @@ -38090,7 +38175,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -38098,7 +38183,7 @@ paths: application/json: schema: type: array - items: &348 + items: &349 title: Package description: A software package type: object @@ -38148,8 +38233,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *303 - required: *304 + properties: *304 + required: *305 nullable: true created_at: type: string @@ -38168,7 +38253,7 @@ paths: - created_at - updated_at examples: - default: &349 + default: &350 value: - id: 197 name: hello_docker @@ -38246,7 +38331,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38256,7 +38341,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: 200-response: value: @@ -38326,7 +38411,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *76 + - *78 - name: group_id description: The unique identifier of the group. in: path @@ -38352,7 +38437,7 @@ paths: description: Response content: application/json: - schema: &430 + schema: &431 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -38433,7 +38518,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &431 + default: &432 value: group_id: '123' group_name: Octocat admins @@ -38471,7 +38556,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-in-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -38488,7 +38573,7 @@ paths: description: Response content: application/json: - schema: &428 + schema: &429 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -38525,7 +38610,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &429 + default: &430 value: groups: - group_id: '123' @@ -38559,7 +38644,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38569,7 +38654,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Organization Invitation description: Organization Invitation type: object @@ -38616,7 +38701,7 @@ paths: - invitation_teams_url - node_id examples: - default: &328 + default: &329 value: - id: 1 login: monalisa @@ -38649,7 +38734,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -38675,7 +38760,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -38683,7 +38768,7 @@ paths: application/json: schema: type: array - items: &382 + items: &383 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -38697,7 +38782,7 @@ paths: - name - description examples: - default: &383 + default: &384 value: - name: add_assignee description: Assign or remove a user @@ -38728,7 +38813,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *76 + - *78 - *17 - *19 responses: @@ -38738,7 +38823,7 @@ paths: application/json: schema: type: array - items: &305 + items: &306 title: Org Hook description: Org Hook type: object @@ -38826,7 +38911,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -38847,7 +38932,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *76 + - *78 requestBody: required: true content: @@ -38907,9 +38992,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: - default: &306 + default: &307 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38953,8 +39038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *76 - - &307 + - *78 + - &308 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -38967,9 +39052,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -38990,8 +39075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 requestBody: required: false content: @@ -39036,7 +39121,7 @@ paths: description: Response content: application/json: - schema: *305 + schema: *306 examples: default: value: @@ -39075,8 +39160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 responses: '204': description: Response @@ -39101,8 +39186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *76 - - *307 + - *78 + - *308 responses: '200': description: Response @@ -39130,8 +39215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *76 - - *307 + - *78 + - *308 requestBody: required: false content: @@ -39179,10 +39264,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *76 - - *307 - - *17 + - *78 - *308 + - *17 + - *309 responses: '200': description: Response @@ -39190,9 +39275,9 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: - default: *310 + default: *311 '400': *14 '422': *15 x-github: @@ -39215,17 +39300,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 - *16 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *312 + default: *313 '400': *14 '422': *15 x-github: @@ -39248,8 +39333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 - *16 responses: '202': *39 @@ -39275,8 +39360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *76 - - *307 + - *78 + - *308 responses: '204': description: Response @@ -39298,8 +39383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *76 - - &317 + - *78 + - &318 name: actor_type in: path description: The type of the actor @@ -39312,14 +39397,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &318 + - &319 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &313 + - &314 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -39327,7 +39412,7 @@ paths: required: true schema: type: string - - &314 + - &315 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -39338,7 +39423,7 @@ paths: type: string - *19 - *17 - - *100 + - *101 - name: sort description: The property to sort the results by. in: query @@ -39420,13 +39505,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *76 - - *313 + - *78 - *314 + - *315 - *19 - *17 - - *100 - - &323 + - *101 + - &324 name: sort description: The property to sort the results by. in: query @@ -39504,15 +39589,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *76 - - *313 + - *78 - *314 + - *315 responses: '200': description: Response content: application/json: - schema: &315 + schema: &316 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39528,7 +39613,7 @@ paths: type: integer format: int64 examples: - default: &316 + default: &317 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39548,24 +39633,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *76 - - &319 + - *78 + - &320 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *313 - *314 + - *315 responses: '200': description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 x-github: enabledForGitHubApps: true category: orgs @@ -39583,19 +39668,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *76 - - *313 + - *78 - *314 - - *317 + - *315 - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 x-github: enabledForGitHubApps: true category: orgs @@ -39612,10 +39697,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *76 - - *313 + - *78 - *314 - - &320 + - *315 + - &321 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39628,7 +39713,7 @@ paths: description: Response content: application/json: - schema: &321 + schema: &322 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39644,7 +39729,7 @@ paths: type: integer format: int64 examples: - default: &322 + default: &323 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39680,19 +39765,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *76 - - *319 - - *313 - - *314 + - *78 - *320 + - *314 + - *315 + - *321 responses: '200': description: Response content: application/json: - schema: *321 + schema: *322 examples: - default: *322 + default: *323 x-github: enabledForGitHubApps: true category: orgs @@ -39709,20 +39794,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *76 - - *317 + - *78 - *318 - - *313 + - *319 - *314 - - *320 + - *315 + - *321 responses: '200': description: Response content: application/json: - schema: *321 + schema: *322 examples: - default: *322 + default: *323 x-github: enabledForGitHubApps: true category: orgs @@ -39739,14 +39824,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *76 - - *319 - - *313 + - *78 + - *320 - *314 + - *315 - *19 - *17 - - *100 - - *323 + - *101 + - *324 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39819,7 +39904,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *76 + - *78 responses: '200': description: Response @@ -39827,7 +39912,7 @@ paths: application/json: schema: *22 examples: - default: &623 + default: &624 value: id: 1 account: @@ -39896,7 +39981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -39966,7 +40051,7 @@ paths: suspended_at: suspended_by: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39985,7 +40070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -39993,12 +40078,12 @@ paths: application/json: schema: anyOf: - - &325 + - &326 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &324 + limit: &325 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40023,7 +40108,7 @@ paths: properties: {} additionalProperties: false examples: - default: &326 + default: &327 value: limit: collaborators_only origin: organization @@ -40047,18 +40132,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: application/json: - schema: &624 + schema: &625 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *324 + limit: *325 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40082,9 +40167,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *326 + default: *327 '422': *15 x-github: githubCloudOnly: false @@ -40102,7 +40187,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *76 + - *78 responses: '204': description: Response @@ -40128,7 +40213,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *76 + - *78 - *17 - *19 - name: role @@ -40162,11 +40247,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40188,7 +40273,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *76 + - *78 requestBody: required: false content: @@ -40242,7 +40327,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: default: value: @@ -40298,8 +40383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *76 - - &329 + - *78 + - &330 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40332,8 +40417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *76 - - *329 + - *78 + - *330 - *17 - *19 responses: @@ -40343,9 +40428,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: &347 + default: &348 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40361,7 +40446,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40380,7 +40465,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -40388,7 +40473,7 @@ paths: application/json: schema: type: array - items: *330 + items: *331 examples: default: value: @@ -40426,7 +40511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -40473,9 +40558,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: - default: &331 + default: &332 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -40507,8 +40592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *76 - - &332 + - *78 + - &333 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40561,9 +40646,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: - default: *331 + default: *332 '404': *6 '422': *7 x-github: @@ -40587,8 +40672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *76 - - *332 + - *78 + - *333 responses: '204': description: Response @@ -40621,7 +40706,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *76 + - *78 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -40651,7 +40736,7 @@ paths: - closed - all default: open - - *333 + - *334 - name: type description: Can be the name of an issue type. in: query @@ -40669,8 +40754,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -40680,11 +40765,11 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *334 + default: *335 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -40704,7 +40789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *76 + - *78 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -40742,9 +40827,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -40762,8 +40847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response if requester is an organization member and user is @@ -40797,8 +40882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -40824,8 +40909,8 @@ paths: parameters: - *17 - *19 - - *76 - - *263 + - *78 + - *264 responses: '200': description: Response @@ -40841,11 +40926,11 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: - default: *337 + default: *338 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -40868,9 +40953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *76 - - *263 - - &338 + - *78 + - *264 + - &339 name: codespace_name in: path required: true @@ -40880,7 +40965,7 @@ paths: responses: '202': *39 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -40903,17 +40988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *76 - - *263 - - *338 + - *78 + - *264 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: &543 + default: &544 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41055,7 +41140,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -41086,14 +41171,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *123 + schema: *124 examples: default: value: @@ -41137,7 +41222,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -41162,14 +41247,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '200': description: Response content: application/json: - schema: &339 + schema: &340 title: Org Membership description: Org Membership type: object @@ -41213,7 +41298,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *62 + organization: *64 user: title: Simple User description: A GitHub user. @@ -41236,7 +41321,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &340 + response-if-user-has-an-active-admin-membership-with-organization: &341 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41304,8 +41389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 requestBody: required: false content: @@ -41333,9 +41418,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-user-already-had-membership-with-organization: *340 + response-if-user-already-had-membership-with-organization: *341 '422': *15 '403': *29 x-github: @@ -41359,8 +41444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -41385,7 +41470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *76 + - *78 - *17 - *19 - name: exclude @@ -41406,7 +41491,7 @@ paths: application/json: schema: type: array - items: &341 + items: &342 title: Migration description: A migration. type: object @@ -41447,7 +41532,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *67 + items: *69 url: type: string format: uri @@ -41643,7 +41728,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -41659,7 +41744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *76 + - *78 requestBody: required: true content: @@ -41735,7 +41820,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -41913,8 +41998,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *76 - - &342 + - *78 + - &343 name: migration_id description: The unique identifier of the migration. in: path @@ -41941,7 +42026,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -42110,8 +42195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *76 - - *342 + - *78 + - *343 responses: '302': description: Response @@ -42132,8 +42217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *76 - - *342 + - *78 + - *343 responses: '204': description: Response @@ -42156,9 +42241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *76 - - *342 - - &794 + - *78 + - *343 + - &795 name: repo_name description: repo_name parameter in: path @@ -42185,8 +42270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *76 - - *342 + - *78 + - *343 - *17 - *19 responses: @@ -42196,9 +42281,9 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: &354 + default: &355 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42309,7 +42394,7 @@ paths: secret_scanning_validity_checks: status: disabled headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -42337,7 +42422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -42391,7 +42476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response - list of organization roles @@ -42407,7 +42492,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &343 + items: &344 title: Organization Role description: Organization roles type: object @@ -42567,7 +42652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *76 + - *78 requestBody: required: true content: @@ -42614,7 +42699,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42643,7 +42728,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42665,8 +42750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *76 - - &344 + - *78 + - &345 name: team_slug description: The slug of the team name. in: path @@ -42697,9 +42782,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *76 - - *344 - - *287 + - *78 + - *345 + - *288 responses: '204': description: Response @@ -42728,9 +42813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *76 - - *344 - - *287 + - *78 + - *345 + - *288 responses: '204': description: Response @@ -42755,8 +42840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -42781,9 +42866,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *76 - - *263 - - *287 + - *78 + - *264 + - *288 responses: '204': description: Response @@ -42813,9 +42898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *76 - - *263 - - *287 + - *78 + - *264 + - *288 responses: '204': description: Response @@ -42843,14 +42928,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '200': description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42907,8 +42992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *76 - - *287 + - *78 + - *288 requestBody: required: true content: @@ -42947,7 +43032,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -42975,7 +43060,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *108 + '409': *109 '404': *6 x-github: githubCloudOnly: true @@ -43000,8 +43085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *76 - - *287 + - *78 + - *288 responses: '204': description: Response @@ -43026,8 +43111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 - *17 - *19 responses: @@ -43105,8 +43190,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 nullable: true required: - id @@ -43121,9 +43206,9 @@ paths: - slug - parent examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '404': description: Response if the organization or role does not exist. '422': @@ -43150,8 +43235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *76 - - *287 + - *78 + - *288 - *17 - *19 responses: @@ -43179,13 +43264,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &402 + items: &403 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 name: nullable: true type: string @@ -43280,9 +43365,9 @@ paths: - type - url examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': description: Response if the organization or role does not exist. '422': @@ -43304,7 +43389,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *76 + - *78 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -43331,9 +43416,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43356,8 +43441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *76 - - *263 + - *78 + - *264 requestBody: required: false content: @@ -43414,8 +43499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -43472,8 +43557,8 @@ paths: - docker - nuget - container - - *76 - - &796 + - *78 + - &797 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43509,12 +43594,12 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *349 + default: *350 '403': *29 '401': *25 - '400': &798 + '400': &799 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43536,7 +43621,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &350 + - &351 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -43554,20 +43639,20 @@ paths: - docker - nuget - container - - &351 + - &352 name: package_name description: The name of the package. in: path required: true schema: type: string - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -43619,9 +43704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 responses: '204': description: Response @@ -43653,9 +43738,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 - name: token description: package token schema: @@ -43687,9 +43772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *350 - *351 - - *76 + - *352 + - *78 - *19 - *17 - name: state @@ -43709,7 +43794,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Package Version description: A version of a software package type: object @@ -43834,10 +43919,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - &353 + - *352 + - *78 + - &354 name: package_version_id description: Unique identifier of the package version. in: path @@ -43849,7 +43934,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -43885,10 +43970,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - *353 + - *352 + - *78 + - *354 responses: '204': description: Response @@ -43920,10 +44005,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *350 - *351 - - *76 - - *353 + - *352 + - *78 + - *354 responses: '204': description: Response @@ -43950,10 +44035,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *76 + - *78 - *17 - *19 - - &355 + - &356 name: sort description: The property by which to sort the results. in: query @@ -43963,8 +44048,8 @@ paths: enum: - created_at default: created_at - - *100 - - &356 + - *101 + - &357 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43975,7 +44060,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &357 + - &358 name: repository description: The name of the repository to use to filter the results. in: query @@ -43983,7 +44068,7 @@ paths: schema: type: string example: Hello-World - - &358 + - &359 name: permission description: The permission to use to filter the results. in: query @@ -43991,7 +44076,7 @@ paths: schema: type: string example: issues_read - - &359 + - &360 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -44001,7 +44086,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -44011,7 +44096,7 @@ paths: schema: type: string format: date-time - - &361 + - &362 name: token_id description: The ID of the token in: query @@ -44023,7 +44108,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44155,7 +44240,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44175,7 +44260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *76 + - *78 requestBody: required: true content: @@ -44216,7 +44301,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44241,7 +44326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -44277,11 +44362,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44302,7 +44387,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *76 + - *78 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -44313,7 +44398,7 @@ paths: - *17 - *19 responses: - '500': *91 + '500': *40 '404': *6 '403': *29 '200': @@ -44322,11 +44407,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44347,19 +44432,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *76 + - *78 - *17 - *19 - - *355 - - *100 - *356 + - *101 - *357 - *358 - *359 - *360 - *361 + - *362 responses: - '500': *91 + '500': *40 '422': *15 '404': *6 '403': *29 @@ -44486,7 +44571,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44506,7 +44591,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *76 + - *78 requestBody: required: true content: @@ -44541,7 +44626,7 @@ paths: - 1296269 - 1296280 responses: - '500': *91 + '500': *40 '404': *6 '202': *39 '403': *29 @@ -44566,7 +44651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *76 + - *78 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -44594,9 +44679,9 @@ paths: value: action: revoke responses: - '500': *91 + '500': *40 '404': *6 - '204': *132 + '204': *133 '403': *29 '422': *15 x-github: @@ -44618,7 +44703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *76 + - *78 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -44628,7 +44713,7 @@ paths: - *17 - *19 responses: - '500': *91 + '500': *40 '404': *6 '403': *29 '200': @@ -44637,11 +44722,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44663,7 +44748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -44681,7 +44766,7 @@ paths: type: integer configurations: type: array - items: &362 + items: &363 title: Organization private registry description: Private registry configuration for an organization type: object @@ -44747,7 +44832,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *40 + Link: *43 '400': *14 '404': *6 x-github: @@ -44769,7 +44854,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -44934,7 +45019,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &363 + org-private-registry-with-selected-visibility: &364 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -44975,7 +45060,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -45001,7 +45086,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -45023,16 +45108,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *362 + schema: *363 examples: - default: *363 + default: *364 '404': *6 x-github: githubCloudOnly: false @@ -45053,8 +45138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 requestBody: required: true content: @@ -45149,8 +45234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *76 - - *251 + - *78 + - *252 responses: '204': description: Response @@ -45175,7 +45260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-organization-projects parameters: - - *76 + - *78 - name: state description: Indicates the state of the projects to return. in: query @@ -45196,7 +45281,7 @@ paths: application/json: schema: type: array - items: &364 + items: &365 title: Project description: Projects are a way to organize columns and cards of work. @@ -45320,7 +45405,7 @@ paths: organization_permission: write private: true headers: - Link: *40 + Link: *43 '422': *7 x-github: githubCloudOnly: false @@ -45343,7 +45428,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-an-organization-project parameters: - - *76 + - *78 requestBody: required: true content: @@ -45369,7 +45454,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -45407,7 +45492,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &446 + '410': &447 description: Gone content: application/json: @@ -45433,15 +45518,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *76 + - *78 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *98 - *99 + - *100 - *17 responses: '200': @@ -45450,7 +45535,7 @@ paths: application/json: schema: type: array - items: &365 + items: &366 title: Projects v2 Project description: A projects v2 project type: object @@ -45520,7 +45605,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &876 + properties: &877 id: type: number description: The unique identifier of the status update. @@ -45568,7 +45653,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &877 + required: &878 - id - node_id - created_at @@ -45593,7 +45678,7 @@ paths: - deleted_at - deleted_by examples: - default: &366 + default: &367 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -45676,7 +45761,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45696,24 +45781,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &367 + - &368 name: project_number description: The project's number. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45733,11 +45818,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *367 - - *76 + - *368 + - *78 - *17 - - *98 - *99 + - *100 responses: '200': description: Response @@ -45745,7 +45830,7 @@ paths: application/json: schema: type: array - items: &368 + items: &369 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -45892,7 +45977,7 @@ paths: - updated_at - project_url examples: - default: &369 + default: &370 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45915,7 +46000,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45935,25 +46020,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *367 - - &809 + - *368 + - &810 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -45974,8 +46059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *367 - - *76 + - *368 + - *78 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -45994,8 +46079,8 @@ paths: items: type: string example: fields[]=123,fields[]=456,fields[]=789 - - *98 - *99 + - *100 - *17 responses: '200': @@ -46004,7 +46089,7 @@ paths: application/json: schema: type: array - items: &374 + items: &375 title: Projects v2 Item description: An item belonging to a project type: object @@ -46020,7 +46105,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: &373 + content_type: &374 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46070,7 +46155,7 @@ paths: - updated_at - archived_at examples: - default: &375 + default: &376 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -46744,7 +46829,7 @@ paths: type: sub_issues_progress value: headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -46764,8 +46849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *76 - - *367 + - *78 + - *368 requestBody: required: true description: Details of the item to add to the project. @@ -46802,7 +46887,7 @@ paths: description: Response content: application/json: - schema: &810 + schema: &811 title: Projects v2 Item description: An item belonging to a project type: object @@ -46815,8 +46900,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *191 - - &558 + - *192 + - &559 title: Pull Request Simple description: Pull Request Simple type: object @@ -46922,8 +47007,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true active_lock_reason: type: string @@ -46968,7 +47053,7 @@ paths: nullable: true requested_teams: type: array - items: *269 + items: *270 nullable: true head: type: object @@ -46977,7 +47062,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: @@ -47000,7 +47085,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: @@ -47019,7 +47104,7 @@ paths: _links: type: object properties: - comments: &372 + comments: &373 title: Link description: Hypermedia Link type: object @@ -47028,13 +47113,13 @@ paths: type: string required: - href - commits: *372 - statuses: *372 - html: *372 - issue: *372 - review_comments: *372 - review_comment: *372 - self: *372 + commits: *373 + statuses: *373 + html: *373 + issue: *373 + review_comments: *373 + review_comment: *373 + self: *373 required: - comments - commits @@ -47044,8 +47129,8 @@ paths: - review_comments - review_comment - self - author_association: *178 - auto_merge: &669 + author_association: *179 + auto_merge: &670 title: Auto merge description: The status of auto merging a pull request. type: object @@ -47147,7 +47232,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *373 + content_type: *374 creator: *4 created_at: type: string @@ -47180,7 +47265,7 @@ paths: - updated_at - archived_at examples: - default: &811 + default: &812 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47254,9 +47339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *367 - - *76 - - &376 + - *368 + - *78 + - &377 name: item_id description: The unique identifier of the project item. in: path @@ -47279,11 +47364,11 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -47302,9 +47387,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *367 - - *76 - - *376 + - *368 + - *78 + - *377 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47374,9 +47459,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '401': *25 '403': *29 '404': *6 @@ -47396,9 +47481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *367 - - *76 - - *376 + - *368 + - *78 + - *377 responses: '204': description: Response @@ -47422,7 +47507,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -47430,9 +47515,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -47459,7 +47544,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -47470,7 +47555,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *128 + items: *129 minItems: 1 maxItems: 100 required: @@ -47500,9 +47585,9 @@ paths: application/json: schema: type: array - items: *128 + items: *129 examples: - default: *129 + default: *130 '403': *29 '404': *6 x-github: @@ -47523,16 +47608,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 responses: '200': description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -47555,13 +47640,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 requestBody: required: true content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -47577,9 +47662,9 @@ paths: description: Response content: application/json: - schema: *128 + schema: *129 examples: - default: *131 + default: *132 '403': *29 '404': *6 x-github: @@ -47602,10 +47687,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *76 - - *130 + - *78 + - *131 responses: - '204': *132 + '204': *133 '403': *29 '404': *6 x-github: @@ -47626,7 +47711,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 - *17 - *19 - name: repository_query @@ -47664,7 +47749,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &378 + items: &379 title: Custom Property Value description: Custom property name and associated value type: object @@ -47703,7 +47788,7 @@ paths: - property_name: team value: octocat headers: - Link: *40 + Link: *43 '403': *29 '404': *6 x-github: @@ -47731,7 +47816,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *76 + - *78 requestBody: required: true content: @@ -47751,7 +47836,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *378 + items: *379 required: - repository_names - properties @@ -47792,7 +47877,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *76 + - *78 - *17 - *19 responses: @@ -47804,9 +47889,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47823,8 +47908,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response if user is a public member @@ -47848,8 +47933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -47870,8 +47955,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *76 - - *263 + - *78 + - *264 responses: '204': description: Response @@ -47895,7 +47980,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *76 + - *78 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -47942,11 +48027,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47965,7 +48050,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *76 + - *78 requestBody: required: true content: @@ -48147,7 +48232,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &449 title: Full Repository description: Full Repository type: object @@ -48424,8 +48509,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *379 - required: *380 + properties: *380 + required: *381 nullable: true temp_clone_token: type: string @@ -48512,8 +48597,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true organization: title: Simple User @@ -48522,8 +48607,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *67 - source: *67 + parent: *69 + source: *69 forks: type: integer master_branch: @@ -48540,7 +48625,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &563 + properties: &564 url: type: string format: uri @@ -48556,12 +48641,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &564 + required: &565 - url - key - name - html_url - security_and_analysis: *381 + security_and_analysis: *382 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -48645,7 +48730,7 @@ paths: - network_count - subscribers_count examples: - default: &450 + default: &451 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49163,7 +49248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response @@ -49171,9 +49256,9 @@ paths: application/json: schema: type: array - items: *382 + items: *383 examples: - default: *383 + default: *384 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -49195,10 +49280,10 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - *17 - *19 - - &691 + - &692 name: targets description: | A comma-separated list of rule targets to filter by. @@ -49216,7 +49301,7 @@ paths: application/json: schema: type: array - items: *161 + items: *162 examples: default: value: @@ -49247,7 +49332,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -49263,7 +49348,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 requestBody: description: Request body required: true @@ -49284,21 +49369,20 @@ paths: - push - repository default: branch - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *384 + items: *141 + conditions: *385 rules: type: array description: An array of rules within the ruleset. - items: &386 + items: &387 title: Repository Rule type: object description: A repository rule. oneOf: - - *141 - *142 - *143 - *144 @@ -49318,6 +49402,7 @@ paths: - *158 - *159 - *160 + - *161 required: - name - enforcement @@ -49355,9 +49440,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: &385 + default: &386 value: id: 21 name: super cool ruleset @@ -49397,7 +49482,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -49411,8 +49496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *76 - - &693 + - *78 + - &694 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -49422,16 +49507,16 @@ paths: schema: type: string x-multi-segment: true - - *266 - - *95 - - &694 + - *267 + - *96 + - &695 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &695 + - &696 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -49451,7 +49536,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 title: Rule Suites description: Response type: array @@ -49506,7 +49591,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &697 + default: &698 value: - id: 21 actor_id: 12 @@ -49530,7 +49615,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49549,8 +49634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *76 - - &698 + - *78 + - &699 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -49566,7 +49651,7 @@ paths: description: Response content: application/json: - schema: &699 + schema: &700 title: Rule Suite description: Response type: object @@ -49665,7 +49750,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &700 + default: &701 value: id: 21 actor_id: 12 @@ -49700,7 +49785,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49726,7 +49811,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49738,11 +49823,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *385 + default: *386 '404': *6 - '500': *91 + '500': *40 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -49758,7 +49843,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49784,16 +49869,16 @@ paths: - tag - push - repository - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *384 + items: *141 + conditions: *385 rules: description: An array of rules within the ruleset. type: array - items: *386 + items: *387 examples: default: value: @@ -49828,11 +49913,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *385 + default: *386 '404': *6 - '500': *91 + '500': *40 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -49848,7 +49933,7 @@ paths: category: orgs subcategory: rules parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49859,7 +49944,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -49871,7 +49956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *76 + - *78 - *17 - *19 - name: ruleset_id @@ -49887,11 +49972,11 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *387 + default: *388 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49908,7 +49993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *76 + - *78 - name: ruleset_id description: The ID of the ruleset. in: path @@ -49926,7 +50011,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -49966,7 +50051,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49988,15 +50073,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *76 - - *389 + - *78 - *390 - *391 - *392 - - *100 + - *393 + - *101 - *19 - *17 - - &702 + - &703 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -50006,7 +50091,7 @@ paths: required: false schema: type: string - - &703 + - &704 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -50016,10 +50101,10 @@ paths: required: false schema: type: string - - *393 - *394 - *395 - *396 + - *397 responses: '200': description: Response @@ -50027,13 +50112,13 @@ paths: application/json: schema: type: array - items: *397 + items: *398 examples: - default: *398 + default: *399 headers: - Link: *40 + Link: *43 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50058,15 +50143,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: *400 + default: *401 '403': *29 '404': *6 patch: @@ -50087,7 +50172,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *76 + - *78 requestBody: required: true content: @@ -50095,7 +50180,7 @@ paths: schema: type: object properties: - pattern_config_version: *168 + pattern_config_version: *169 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50121,7 +50206,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *168 + custom_pattern_version: *169 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50157,7 +50242,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *15 "/orgs/{org}/security-advisories": get: @@ -50175,8 +50260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *76 - - *100 + - *78 + - *101 - name: sort description: The property to sort the results by. in: query @@ -50188,8 +50273,8 @@ paths: - updated - published default: created - - *98 - *99 + - *100 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -50219,7 +50304,7 @@ paths: application/json: schema: type: array - items: &724 + items: &725 description: A repository security advisory. type: object properties: @@ -50406,7 +50491,7 @@ paths: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array nullable: true @@ -50439,7 +50524,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 credits_detailed: type: array nullable: true @@ -50449,7 +50534,7 @@ paths: type: object properties: user: *4 - type: *401 + type: *402 state: type: string description: The state of the user's acceptance of the @@ -50473,14 +50558,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *269 + items: *270 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *109 + - *110 required: - ghsa_id - cve_id @@ -50510,7 +50595,7 @@ paths: - private_fork additionalProperties: false examples: - default: &725 + default: &726 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50889,7 +50974,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *76 + - *78 responses: '200': description: Response @@ -50897,9 +50982,9 @@ paths: application/json: schema: type: array - items: *402 + items: *403 examples: - default: *347 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50922,8 +51007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -50948,8 +51033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -50978,15 +51063,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51010,8 +51095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *76 - - *405 + - *78 + - *406 - *17 - *19 responses: @@ -51019,9 +51104,9 @@ paths: description: Success content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -51043,15 +51128,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51073,15 +51158,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -51101,7 +51186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *76 + - *78 - *17 - *19 responses: @@ -51119,11 +51204,11 @@ paths: type: integer network_configurations: type: array - items: *125 + items: *126 examples: - default: *412 + default: *413 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51142,7 +51227,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 + - *78 requestBody: required: true content: @@ -51184,9 +51269,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51206,18 +51291,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 - - *127 + - *78 + - *128 responses: '200': description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51236,8 +51321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *76 - - *127 + - *78 + - *128 requestBody: required: true content: @@ -51276,9 +51361,9 @@ paths: description: Response content: application/json: - schema: *125 + schema: *126 examples: - default: *126 + default: *127 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51297,8 +51382,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *76 - - *127 + - *78 + - *128 responses: '204': description: Response @@ -51321,18 +51406,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *76 - - *413 + - *78 + - *414 responses: '200': description: Response content: application/json: - schema: *414 + schema: *415 examples: - default: *415 + default: *416 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51349,7 +51434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *76 + - *78 - *17 - name: page description: Page token @@ -51368,7 +51453,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &438 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -51414,7 +51499,7 @@ paths: type: string nullable: true examples: - default: &438 + default: &439 value: groups: - group_id: '123' @@ -51459,8 +51544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *76 - - *344 + - *78 + - *345 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -51492,13 +51577,13 @@ paths: application/json: schema: type: array - items: *172 + items: *173 examples: - default: *173 - '500': *91 + default: *174 + '500': *40 '403': *29 '404': *6 - '422': *174 + '422': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51516,7 +51601,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *76 + - *78 - *17 - *19 responses: @@ -51526,11 +51611,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '403': *29 x-github: githubCloudOnly: false @@ -51550,7 +51635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *76 + - *78 requestBody: required: true content: @@ -51622,7 +51707,7 @@ paths: description: Response content: application/json: - schema: &416 + schema: &417 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -51685,8 +51770,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *345 - required: *346 + properties: *346 + required: *347 nullable: true members_count: type: integer @@ -51932,7 +52017,7 @@ paths: - repos_count - organization examples: - default: &417 + default: &418 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52002,16 +52087,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -52032,8 +52117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: false content: @@ -52095,16 +52180,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '201': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 '422': *15 '403': *29 @@ -52129,8 +52214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -52156,9 +52241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - - *76 - - *344 - - *100 + - *78 + - *345 + - *101 - *17 - *19 - name: pinned @@ -52174,7 +52259,7 @@ paths: application/json: schema: type: array - items: &418 + items: &419 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -52253,7 +52338,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *179 + reactions: *180 required: - author - body @@ -52273,7 +52358,7 @@ paths: - updated_at - url examples: - default: &768 + default: &769 value: - author: login: octocat @@ -52323,7 +52408,7 @@ paths: eyes: 1 rocket: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52347,8 +52432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -52382,9 +52467,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: &419 + default: &420 value: author: login: octocat @@ -52456,9 +52541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - - *76 - - *344 - - &420 + - *78 + - *345 + - &421 name: discussion_number description: The number that identifies the discussion. in: path @@ -52470,9 +52555,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52494,9 +52579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: false content: @@ -52519,9 +52604,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: &769 + default: &770 value: author: login: octocat @@ -52591,9 +52676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 responses: '204': description: Response @@ -52619,10 +52704,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - - *76 - - *344 - - *420 - - *100 + - *78 + - *345 + - *421 + - *101 - *17 - *19 responses: @@ -52632,7 +52717,7 @@ paths: application/json: schema: type: array - items: &421 + items: &422 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -52689,7 +52774,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *179 + reactions: *180 required: - author - body @@ -52704,7 +52789,7 @@ paths: - updated_at - url examples: - default: &770 + default: &771 value: - author: login: octocat @@ -52748,7 +52833,7 @@ paths: eyes: 1 rocket: 1 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52772,9 +52857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: true content: @@ -52796,9 +52881,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &422 + default: &423 value: author: login: octocat @@ -52864,10 +52949,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - &423 + - *78 + - *345 + - *421 + - &424 name: comment_number description: The number that identifies the comment. in: path @@ -52879,9 +52964,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52903,10 +52988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 requestBody: required: true content: @@ -52928,9 +53013,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &771 + default: &772 value: author: login: octocat @@ -52994,10 +53079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 responses: '204': description: Response @@ -53023,10 +53108,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -53052,7 +53137,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -53095,7 +53180,7 @@ paths: - content - created_at examples: - default: &426 + default: &427 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -53121,7 +53206,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53145,10 +53230,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - - *76 - - *344 - - *420 - - *423 + - *78 + - *345 + - *421 + - *424 requestBody: required: true content: @@ -53181,9 +53266,9 @@ paths: team discussion comment content: application/json: - schema: *424 + schema: *425 examples: - default: &425 + default: &426 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -53212,9 +53297,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53237,11 +53322,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - - *76 - - *344 - - *420 - - *423 - - &427 + - *78 + - *345 + - *421 + - *424 + - &428 name: reaction_id description: The unique identifier of the reaction. in: path @@ -53273,9 +53358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -53301,11 +53386,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53329,9 +53414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - - *76 - - *344 - - *420 + - *78 + - *345 + - *421 requestBody: required: true content: @@ -53363,16 +53448,16 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -53395,10 +53480,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - - *76 - - *344 - - *420 - - *427 + - *78 + - *345 + - *421 + - *428 responses: '204': description: Response @@ -53421,16 +53506,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *428 + schema: *429 examples: - default: *429 + default: *430 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -53449,8 +53534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -53473,9 +53558,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -53494,8 +53579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '204': description: Response @@ -53519,8 +53604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -53530,11 +53615,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53554,8 +53639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *76 - - *344 + - *78 + - *345 - name: role description: Filters members returned by their role in the team. in: query @@ -53578,9 +53663,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53608,15 +53693,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 responses: '200': description: Response content: application/json: - schema: &432 + schema: &433 title: Team Membership description: Team Membership type: object @@ -53643,7 +53728,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &772 + response-if-user-is-a-team-maintainer: &773 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -53679,9 +53764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 requestBody: required: false content: @@ -53706,9 +53791,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-users-membership-with-team-is-now-pending: &773 + response-if-users-membership-with-team-is-now-pending: &774 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53743,9 +53828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *76 - - *344 - - *263 + - *78 + - *345 + - *264 responses: '204': description: Response @@ -53770,8 +53855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -53781,7 +53866,7 @@ paths: application/json: schema: type: array - items: &433 + items: &434 title: Team Project description: A team's access to a project. type: object @@ -53849,7 +53934,7 @@ paths: - updated_at - permissions examples: - default: &774 + default: &775 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -53889,7 +53974,7 @@ paths: write: true admin: false headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53912,9 +53997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - - *76 - - *344 - - &434 + - *78 + - *345 + - &435 name: project_id description: The unique identifier of the project. in: path @@ -53926,9 +54011,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: &775 + default: &776 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -53990,9 +54075,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - - *76 - - *344 - - *434 + - *78 + - *345 + - *435 requestBody: required: false content: @@ -54058,9 +54143,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - - *76 - - *344 - - *434 + - *78 + - *345 + - *435 responses: '204': description: Response @@ -54087,8 +54172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -54098,11 +54183,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54129,16 +54214,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &776 + schema: &777 title: Team Repository description: A team's access to a repository. type: object @@ -54161,8 +54246,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true forks: type: integer @@ -54707,10 +54792,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 requestBody: required: false content: @@ -54755,10 +54840,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *76 - - *344 - - *435 + - *78 + - *345 - *436 + - *437 responses: '204': description: Response @@ -54784,16 +54869,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *76 - - *344 + - *78 + - *345 responses: '200': description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -54815,8 +54900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *76 - - *344 + - *78 + - *345 requestBody: required: true content: @@ -54859,7 +54944,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -54891,8 +54976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *76 - - *344 + - *78 + - *345 - *17 - *19 responses: @@ -54902,9 +54987,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - response-if-child-teams-exist: &777 + response-if-child-teams-exist: &778 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -54932,7 +55017,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54957,7 +55042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *76 + - *78 - name: security_product in: path description: The security feature to enable or disable. @@ -55031,7 +55116,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &439 + - &440 name: card_id description: The unique identifier of the card. in: path @@ -55043,7 +55128,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 title: Project Card description: Project cards represent a scope of work. type: object @@ -55110,7 +55195,7 @@ paths: - created_at - updated_at examples: - default: &441 + default: &442 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -55166,7 +55251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *439 + - *440 requestBody: required: false content: @@ -55193,9 +55278,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - default: *441 + default: *442 '304': *37 '403': *29 '401': *25 @@ -55222,7 +55307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *439 + - *440 responses: '204': description: Response @@ -55266,7 +55351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *439 + - *440 requestBody: required: true content: @@ -55377,7 +55462,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &442 + - &443 name: column_id description: The unique identifier of the column. in: path @@ -55389,7 +55474,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &444 title: Project Column description: Project columns contain cards of work. type: object @@ -55435,7 +55520,7 @@ paths: - created_at - updated_at examples: - default: &444 + default: &445 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -55470,7 +55555,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *442 + - *443 requestBody: required: true content: @@ -55494,9 +55579,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: *444 + default: *445 '304': *37 '403': *29 '401': *25 @@ -55521,7 +55606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *442 + - *443 responses: '204': description: Response @@ -55550,7 +55635,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *442 + - *443 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -55571,7 +55656,7 @@ paths: application/json: schema: type: array - items: *440 + items: *441 examples: default: value: @@ -55605,7 +55690,7 @@ paths: content_url: https://api.github.com/repos/api-playground/projects-test/issues/3 project_url: https://api.github.com/projects/120 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -55630,7 +55715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *442 + - *443 requestBody: required: true content: @@ -55670,9 +55755,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - default: *441 + default: *442 '304': *37 '403': *29 '401': *25 @@ -55682,8 +55767,8 @@ paths: application/json: schema: oneOf: - - *218 - *219 + - *220 '503': description: Response content: @@ -55728,7 +55813,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *442 + - *443 requestBody: required: true content: @@ -55788,15 +55873,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *434 + - *435 responses: '200': description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: &445 + default: &446 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -55853,7 +55938,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *434 + - *435 requestBody: required: false content: @@ -55899,9 +55984,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: *445 + default: *446 '404': description: Not Found if the authenticated user does not have access to the project @@ -55922,7 +56007,7 @@ paths: items: type: string '401': *25 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -55945,7 +56030,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *434 + - *435 responses: '204': description: Delete Success @@ -55966,7 +56051,7 @@ paths: items: type: string '401': *25 - '410': *446 + '410': *447 '404': *6 x-github: githubCloudOnly: false @@ -55990,7 +56075,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *434 + - *435 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -56017,9 +56102,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 '422': *15 '304': *37 @@ -56047,8 +56132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *434 - - *263 + - *435 + - *264 requestBody: required: false content: @@ -56100,8 +56185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *434 - - *263 + - *435 + - *264 responses: '204': description: Response @@ -56132,8 +56217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *434 - - *263 + - *435 + - *264 responses: '200': description: Response @@ -56206,7 +56291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *434 + - *435 - *17 - *19 responses: @@ -56216,7 +56301,7 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: default: value: @@ -56229,7 +56314,7 @@ paths: created_at: '2016-09-05T14:18:44Z' updated_at: '2016-09-05T14:22:28Z' headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -56254,7 +56339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *434 + - *435 requestBody: required: true content: @@ -56277,7 +56362,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: default: value: @@ -56342,7 +56427,7 @@ paths: resources: type: object properties: - core: &447 + core: &448 title: Rate Limit type: object properties: @@ -56359,21 +56444,21 @@ paths: - remaining - reset - used - graphql: *447 - search: *447 - code_search: *447 - source_import: *447 - integration_manifest: *447 - code_scanning_upload: *447 - actions_runner_registration: *447 - scim: *447 - dependency_snapshots: *447 - dependency_sbom: *447 - code_scanning_autofix: *447 + graphql: *448 + search: *448 + code_search: *448 + source_import: *448 + integration_manifest: *448 + code_scanning_upload: *448 + actions_runner_registration: *448 + scim: *448 + dependency_snapshots: *448 + dependency_sbom: *448 + code_scanning_autofix: *448 required: - core - search - rate: *447 + rate: *448 required: - rate - resources @@ -56478,14 +56563,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *448 + schema: *449 examples: default-response: summary: Default response @@ -56990,7 +57075,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *449 + '301': *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57008,8 +57093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -57266,10 +57351,10 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 - '307': &451 + default: *451 + '307': &452 description: Temporary Redirect content: application/json: @@ -57298,8 +57383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -57321,9 +57406,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *451 + '307': *452 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57345,11 +57430,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 - - &466 + - &467 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -57372,7 +57457,7 @@ paths: type: integer artifacts: type: array - items: &452 + items: &453 title: Artifact description: An artifact type: object @@ -57450,7 +57535,7 @@ paths: - expires_at - updated_at examples: - default: &467 + default: &468 value: total_count: 2 artifacts: @@ -57489,7 +57574,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57511,9 +57596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *435 - *436 - - &453 + - *437 + - &454 name: artifact_id description: The unique identifier of the artifact. in: path @@ -57525,7 +57610,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -57563,9 +57648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *435 - *436 - - *453 + - *437 + - *454 responses: '204': description: Response @@ -57589,9 +57674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *435 - *436 - - *453 + - *437 + - *454 - name: archive_format in: path required: true @@ -57605,7 +57690,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57628,14 +57713,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -57661,11 +57746,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 - - &455 + - &456 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -57693,13 +57778,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *100 + - *101 responses: '200': description: Response content: application/json: - schema: &456 + schema: &457 title: Repository actions caches description: Repository actions caches type: object @@ -57741,7 +57826,7 @@ paths: - total_count - actions_caches examples: - default: &457 + default: &458 value: total_count: 1 actions_caches: @@ -57753,7 +57838,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57773,23 +57858,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *435 - *436 + - *437 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *455 + - *456 responses: '200': description: Response content: application/json: - schema: *456 + schema: *457 examples: - default: *457 + default: *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57809,8 +57894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *435 - *436 + - *437 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -57841,9 +57926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *435 - *436 - - &458 + - *437 + - &459 name: job_id description: The unique identifier of the job. in: path @@ -57855,7 +57940,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &471 title: Job description: Information of a job execution in a workflow run type: object @@ -58162,9 +58247,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *435 - *436 - - *458 + - *437 + - *459 responses: '302': description: Response @@ -58192,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *435 - *436 - - *458 + - *437 + - *459 requestBody: required: false content: @@ -58215,7 +58300,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -58239,8 +58324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Status response @@ -58290,8 +58375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -58325,7 +58410,7 @@ paths: description: Empty response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -58354,8 +58439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -58373,7 +58458,7 @@ paths: type: integer secrets: type: array - items: &472 + items: &473 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -58393,7 +58478,7 @@ paths: - created_at - updated_at examples: - default: &473 + default: &474 value: total_count: 2 secrets: @@ -58404,7 +58489,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58426,9 +58511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *435 - *436 - - *459 + - *437 + - *460 - *19 responses: '200': @@ -58445,7 +58530,7 @@ paths: type: integer variables: type: array - items: &476 + items: &477 title: Actions Variable type: object properties: @@ -58475,7 +58560,7 @@ paths: - created_at - updated_at examples: - default: &477 + default: &478 value: total_count: 2 variables: @@ -58488,7 +58573,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58508,8 +58593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -58518,12 +58603,12 @@ paths: schema: type: object properties: - enabled: &460 + enabled: &461 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *49 - selected_actions_url: *228 - sha_pinning_required: *50 + allowed_actions: *51 + selected_actions_url: *229 + sha_pinning_required: *52 required: - enabled examples: @@ -58553,8 +58638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58565,9 +58650,9 @@ paths: schema: type: object properties: - enabled: *460 - allowed_actions: *49 - sha_pinning_required: *50 + enabled: *461 + allowed_actions: *51 + sha_pinning_required: *52 required: - enabled examples: @@ -58598,14 +58683,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &461 + schema: &462 type: object properties: access_level: @@ -58623,7 +58708,7 @@ paths: required: - access_level examples: - default: &462 + default: &463 value: access_level: organization x-github: @@ -58648,15 +58733,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *461 + schema: *462 examples: - default: *462 + default: *463 responses: '204': description: Response @@ -58680,14 +58765,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -58711,8 +58796,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Empty response for successful settings update @@ -58722,7 +58807,7 @@ paths: required: true content: application/json: - schema: *231 + schema: *232 examples: default: summary: Set retention days @@ -58746,16 +58831,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *51 + schema: *53 examples: - default: *232 + default: *233 '404': *6 x-github: enabledForGitHubApps: true @@ -58774,8 +58859,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58785,7 +58870,7 @@ paths: required: true content: application/json: - schema: *51 + schema: *53 examples: default: summary: Set approval policy to first time contributors @@ -58809,16 +58894,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *52 + default: *54 '403': *29 '404': *6 x-github: @@ -58838,15 +58923,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *234 + schema: *235 examples: - default: *52 + default: *54 responses: '204': description: Empty response for successful settings update @@ -58870,16 +58955,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *54 + schema: *56 examples: - default: *55 + default: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58902,8 +58987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -58911,9 +58996,9 @@ paths: required: false content: application/json: - schema: *54 + schema: *56 examples: - selected_actions: *55 + selected_actions: *57 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -58935,16 +59020,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58965,8 +59050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Success response @@ -58977,9 +59062,9 @@ paths: required: true content: application/json: - schema: *238 + schema: *239 examples: - default: *58 + default: *60 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59006,8 +59091,8 @@ paths: in: query schema: type: string - - *435 - *436 + - *437 - *17 - *19 responses: @@ -59025,11 +59110,11 @@ paths: type: integer runners: type: array - items: *65 + items: *67 examples: - default: *66 + default: *68 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59051,8 +59136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -59060,9 +59145,9 @@ paths: application/json: schema: type: array - items: *242 + items: *243 examples: - default: *243 + default: *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59084,8 +59169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -59128,10 +59213,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *244 + '201': *245 '404': *6 '422': *7 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59159,16 +59244,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *435 - *436 + - *437 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *245 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59196,16 +59281,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *435 - *436 + - *437 responses: '201': description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *246 + default: *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59227,17 +59312,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *247 + default: *248 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59258,9 +59343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: '204': description: Response @@ -59286,11 +59371,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: - '200': *70 + '200': *72 '404': *6 x-github: githubCloudOnly: false @@ -59312,9 +59397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 requestBody: required: true content: @@ -59338,7 +59423,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59362,9 +59447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 requestBody: required: true content: @@ -59389,7 +59474,7 @@ paths: - gpu - accelerated responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59413,11 +59498,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 + - *437 + - *66 responses: - '200': *248 + '200': *249 '404': *6 x-github: githubCloudOnly: false @@ -59444,12 +59529,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *435 - *436 - - *64 - - *249 + - *437 + - *66 + - *250 responses: - '200': *70 + '200': *72 '404': *6 '422': *7 x-github: @@ -59475,9 +59560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *435 - *436 - - &480 + - *437 + - &481 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -59485,7 +59570,7 @@ paths: required: false schema: type: string - - &481 + - &482 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -59493,7 +59578,7 @@ paths: required: false schema: type: string - - &482 + - &483 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -59502,7 +59587,7 @@ paths: required: false schema: type: string - - &483 + - &484 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -59529,7 +59614,7 @@ paths: - pending - *17 - *19 - - &484 + - &485 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -59538,7 +59623,7 @@ paths: schema: type: string format: date-time - - &463 + - &464 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -59547,13 +59632,13 @@ paths: schema: type: boolean default: false - - &485 + - &486 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &486 + - &487 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -59576,7 +59661,7 @@ paths: type: integer workflow_runs: type: array - items: &464 + items: &465 title: Workflow Run description: An invocation of a workflow type: object @@ -59671,7 +59756,7 @@ paths: that triggered the run. type: array nullable: true - items: &505 + items: &506 title: Pull Request Minimal type: object properties: @@ -59790,7 +59875,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &509 + properties: &510 id: type: string description: SHA for the commit @@ -59841,7 +59926,7 @@ paths: - name - email nullable: true - required: &510 + required: &511 - id - tree_id - message @@ -59849,8 +59934,8 @@ paths: - author - committer nullable: true - repository: *241 - head_repository: *241 + repository: *242 + head_repository: *242 head_repository_id: type: integer example: 5 @@ -59888,7 +59973,7 @@ paths: - workflow_url - pull_requests examples: - default: &487 + default: &488 value: total_count: 1 workflow_runs: @@ -60102,7 +60187,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60124,24 +60209,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *435 - *436 - - &465 + - *437 + - &466 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: &468 + default: &469 value: id: 30433642 name: Build @@ -60382,9 +60467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '204': description: Response @@ -60407,9 +60492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -60528,15 +60613,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -60563,12 +60648,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *435 - *436 - - *465 + - *437 + - *466 - *17 - *19 - - *466 + - *467 responses: '200': description: Response @@ -60584,11 +60669,11 @@ paths: type: integer artifacts: type: array - items: *452 + items: *453 examples: - default: *467 + default: *468 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60610,25 +60695,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *435 - *436 - - *465 - - &469 + - *437 + - *466 + - &470 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *468 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60651,10 +60736,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *435 - *436 - - *465 - - *469 + - *437 + - *466 + - *470 - *17 - *19 responses: @@ -60672,9 +60757,9 @@ paths: type: integer jobs: type: array - items: *470 + items: *471 examples: - default: &471 + default: &472 value: total_count: 1 jobs: @@ -60763,7 +60848,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -60787,10 +60872,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *435 - *436 - - *465 - - *469 + - *437 + - *466 + - *470 responses: '302': description: Response @@ -60818,19 +60903,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '202': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60853,9 +60938,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: true content: @@ -60922,19 +61007,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '202': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60957,9 +61042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -60989,11 +61074,11 @@ paths: type: integer jobs: type: array - items: *470 + items: *471 examples: - default: *471 + default: *472 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61016,9 +61101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '302': description: Response @@ -61045,14 +61130,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '204': description: Response '403': *29 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61074,9 +61159,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -61136,7 +61221,7 @@ paths: items: type: object properties: - type: &593 + type: &594 type: string description: The type of reviewer. enum: @@ -61146,7 +61231,7 @@ paths: reviewer: anyOf: - *4 - - *269 + - *270 required: - environment - wait_timer @@ -61221,9 +61306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: true content: @@ -61270,7 +61355,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -61358,8 +61443,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -61376,7 +61461,7 @@ paths: - created_at - updated_at examples: - default: &580 + default: &581 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -61432,9 +61517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: false content: @@ -61455,7 +61540,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61478,9 +61563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *435 - *436 - - *465 + - *437 + - *466 requestBody: required: false content: @@ -61501,7 +61586,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61534,9 +61619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *435 - *436 - - *465 + - *437 + - *466 responses: '200': description: Response @@ -61673,8 +61758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -61692,11 +61777,11 @@ paths: type: integer secrets: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61719,16 +61804,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61750,17 +61835,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: &606 + default: &607 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -61786,9 +61871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -61819,7 +61904,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61845,9 +61930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -61872,9 +61957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *435 - *436 - - *459 + - *437 + - *460 - *19 responses: '200': @@ -61891,11 +61976,11 @@ paths: type: integer variables: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61916,8 +62001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -61944,7 +62029,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -61969,17 +62054,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: &607 + default: &608 value: name: USERNAME value: octocat @@ -62005,9 +62090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 requestBody: required: true content: @@ -62049,9 +62134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *435 - *436 - - *254 + - *437 + - *255 responses: '204': description: Response @@ -62076,8 +62161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -62095,7 +62180,7 @@ paths: type: integer workflows: type: array - items: &478 + items: &479 title: Workflow description: A GitHub Actions workflow type: object @@ -62179,7 +62264,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62202,9 +62287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *435 - *436 - - &479 + - *437 + - &480 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -62219,7 +62304,7 @@ paths: description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -62252,9 +62337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62279,9 +62364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62332,9 +62417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '204': description: Response @@ -62361,19 +62446,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *435 - *436 - - *479 + - *437 - *480 - *481 - *482 - *483 + - *484 - *17 - *19 - - *484 - - *463 - *485 + - *464 - *486 + - *487 responses: '200': description: Response @@ -62389,11 +62474,11 @@ paths: type: integer workflow_runs: type: array - items: *464 + items: *465 examples: - default: *487 + default: *488 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62424,9 +62509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *435 - *436 - - *479 + - *437 + - *480 responses: '200': description: Response @@ -62487,12 +62572,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *435 - *436 - - *100 + - *437 + - *101 - *17 - - *98 - *99 + - *100 - name: ref description: |- The Git reference for the activities you want to list. @@ -62633,7 +62718,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '422': *7 x-github: githubCloudOnly: false @@ -62652,8 +62737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -62665,9 +62750,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -62690,8 +62775,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *435 - *436 + - *437 - name: assignee in: path required: true @@ -62727,8 +62812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -62840,11 +62925,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *435 - *436 + - *437 - *17 - - *98 - *99 + - *100 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -62895,7 +62980,7 @@ paths: bundle_url: type: string examples: - default: *488 + default: *489 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62915,8 +63000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -62924,7 +63009,7 @@ paths: application/json: schema: type: array - items: &489 + items: &490 title: Autolink reference description: An autolink reference. type: object @@ -62978,8 +63063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -63018,9 +63103,9 @@ paths: description: response content: application/json: - schema: *489 + schema: *490 examples: - default: &490 + default: &491 value: id: 1 key_prefix: TICKET- @@ -63051,9 +63136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *435 - *436 - - &491 + - *437 + - &492 name: autolink_id description: The unique identifier of the autolink. in: path @@ -63065,9 +63150,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 + default: *491 '404': *6 x-github: githubCloudOnly: false @@ -63087,9 +63172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *435 - *436 - - *491 + - *437 + - *492 responses: '204': description: Response @@ -63113,8 +63198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response if Dependabot is enabled @@ -63162,8 +63247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -63184,8 +63269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -63205,8 +63290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *435 - *436 + - *437 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -63244,7 +63329,7 @@ paths: - url protected: type: boolean - protection: &493 + protection: &494 title: Branch Protection description: Branch Protection type: object @@ -63286,7 +63371,7 @@ paths: required: - contexts - checks - enforce_admins: &496 + enforce_admins: &497 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -63301,7 +63386,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &498 + required_pull_request_reviews: &499 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -63322,7 +63407,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *269 + items: *270 apps: description: The list of apps with review dismissal access. @@ -63351,7 +63436,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *269 + items: *270 apps: description: The list of apps allowed to bypass pull request requirements. @@ -63377,7 +63462,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &495 + restrictions: &496 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -63440,7 +63525,7 @@ paths: type: string teams: type: array - items: *269 + items: *270 apps: type: array items: @@ -63636,7 +63721,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -63654,9 +63739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *435 - *436 - - &494 + - *437 + - &495 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -63670,14 +63755,14 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &554 + commit: &555 title: Commit description: Commit type: object @@ -63711,7 +63796,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &492 + properties: &493 name: type: string example: '"Chris Wanstrath"' @@ -63726,7 +63811,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true message: type: string @@ -63747,7 +63832,7 @@ paths: required: - sha - url - verification: &613 + verification: &614 title: Verification type: object properties: @@ -63781,12 +63866,12 @@ paths: nullable: true oneOf: - *4 - - *252 + - *253 committer: nullable: true oneOf: - *4 - - *252 + - *253 parents: type: array items: @@ -63817,7 +63902,7 @@ paths: type: integer files: type: array - items: &567 + items: &568 title: Diff Entry description: Diff Entry type: object @@ -63901,7 +63986,7 @@ paths: - self protected: type: boolean - protection: *493 + protection: *494 protection_url: type: string format: uri @@ -64008,7 +64093,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *449 + '301': *450 '404': *6 x-github: githubCloudOnly: false @@ -64030,15 +64115,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -64232,9 +64317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -64489,7 +64574,7 @@ paths: url: type: string format: uri - required_status_checks: &501 + required_status_checks: &502 title: Status Check Policy description: Status Check Policy type: object @@ -64565,7 +64650,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 apps: type: array items: *5 @@ -64583,7 +64668,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 apps: type: array items: *5 @@ -64641,7 +64726,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *495 + restrictions: *496 required_conversation_resolution: type: object properties: @@ -64753,9 +64838,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -64780,17 +64865,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &497 + default: &498 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -64812,17 +64897,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64841,9 +64926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -64868,17 +64953,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: &499 + default: &500 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -64974,9 +65059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65074,9 +65159,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *499 + default: *500 '422': *15 x-github: githubCloudOnly: false @@ -65097,9 +65182,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65126,17 +65211,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &500 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -65159,17 +65244,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *500 + default: *501 '404': *6 x-github: githubCloudOnly: false @@ -65189,9 +65274,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65216,17 +65301,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: - default: &502 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -65252,9 +65337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65306,9 +65391,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *502 examples: - default: *502 + default: *503 '404': *6 '422': *15 x-github: @@ -65330,9 +65415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65356,9 +65441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65392,9 +65477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65461,9 +65546,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -65527,9 +65612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: content: application/json: @@ -65595,15 +65680,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -65694,9 +65779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '204': description: Response @@ -65719,9 +65804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65731,7 +65816,7 @@ paths: type: array items: *5 examples: - default: &503 + default: &504 value: - id: 1 slug: octoapp @@ -65788,9 +65873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65824,7 +65909,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65845,9 +65930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65881,7 +65966,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65902,9 +65987,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -65938,7 +66023,7 @@ paths: type: array items: *5 examples: - default: *503 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -65960,9 +66045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -65970,9 +66055,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: false @@ -65992,9 +66077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -66030,9 +66115,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66053,9 +66138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: false content: @@ -66091,9 +66176,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66114,9 +66199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: content: application/json: @@ -66151,9 +66236,9 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 '422': *15 x-github: githubCloudOnly: false @@ -66175,9 +66260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 responses: '200': description: Response @@ -66187,7 +66272,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: false @@ -66211,9 +66296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66246,7 +66331,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66271,9 +66356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66306,7 +66391,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66331,9 +66416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66366,7 +66451,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '422': *15 x-github: githubCloudOnly: false @@ -66393,9 +66478,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 requestBody: required: true content: @@ -66417,7 +66502,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -66531,12 +66616,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -66546,11 +66631,11 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": get: summary: Get a repository push bypass request @@ -66568,8 +66653,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66583,7 +66668,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: default: value: @@ -66621,7 +66706,7 @@ paths: url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/secret-scanning": get: summary: List bypass requests for secret scanning for a repository @@ -66642,12 +66727,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - *96 + - *97 - *17 - *19 responses: @@ -66657,12 +66742,12 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *268 + default: *269 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-requests/secret-scanning/{bypass_request_number}": get: summary: Get a bypass request for secret scanning @@ -66683,8 +66768,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66696,7 +66781,7 @@ paths: description: A single bypass request. content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -66734,7 +66819,7 @@ paths: html_url: https://github.com/octo-org/smile/exemptions/1 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review a bypass request for secret scanning description: |- @@ -66754,8 +66839,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_request_number in: path required: true @@ -66805,7 +66890,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/bypass-responses/secret-scanning/{bypass_response_id}": delete: summary: Dismiss a response on a bypass request for secret scanning @@ -66826,8 +66911,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *435 - *436 + - *437 - name: bypass_response_id in: path required: true @@ -66840,7 +66925,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/check-runs": post: summary: Create a check run @@ -66860,8 +66945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -67140,7 +67225,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: CheckRun description: A check performed on the code of a given code change type: object @@ -67251,16 +67336,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *505 - deployment: &834 + items: *506 + deployment: &835 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -67327,8 +67412,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -67540,9 +67625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *435 - *436 - - &507 + - *437 + - &508 name: check_run_id description: The unique identifier of the check run. in: path @@ -67554,9 +67639,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &508 + default: &509 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -67656,9 +67741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *435 - *436 - - *507 + - *437 + - *508 requestBody: required: true content: @@ -67898,9 +67983,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *508 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67920,9 +68005,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *435 - *436 - - *507 + - *437 + - *508 - *17 - *19 responses: @@ -67997,7 +68082,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68017,15 +68102,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *435 - *436 - - *507 + - *437 + - *508 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -68063,8 +68148,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -68086,7 +68171,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &511 + schema: &512 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -68150,7 +68235,7 @@ paths: nullable: true pull_requests: type: array - items: *505 + items: *506 nullable: true app: title: GitHub app @@ -68161,9 +68246,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - repository: *241 + properties: *177 + required: *178 + repository: *242 created_at: type: string format: date-time @@ -68172,12 +68257,12 @@ paths: type: string format: date-time nullable: true - head_commit: &860 + head_commit: &861 title: Simple Commit description: A commit. type: object - properties: *509 - required: *510 + properties: *510 + required: *511 latest_check_runs_count: type: integer check_runs_url: @@ -68205,7 +68290,7 @@ paths: - check_runs_url - pull_requests examples: - default: &512 + default: &513 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -68496,9 +68581,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68517,8 +68602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -68579,7 +68664,7 @@ paths: required: - app_id - setting - repository: *241 + repository: *242 examples: default: value: @@ -68827,9 +68912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *435 - *436 - - &513 + - *437 + - &514 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -68841,9 +68926,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68866,17 +68951,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *435 - *436 - - *513 - - &560 + - *437 + - *514 + - &561 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &561 + - &562 name: status description: Returns check runs with the specified `status`. in: query @@ -68915,9 +69000,9 @@ paths: type: integer check_runs: type: array - items: *506 + items: *507 examples: - default: &562 + default: &563 value: total_count: 1 check_runs: @@ -68999,7 +69084,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69019,15 +69104,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *435 - *436 - - *513 + - *437 + - *514 responses: '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -69054,30 +69139,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *435 - *436 - - *273 + - *437 - *274 + - *275 - *19 - *17 - - &529 + - &530 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *514 - - &530 + schema: *515 + - &531 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *100 - - *98 + - *101 - *99 + - *100 - name: sort description: The property by which to sort the results. in: query @@ -69093,13 +69178,13 @@ paths: be returned. in: query required: false - schema: *275 + schema: *276 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *515 + schema: *516 responses: '200': description: Response @@ -69110,14 +69195,14 @@ paths: items: type: object properties: - number: *112 - created_at: *119 - updated_at: *120 - url: *117 - html_url: *118 - instances_url: *516 - state: *103 - fixed_at: *122 + number: *113 + created_at: *120 + updated_at: *121 + url: *118 + html_url: *119 + instances_url: *517 + state: *104 + fixed_at: *123 dismissed_by: title: Simple User description: A GitHub user. @@ -69125,12 +69210,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *121 - dismissed_reason: *517 - dismissed_comment: *518 - rule: *519 - tool: *520 - most_recent_instance: *521 + dismissed_at: *122 + dismissed_reason: *518 + dismissed_comment: *519 + rule: *520 + tool: *521 + most_recent_instance: *522 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69253,14 +69338,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &522 + '403': &523 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69280,9 +69365,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *435 - *436 - - &523 + - *437 + - &524 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -69290,23 +69375,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *112 + schema: *113 responses: '200': description: Response content: application/json: - schema: &524 + schema: &525 type: object properties: - number: *112 - created_at: *119 - updated_at: *120 - url: *117 - html_url: *118 - instances_url: *516 - state: *103 - fixed_at: *122 + number: *113 + created_at: *120 + updated_at: *121 + url: *118 + html_url: *119 + instances_url: *517 + state: *104 + fixed_at: *123 dismissed_by: title: Simple User description: A GitHub user. @@ -69314,9 +69399,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *121 - dismissed_reason: *517 - dismissed_comment: *518 + dismissed_at: *122 + dismissed_reason: *518 + dismissed_comment: *519 rule: type: object properties: @@ -69370,8 +69455,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *520 - most_recent_instance: *521 + tool: *521 + most_recent_instance: *522 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -69467,9 +69552,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69487,9 +69572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: true content: @@ -69504,8 +69589,8 @@ paths: enum: - open - dismissed - dismissed_reason: *517 - dismissed_comment: *518 + dismissed_reason: *518 + dismissed_comment: *519 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -69524,7 +69609,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -69600,14 +69685,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &528 + '403': &529 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -69627,15 +69712,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 responses: '200': description: Response content: application/json: - schema: &525 + schema: &526 type: object properties: status: @@ -69661,13 +69746,13 @@ paths: - description - started_at examples: - default: &526 + default: &527 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &527 + '400': &528 description: Bad Request content: application/json: @@ -69678,9 +69763,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69703,29 +69788,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 responses: '200': description: OK content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '202': description: Accepted content: application/json: - schema: *525 + schema: *526 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *527 + '400': *528 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -69735,7 +69820,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69757,9 +69842,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: false content: @@ -69804,12 +69889,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *527 - '403': *528 + '400': *528 + '403': *529 '404': *6 '422': description: Unprocessable Entity - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69829,13 +69914,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 - *19 - *17 - - *529 - *530 + - *531 responses: '200': description: Response @@ -69843,7 +69928,7 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: default: value: @@ -69882,9 +69967,9 @@ paths: end_column: 50 classifications: - source - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69916,29 +70001,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *435 - *436 - - *273 + - *437 - *274 + - *275 - *19 - *17 - - *530 + - *531 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *514 + schema: *515 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &533 + schema: &534 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *100 + - *101 - name: sort description: The property by which to sort the results. in: query @@ -69955,23 +70040,23 @@ paths: application/json: schema: type: array - items: &534 + items: &535 type: object properties: - ref: *514 - commit_sha: &542 + ref: *515 + commit_sha: &543 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *531 + analysis_key: *532 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *532 + category: *533 error: type: string example: error reading field xyz @@ -69995,8 +70080,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *533 - tool: *520 + sarif_id: *534 + tool: *521 deletable: type: boolean warning: @@ -70057,9 +70142,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70093,8 +70178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *435 - *436 + - *437 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70107,7 +70192,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: response: summary: application/json response @@ -70161,14 +70246,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *522 + '403': *523 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70248,8 +70333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *435 - *436 + - *437 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -70302,9 +70387,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *528 + '403': *529 '404': *6 - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -70324,8 +70409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -70333,7 +70418,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 title: CodeQL Database description: A CodeQL database. type: object @@ -70444,9 +70529,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70473,8 +70558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *435 - *436 + - *437 - name: language in: path description: The language of the CodeQL database. @@ -70486,7 +70571,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -70518,11 +70603,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &569 + '302': &570 description: Found - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70542,8 +70627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *435 - *436 + - *437 - name: language in: path description: The language of the CodeQL database. @@ -70553,9 +70638,9 @@ paths: responses: '204': description: Response - '403': *528 + '403': *529 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70581,8 +70666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -70591,7 +70676,7 @@ paths: type: object additionalProperties: false properties: - language: &536 + language: &537 type: string description: The language targeted by the CodeQL query enum: @@ -70670,7 +70755,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &540 + schema: &541 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -70678,9 +70763,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *109 + controller_repo: *110 actor: *4 - query_language: *536 + query_language: *537 query_pack_url: type: string description: The download url for the query pack. @@ -70727,7 +70812,7 @@ paths: items: type: object properties: - repository: &537 + repository: &538 title: Repository Identifier description: Repository Identifier type: object @@ -70763,7 +70848,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &541 + analysis_status: &542 type: string description: The new status of the CodeQL variant analysis repository task. @@ -70795,7 +70880,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &538 + access_mismatch_repos: &539 type: object properties: repository_count: @@ -70809,7 +70894,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *537 + items: *538 required: - repository_count - repositories @@ -70831,8 +70916,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *538 - over_limit_repos: *538 + no_codeql_db_repos: *539 + over_limit_repos: *539 required: - access_mismatch_repos - not_found_repos @@ -70848,7 +70933,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &539 + value: &540 summary: Default response value: id: 1 @@ -71000,17 +71085,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *539 + value: *540 repository_lists: summary: Response for a successful variant analysis submission - value: *539 + value: *540 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71031,8 +71116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *435 - *436 + - *437 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -71044,11 +71129,11 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *539 + default: *540 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71069,7 +71154,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *435 + - *436 - name: repo in: path description: The name of the controller repository. @@ -71103,8 +71188,8 @@ paths: schema: type: object properties: - repository: *109 - analysis_status: *541 + repository: *110 + analysis_status: *542 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -71208,7 +71293,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71229,8 +71314,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -71315,9 +71400,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *522 + '403': *523 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71336,8 +71421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -71404,7 +71489,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -71429,7 +71514,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *528 + '403': *529 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -71443,7 +71528,7 @@ paths: content: application/json: schema: *3 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71500,8 +71585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -71509,7 +71594,7 @@ paths: schema: type: object properties: - commit_sha: *542 + commit_sha: *543 ref: type: string description: |- @@ -71567,7 +71652,7 @@ paths: schema: type: object properties: - id: *533 + id: *534 url: type: string description: The REST API URL for checking the status of the upload. @@ -71581,11 +71666,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *528 + '403': *529 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71604,8 +71689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *435 - *436 + - *437 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -71651,10 +71736,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *522 + '403': *523 '404': description: Not Found if the sarif id does not match any upload - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71676,8 +71761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -71701,7 +71786,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *104 + configuration: *105 examples: default: value: @@ -71733,7 +71818,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *132 + '204': *133 '304': *37 '403': *29 '404': *6 @@ -71758,8 +71843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *435 - *436 + - *437 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -71879,8 +71964,8 @@ paths: parameters: - *17 - *19 - - *435 - *436 + - *437 responses: '200': description: Response @@ -71896,7 +71981,7 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: default: value: @@ -72172,7 +72257,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -72194,8 +72279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -72258,22 +72343,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -72297,8 +72382,8 @@ paths: parameters: - *17 - *19 - - *435 - *436 + - *437 responses: '200': description: Response @@ -72338,7 +72423,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *91 + '500': *40 '400': *14 '401': *25 '403': *29 @@ -72362,8 +72447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *435 - *436 + - *437 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -72398,14 +72483,14 @@ paths: type: integer machines: type: array - items: &784 + items: &785 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *544 - required: *545 + properties: *545 + required: *546 examples: - default: &785 + default: &786 value: total_count: 2 machines: @@ -72422,7 +72507,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -72445,8 +72530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *435 - *436 + - *437 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -72530,8 +72615,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *435 - *436 + - *437 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -72576,7 +72661,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72597,8 +72682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -72616,7 +72701,7 @@ paths: type: integer secrets: type: array - items: &549 + items: &550 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -72636,9 +72721,9 @@ paths: - created_at - updated_at examples: - default: *546 + default: *547 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72659,16 +72744,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -72688,17 +72773,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72718,9 +72803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -72748,7 +72833,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -72772,9 +72857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -72802,8 +72887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *435 - *436 + - *437 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -72845,7 +72930,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &551 + properties: &552 login: type: string example: octocat @@ -72938,7 +73023,7 @@ paths: user_view_type: type: string example: public - required: &552 + required: &553 - avatar_url - events_url - followers_url @@ -72987,7 +73072,7 @@ paths: admin: false role_name: write headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -73012,9 +73097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '204': description: Response if user is a collaborator @@ -73060,9 +73145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 requestBody: required: false content: @@ -73088,7 +73173,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &626 + schema: &627 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -73099,7 +73184,7 @@ paths: example: 42 type: integer format: int64 - repository: *241 + repository: *242 invitee: title: Simple User description: A GitHub user. @@ -73277,7 +73362,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *218 + schema: *219 '403': *29 x-github: triggersNotification: true @@ -73317,9 +73402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '204': description: No Content when collaborator was removed from the repository. @@ -73350,9 +73435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *435 - *436 - - *263 + - *437 + - *264 responses: '200': description: if user has admin permissions @@ -73372,8 +73457,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *551 - required: *552 + properties: *552 + required: *553 nullable: true required: - permission @@ -73428,8 +73513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -73439,7 +73524,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Commit Comment description: Commit Comment type: object @@ -73480,8 +73565,8 @@ paths: updated_at: type: string format: date-time - author_association: *178 - reactions: *179 + author_association: *179 + reactions: *180 required: - url - html_url @@ -73497,7 +73582,7 @@ paths: - created_at - updated_at examples: - default: &556 + default: &557 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73531,7 +73616,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73556,17 +73641,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &557 + default: &558 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73623,9 +73708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -73647,7 +73732,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -73698,9 +73783,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -73721,9 +73806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -73749,11 +73834,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -73772,9 +73857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -73806,16 +73891,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -73837,10 +73922,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -73889,8 +73974,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *435 - *436 + - *437 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -73946,9 +74031,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: &676 + default: &677 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74018,11 +74103,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *40 - '500': *91 + Link: *43 + '500': *40 '400': *14 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74042,9 +74127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *435 - *436 - - &555 + - *437 + - &556 name: commit_sha description: The SHA of the commit. in: path @@ -74091,7 +74176,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74116,9 +74201,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *435 - *436 - - *555 + - *437 + - *556 - *17 - *19 responses: @@ -74128,11 +74213,11 @@ paths: application/json: schema: type: array - items: *553 + items: *554 examples: - default: *556 + default: *557 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74158,9 +74243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *435 - *436 - - *555 + - *437 + - *556 requestBody: required: true content: @@ -74195,9 +74280,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *557 + default: *558 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -74225,9 +74310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *435 - *436 - - *555 + - *437 + - *556 - *17 - *19 responses: @@ -74237,9 +74322,9 @@ paths: application/json: schema: type: array - items: *558 + items: *559 examples: - default: &668 + default: &669 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -74718,8 +74803,8 @@ paths: auto_merge: draft: false headers: - Link: *40 - '409': *108 + Link: *43 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74776,11 +74861,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *435 - *436 + - *437 - *19 - *17 - - &559 + - &560 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -74795,9 +74880,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: &655 + default: &656 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74883,9 +74968,9 @@ paths: ..... '422': *15 '404': *6 - '500': *91 - '503': *166 - '409': *108 + '500': *40 + '503': *167 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74910,11 +74995,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *435 - *436 - - *559 + - *437 - *560 - *561 + - *562 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -74948,11 +75033,11 @@ paths: type: integer check_runs: type: array - items: *506 + items: *507 examples: - default: *562 + default: *563 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74975,9 +75060,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -74985,7 +75070,7 @@ paths: schema: type: integer example: 1 - - *560 + - *561 - *17 - *19 responses: @@ -75003,7 +75088,7 @@ paths: type: integer check_suites: type: array - items: *511 + items: *512 examples: default: value: @@ -75178,7 +75263,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75203,9 +75288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - *17 - *19 responses: @@ -75272,7 +75357,7 @@ paths: type: string total_count: type: integer - repository: *241 + repository: *242 commit_url: type: string format: uri @@ -75403,9 +75488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *435 - *436 - - *559 + - *437 + - *560 - *17 - *19 responses: @@ -75415,7 +75500,7 @@ paths: application/json: schema: type: array - items: &729 + items: &730 title: Status description: The status of a commit. type: object @@ -75495,8 +75580,8 @@ paths: type: User site_admin: false headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75524,8 +75609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -75554,20 +75639,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *563 - required: *564 + properties: *564 + required: *565 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &565 + properties: &566 url: type: string format: uri html_url: type: string format: uri - required: &566 + required: &567 - url - html_url nullable: true @@ -75575,32 +75660,32 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true contributing: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true readme: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true issue_template: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true pull_request_template: title: Community Health File type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true required: - code_of_conduct @@ -75727,8 +75812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *435 - *436 + - *437 - *19 - *17 - name: basehead @@ -75771,8 +75856,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *554 - merge_base_commit: *554 + base_commit: *555 + merge_base_commit: *555 status: type: string enum: @@ -75792,10 +75877,10 @@ paths: example: 6 commits: type: array - items: *554 + items: *555 files: type: array - items: *567 + items: *568 required: - url - html_url @@ -76038,8 +76123,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76081,8 +76166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -76225,7 +76310,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &568 + response-if-content-is-a-file: &569 summary: Response if content is a file value: type: file @@ -76357,7 +76442,7 @@ paths: - size - type - url - - &681 + - &682 title: Content File description: Content File type: object @@ -76558,7 +76643,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *568 + response-if-content-is-a-file: *569 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -76627,7 +76712,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *569 + '302': *570 '304': *37 x-github: githubCloudOnly: false @@ -76650,8 +76735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -76744,7 +76829,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &571 title: File Commit description: File Commit type: object @@ -76896,7 +76981,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: example-for-creating-a-file: value: @@ -76950,7 +77035,7 @@ paths: schema: oneOf: - *3 - - &608 + - &609 description: Repository rule violation was detected type: object properties: @@ -76971,7 +77056,7 @@ paths: items: type: object properties: - placeholder_id: &721 + placeholder_id: &722 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -77003,8 +77088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *435 - *436 + - *437 - name: path description: path parameter in: path @@ -77065,7 +77150,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: default: value: @@ -77099,8 +77184,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *108 - '503': *166 + '409': *109 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77120,8 +77205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *435 - *436 + - *437 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -77221,7 +77306,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *40 + Link: *43 '204': description: Response if repository is empty '403': *29 @@ -77244,23 +77329,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *435 - *436 - - *290 + - *437 - *291 - *292 - *293 + - *294 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *294 - *295 - *296 - *297 - - *100 + - *298 + - *101 - name: page description: "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead." @@ -77277,10 +77362,10 @@ paths: schema: type: integer default: 30 - - *98 - *99 - - *298 + - *100 - *299 + - *300 responses: '200': description: Response @@ -77288,11 +77373,11 @@ paths: application/json: schema: type: array - items: &573 + items: &574 type: object description: A Dependabot alert. properties: - number: *112 + number: *113 state: type: string description: The state of the Dependabot alert. @@ -77307,7 +77392,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *113 + package: *114 manifest_path: type: string description: The full path to the dependency manifest file, @@ -77334,13 +77419,13 @@ paths: - unknown - direct - transitive - security_advisory: *571 - security_vulnerability: *116 - url: *117 - html_url: *118 - created_at: *119 - updated_at: *120 - dismissed_at: *121 + security_advisory: *572 + security_vulnerability: *117 + url: *118 + html_url: *119 + created_at: *120 + updated_at: *121 + dismissed_at: *122 dismissed_by: title: Simple User description: A GitHub user. @@ -77364,8 +77449,8 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *122 - auto_dismissed_at: *572 + fixed_at: *123 + auto_dismissed_at: *573 required: - number - state @@ -77595,9 +77680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *435 - *436 - - &574 + - *437 + - &575 name: alert_number in: path description: |- @@ -77606,13 +77691,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *112 + schema: *113 responses: '200': description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -77725,9 +77810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *435 - *436 - - *574 + - *437 + - *575 requestBody: required: true content: @@ -77772,7 +77857,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -77878,7 +77963,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *108 + '409': *109 '422': *7 x-github: githubCloudOnly: false @@ -77901,8 +77986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -77920,7 +78005,7 @@ paths: type: integer secrets: type: array - items: &577 + items: &578 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -77951,7 +78036,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77973,16 +78058,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78002,15 +78087,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '200': description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -78036,9 +78121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 requestBody: required: true content: @@ -78066,7 +78151,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -78090,9 +78175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *435 - *436 - - *251 + - *437 + - *252 responses: '204': description: Response @@ -78114,8 +78199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *435 - *436 + - *437 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -78251,7 +78336,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *40 + Link: *43 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -78275,8 +78360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -78492,7 +78577,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *40 + Link: *43 '404': *6 '403': *29 x-github: @@ -78515,8 +78600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -78591,7 +78676,7 @@ paths: - version - url additionalProperties: false - metadata: &578 + metadata: &579 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -78624,7 +78709,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *578 + metadata: *579 resolved: type: object description: A collection of resolved package dependencies. @@ -78637,7 +78722,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *578 + metadata: *579 relationship: type: string description: A notation of whether a dependency is requested @@ -78766,8 +78851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *435 - *436 + - *437 - name: sha description: The SHA recorded at creation time. in: query @@ -78807,11 +78892,11 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: *580 + default: *581 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78875,8 +78960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -78957,7 +79042,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: simple-example: summary: Simple example @@ -79030,9 +79115,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *435 - *436 - - &581 + - *437 + - &582 name: deployment_id description: deployment_id parameter in: path @@ -79044,7 +79129,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: default: value: @@ -79109,9 +79194,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *435 - *436 - - *581 + - *437 + - *582 responses: '204': description: Response @@ -79133,9 +79218,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *435 - *436 - - *581 + - *437 + - *582 - *17 - *19 responses: @@ -79145,7 +79230,7 @@ paths: application/json: schema: type: array - items: &582 + items: &583 title: Deployment Status description: The status of a deployment. type: object @@ -79236,8 +79321,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -79286,7 +79371,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -79306,9 +79391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *435 - *436 - - *581 + - *437 + - *582 requestBody: required: true content: @@ -79383,9 +79468,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -79441,9 +79526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *435 - *436 - - *581 + - *437 + - *582 - name: status_id in: path required: true @@ -79454,9 +79539,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '404': *6 x-github: githubCloudOnly: false @@ -79483,12 +79568,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 - - *584 + - *437 - *585 - *586 - *587 + - *588 - *17 - *19 responses: @@ -79498,12 +79583,12 @@ paths: application/json: schema: type: array - items: *588 + items: *589 examples: - default: *589 + default: *590 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/code-scanning/{alert_number}": get: summary: Get a dismissal request for a code scanning alert for a repository @@ -79524,8 +79609,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79537,7 +79622,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -79573,7 +79658,7 @@ paths: html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review a dismissal request for a code scanning alert for a repository description: |- @@ -79593,8 +79678,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79632,7 +79717,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for a repository @@ -79653,12 +79738,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 - - *93 + - *437 - *94 - *95 - - *590 + - *96 + - *591 - *17 - *19 responses: @@ -79668,12 +79753,12 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *592 + default: *593 '404': *6 '403': *29 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dismissal-requests/secret-scanning/{alert_number}": get: summary: Get an alert dismissal request for secret scanning @@ -79695,8 +79780,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79708,7 +79793,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -79745,7 +79830,7 @@ paths: html_url: https://github.com/octo-org/smile/security/secret-scanning/17 '404': *6 '403': *29 - '500': *91 + '500': *40 patch: summary: Review an alert dismissal request for secret scanning description: |- @@ -79766,8 +79851,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *435 - *436 + - *437 - name: alert_number in: path required: true @@ -79817,7 +79902,7 @@ paths: '404': *6 '403': *29 '422': *15 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/dispatches": post: summary: Create a repository dispatch event @@ -79836,8 +79921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -79894,8 +79979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -79912,7 +79997,7 @@ paths: type: integer environments: type: array - items: &594 + items: &595 title: Environment description: Details of a deployment environment type: object @@ -79964,7 +80049,7 @@ paths: type: type: string example: wait_timer - wait_timer: &596 + wait_timer: &597 type: integer example: 30 description: The amount of time to delay a job after @@ -80001,11 +80086,11 @@ paths: items: type: object properties: - type: *593 + type: *594 reviewer: anyOf: - *4 - - *269 + - *270 required: - id - node_id @@ -80025,7 +80110,7 @@ paths: - id - node_id - type - deployment_branch_policy: &597 + deployment_branch_policy: &598 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -80141,9 +80226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *435 - *436 - - &595 + - *437 + - &596 name: environment_name in: path required: true @@ -80156,9 +80241,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &598 + default: &599 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -80242,9 +80327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: false content: @@ -80253,7 +80338,7 @@ paths: type: object nullable: true properties: - wait_timer: *596 + wait_timer: *597 prevent_self_review: type: boolean example: false @@ -80270,13 +80355,13 @@ paths: items: type: object properties: - type: *593 + type: *594 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *597 + deployment_branch_policy: *598 additionalProperties: false examples: default: @@ -80296,9 +80381,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *598 + default: *599 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -80322,9 +80407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *435 - *436 - - *595 + - *437 + - *596 responses: '204': description: Default response @@ -80349,9 +80434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *435 - *436 - - *595 + - *437 + - *596 - *17 - *19 responses: @@ -80369,7 +80454,7 @@ paths: example: 2 branch_policies: type: array - items: &599 + items: &600 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -80426,9 +80511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: true content: @@ -80474,9 +80559,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - example-wildcard: &600 + example-wildcard: &601 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -80518,10 +80603,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - &601 + - *437 + - *596 + - &602 name: branch_policy_id in: path required: true @@ -80533,9 +80618,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *600 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80554,10 +80639,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - *601 + - *437 + - *596 + - *602 requestBody: required: true content: @@ -80585,9 +80670,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *600 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80606,10 +80691,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *435 - *436 - - *595 - - *601 + - *437 + - *596 + - *602 responses: '204': description: Response @@ -80634,9 +80719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 responses: '200': description: List of deployment protection rules @@ -80652,7 +80737,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &602 + items: &603 title: Deployment protection rule description: Deployment protection rule type: object @@ -80671,7 +80756,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &603 + app: &604 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -80770,9 +80855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 requestBody: content: application/json: @@ -80793,9 +80878,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *602 + schema: *603 examples: - default: &604 + default: &605 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -80830,9 +80915,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 - *19 - *17 responses: @@ -80851,7 +80936,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *603 + items: *604 examples: default: value: @@ -80886,10 +80971,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *435 - *436 - - *595 - - &605 + - *437 + - *596 + - &606 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -80901,9 +80986,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *604 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80924,10 +81009,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *595 + - *596 + - *437 - *436 - - *435 - - *605 + - *606 responses: '204': description: Response @@ -80953,9 +81038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *435 - *436 - - *595 + - *437 + - *596 - *17 - *19 responses: @@ -80973,11 +81058,11 @@ paths: type: integer secrets: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81000,17 +81085,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *435 - *436 - - *595 + - *437 + - *596 responses: '200': description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81032,18 +81117,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *606 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81065,10 +81150,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 requestBody: required: true content: @@ -81099,7 +81184,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -81125,10 +81210,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *435 - *436 - - *595 - - *251 + - *437 + - *596 + - *252 responses: '204': description: Default response @@ -81153,10 +81238,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *435 - *436 - - *595 - - *459 + - *437 + - *596 + - *460 - *19 responses: '200': @@ -81173,11 +81258,11 @@ paths: type: integer variables: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81198,9 +81283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *435 - *436 - - *595 + - *437 + - *596 requestBody: required: true content: @@ -81227,7 +81312,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -81252,18 +81337,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *435 - *436 - - *595 - - *254 + - *437 + - *596 + - *255 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81284,10 +81369,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *435 - *436 - - *254 - - *595 + - *437 + - *255 + - *596 requestBody: required: true content: @@ -81329,10 +81414,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *435 - *436 - - *254 - - *595 + - *437 + - *255 + - *596 responses: '204': description: Response @@ -81354,8 +81439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -81365,7 +81450,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: 200-response: value: @@ -81432,8 +81517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *435 - *436 + - *437 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -81455,7 +81540,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -81568,7 +81653,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *40 + Link: *43 '400': *14 x-github: githubCloudOnly: false @@ -81592,8 +81677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -81625,9 +81710,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 '400': *14 '422': *15 '403': *29 @@ -81648,8 +81733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -81700,7 +81785,7 @@ paths: schema: type: string '404': *6 - '409': *108 + '409': *109 '403': *29 '422': description: Validation failed @@ -81708,8 +81793,8 @@ paths: application/json: schema: oneOf: - - *218 - - *608 + - *219 + - *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81734,8 +81819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *435 - *436 + - *437 - name: file_sha in: path required: true @@ -81786,7 +81871,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81834,8 +81919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -81944,7 +82029,7 @@ paths: description: Response content: application/json: - schema: &609 + schema: &610 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -82108,7 +82193,7 @@ paths: type: string '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82158,15 +82243,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *435 - *436 - - *555 + - *437 + - *556 responses: '200': description: Response content: application/json: - schema: *609 + schema: *610 examples: default: value: @@ -82197,7 +82282,7 @@ paths: payload: verified_at: '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82222,9 +82307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *435 - *436 - - &610 + - *437 + - &611 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -82241,7 +82326,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 title: Git Reference description: Git references within a repository type: object @@ -82294,8 +82379,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *40 - '409': *108 + Link: *43 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82316,17 +82401,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: &612 + default: &613 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -82336,7 +82421,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82355,8 +82440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82385,16 +82470,16 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: *612 + default: *613 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82413,9 +82498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 requestBody: required: true content: @@ -82444,11 +82529,11 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: *612 + default: *613 '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82464,16 +82549,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *435 - *436 - - *610 + - *437 + - *611 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82521,8 +82606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82589,7 +82674,7 @@ paths: description: Response content: application/json: - schema: &614 + schema: &615 title: Git Tag description: Metadata for a Git tag type: object @@ -82640,7 +82725,7 @@ paths: - sha - type - url - verification: *613 + verification: *614 required: - sha - url @@ -82650,7 +82735,7 @@ paths: - tag - message examples: - default: &615 + default: &616 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -82677,7 +82762,7 @@ paths: schema: type: string '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82723,8 +82808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *435 - *436 + - *437 - name: tag_sha in: path required: true @@ -82735,11 +82820,11 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82761,8 +82846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -82835,7 +82920,7 @@ paths: description: Response content: application/json: - schema: &616 + schema: &617 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -82908,7 +82993,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82931,8 +83016,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *435 - *436 + - *437 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -82955,7 +83040,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *617 examples: default-response: summary: Default response @@ -82996,7 +83081,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83014,8 +83099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -83025,7 +83110,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 title: Webhook description: Webhooks for repositories. type: object @@ -83079,7 +83164,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &868 + last_response: &869 title: Hook Response type: object properties: @@ -83134,7 +83219,7 @@ paths: status: unused message: headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -83153,8 +83238,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -83206,9 +83291,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: &618 + default: &619 value: type: Repository id: 12345678 @@ -83256,17 +83341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '200': description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -83286,9 +83371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 requestBody: required: true content: @@ -83333,9 +83418,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '422': *15 '404': *6 x-github: @@ -83356,9 +83441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83382,9 +83467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '200': description: Response @@ -83411,9 +83496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *435 - *436 - - *307 + - *437 + - *308 requestBody: required: false content: @@ -83457,11 +83542,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *435 - *436 - - *307 - - *17 + - *437 - *308 + - *17 + - *309 responses: '200': description: Response @@ -83469,9 +83554,9 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: - default: *310 + default: *311 '400': *14 '422': *15 x-github: @@ -83490,18 +83575,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 - *16 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *312 + default: *313 '400': *14 '422': *15 x-github: @@ -83520,9 +83605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 - *16 responses: '202': *39 @@ -83545,9 +83630,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83572,9 +83657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *435 - *436 - - *307 + - *437 + - *308 responses: '204': description: Response @@ -83632,14 +83717,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &619 + schema: &620 title: Import description: A repository import from an external source. type: object @@ -83738,7 +83823,7 @@ paths: - html_url - authors_url examples: - default: &622 + default: &623 value: vcs: subversion use_lfs: true @@ -83754,7 +83839,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &620 + '503': &621 description: Unavailable due to service under maintenance. content: application/json: @@ -83783,8 +83868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -83832,7 +83917,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default: value: @@ -83857,7 +83942,7 @@ paths: type: string '422': *15 '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83885,8 +83970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -83935,7 +84020,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: example-1: summary: Example 1 @@ -83983,7 +84068,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84006,12 +84091,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *435 - *436 + - *437 responses: '204': description: Response - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84037,9 +84122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *435 - *436 - - &807 + - *437 + - &808 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -84053,7 +84138,7 @@ paths: application/json: schema: type: array - items: &621 + items: &622 title: Porter Author description: Porter Author type: object @@ -84107,7 +84192,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84132,8 +84217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *435 - *436 + - *437 - name: author_id in: path required: true @@ -84163,7 +84248,7 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: default: value: @@ -84176,7 +84261,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84200,8 +84285,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84242,7 +84327,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84270,8 +84355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -84298,11 +84383,11 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *622 + default: *623 '422': *15 - '503': *620 + '503': *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84325,8 +84410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84334,8 +84419,8 @@ paths: application/json: schema: *22 examples: - default: *623 - '301': *449 + default: *624 + '301': *450 '404': *6 x-github: githubCloudOnly: false @@ -84355,8 +84440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -84364,12 +84449,12 @@ paths: application/json: schema: anyOf: - - *325 + - *326 - type: object properties: {} additionalProperties: false examples: - default: &625 + default: &626 value: limit: collaborators_only origin: repository @@ -84394,13 +84479,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: application/json: - schema: *624 + schema: *625 examples: default: summary: Example request body @@ -84412,9 +84497,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *625 + default: *626 '409': description: Response x-github: @@ -84436,8 +84521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -84460,8 +84545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -84471,9 +84556,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: &800 + default: &801 value: - id: 1 repository: @@ -84587,7 +84672,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84604,9 +84689,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *435 - *436 - - *329 + - *437 + - *330 requestBody: required: false content: @@ -84635,7 +84720,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -84766,9 +84851,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *435 - *436 - - *329 + - *437 + - *330 responses: '204': description: Response @@ -84799,8 +84884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *435 - *436 + - *437 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -84848,7 +84933,7 @@ paths: required: false schema: type: string - - *333 + - *334 - name: sort description: What to sort results by. in: query @@ -84860,8 +84945,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -84871,9 +84956,9 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: &635 + default: &636 value: - id: 1 node_id: MDU6SXNzdWUx @@ -85020,8 +85105,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '422': *15 '404': *6 x-github: @@ -85050,8 +85135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -85133,9 +85218,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: &632 + default: &633 value: id: 1 node_id: MDU6SXNzdWUx @@ -85289,9 +85374,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *166 + '503': *167 '404': *6 - '410': *446 + '410': *447 x-github: triggersNotification: true githubCloudOnly: false @@ -85319,9 +85404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *435 - *436 - - *201 + - *437 + - *202 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -85331,7 +85416,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -85341,9 +85426,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: &634 + default: &635 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85374,7 +85459,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 '422': *15 '404': *6 x-github: @@ -85401,17 +85486,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -85465,9 +85550,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -85489,9 +85574,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -85509,9 +85594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -85531,9 +85616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -85559,11 +85644,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -85582,9 +85667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -85616,16 +85701,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -85647,10 +85732,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -85670,8 +85755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -85681,7 +85766,7 @@ paths: application/json: schema: type: array - items: &631 + items: &632 title: Issue Event description: Issue Event type: object @@ -85724,8 +85809,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true label: title: Issue Event Label @@ -85769,7 +85854,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *269 + requested_team: *270 dismissed_review: title: Issue Event Dismissed Review type: object @@ -85834,7 +85919,7 @@ paths: required: - from - to - author_association: *178 + author_association: *179 lock_reason: type: string nullable: true @@ -85847,8 +85932,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 required: - id - node_id @@ -86014,7 +86099,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -86032,8 +86117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *435 - *436 + - *437 - name: event_id in: path required: true @@ -86044,7 +86129,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -86237,7 +86322,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *446 + '410': *447 '403': *29 x-github: githubCloudOnly: false @@ -86271,9 +86356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *435 - *436 - - &633 + - *437 + - &634 name: issue_number description: The number that identifies the issue. in: path @@ -86285,12 +86370,12 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '404': *6 - '410': *446 + '410': *447 '304': *37 x-github: githubCloudOnly: false @@ -86315,9 +86400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -86421,15 +86506,15 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 '422': *15 - '503': *166 + '503': *167 '403': *29 - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86447,9 +86532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -86475,9 +86560,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86493,9 +86578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: content: application/json: @@ -86520,9 +86605,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86544,9 +86629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: assignee in: path required: true @@ -86586,10 +86671,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *435 - *436 - - *633 - - *181 + - *437 + - *634 + - *182 - *17 - *19 responses: @@ -86599,13 +86684,13 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *634 + default: *635 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86634,9 +86719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -86658,16 +86743,16 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -86695,9 +86780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86707,14 +86792,14 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86742,9 +86827,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -86766,17 +86851,17 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *449 + '301': *450 '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -86807,9 +86892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -86821,15 +86906,15 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 x-github: triggersNotification: true githubCloudOnly: false @@ -86855,9 +86940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86867,14 +86952,14 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86891,9 +86976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -86907,7 +86992,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &638 + - &639 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -86938,8 +87023,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 label: type: object properties: @@ -86961,7 +87046,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &639 + - &640 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -86992,8 +87077,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 label: type: object properties: @@ -87081,8 +87166,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 assigner: *4 required: @@ -87097,7 +87182,7 @@ paths: - performed_via_github_app - assignee - assigner - - &640 + - &641 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -87128,8 +87213,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 milestone: type: object properties: @@ -87148,7 +87233,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &641 + - &642 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -87179,8 +87264,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 milestone: type: object properties: @@ -87199,7 +87284,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &642 + - &643 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -87230,8 +87315,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 rename: type: object properties: @@ -87253,7 +87338,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &643 + - &644 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -87284,10 +87369,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 review_requester: *4 - requested_team: *269 + requested_team: *270 requested_reviewer: *4 required: - review_requester @@ -87300,7 +87385,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &644 + - &645 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -87331,10 +87416,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 review_requester: *4 - requested_team: *269 + requested_team: *270 requested_reviewer: *4 required: - review_requester @@ -87347,7 +87432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &645 + - &646 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -87378,8 +87463,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 dismissed_review: type: object properties: @@ -87407,7 +87492,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &646 + - &647 title: Locked Issue Event description: Locked Issue Event type: object @@ -87438,8 +87523,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 lock_reason: type: string example: '"off-topic"' @@ -87455,7 +87540,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &647 + - &648 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -87486,8 +87571,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87521,7 +87606,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &649 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -87552,8 +87637,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87587,7 +87672,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &650 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -87618,8 +87703,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 project_card: type: object properties: @@ -87653,7 +87738,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &651 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -87743,8 +87828,8 @@ paths: name: label color: red headers: - Link: *40 - '410': *446 + Link: *43 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87761,9 +87846,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -87773,7 +87858,7 @@ paths: application/json: schema: type: array - items: &636 + items: &637 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -87820,7 +87905,7 @@ paths: - color - default examples: - default: &637 + default: &638 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87837,10 +87922,10 @@ paths: color: a2eeef default: false headers: - Link: *40 - '301': *449 + Link: *43 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87857,9 +87942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -87918,12 +88003,12 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 - '301': *449 + default: *638 + '301': *450 '404': *6 - '410': *446 + '410': *447 '422': *15 x-github: githubCloudOnly: false @@ -87940,9 +88025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -88002,12 +88087,12 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 - '301': *449 + default: *638 + '301': *450 '404': *6 - '410': *446 + '410': *447 '422': *15 x-github: githubCloudOnly: false @@ -88024,15 +88109,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '204': description: Response - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88051,9 +88136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: name in: path required: true @@ -88066,7 +88151,7 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: default: value: @@ -88077,9 +88162,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *449 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88099,9 +88184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: false content: @@ -88129,7 +88214,7 @@ paths: '204': description: Response '403': *29 - '410': *446 + '410': *447 '404': *6 '422': *15 x-github: @@ -88147,9 +88232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '204': description: Response @@ -88179,20 +88264,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 responses: '200': description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 - '301': *449 + default: *633 + '301': *450 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88209,9 +88294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -88237,13 +88322,13 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88261,9 +88346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88295,16 +88380,16 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -88326,10 +88411,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *435 - *436 - - *633 - - *427 + - *437 + - *634 + - *428 responses: '204': description: Response @@ -88358,9 +88443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88382,9 +88467,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -88417,9 +88502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -88429,13 +88514,13 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *635 + default: *636 headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88463,9 +88548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88492,16 +88577,16 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *446 + '410': *447 '422': *15 '404': *6 x-github: @@ -88521,9 +88606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 requestBody: required: true content: @@ -88554,13 +88639,13 @@ paths: description: Response content: application/json: - schema: *191 + schema: *192 examples: - default: *632 + default: *633 '403': *29 '404': *6 '422': *7 - '503': *166 + '503': *167 x-github: triggersNotification: true githubCloudOnly: false @@ -88578,9 +88663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *435 - *436 - - *633 + - *437 + - *634 - *17 - *19 responses: @@ -88595,7 +88680,6 @@ paths: description: Timeline Event type: object anyOf: - - *638 - *639 - *640 - *641 @@ -88608,6 +88692,7 @@ paths: - *648 - *649 - *650 + - *651 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -88650,7 +88735,7 @@ paths: issue_url: type: string format: uri - author_association: *178 + author_association: *179 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -88660,9 +88745,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - event - actor @@ -88693,7 +88778,7 @@ paths: properties: type: type: string - issue: *191 + issue: *192 required: - event - created_at @@ -88893,7 +88978,7 @@ paths: type: string body_text: type: string - author_association: *178 + author_association: *179 required: - event - id @@ -88916,7 +89001,7 @@ paths: type: string comments: type: array - items: &670 + items: &671 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -89005,7 +89090,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *178 + author_association: *179 _links: type: object properties: @@ -89089,7 +89174,7 @@ paths: enum: - line - file - reactions: *179 + reactions: *180 body_html: type: string example: '"

comment body

"' @@ -89125,7 +89210,7 @@ paths: type: string comments: type: array - items: *553 + items: *554 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -89156,8 +89241,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 required: - id @@ -89200,8 +89285,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 assignee: *4 required: - id @@ -89244,8 +89329,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 state_reason: type: string nullable: true @@ -89412,9 +89497,9 @@ paths: type: User site_admin: true headers: - Link: *40 + Link: *43 '404': *6 - '410': *446 + '410': *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89431,8 +89516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -89442,7 +89527,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -89492,7 +89577,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89508,8 +89593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -89545,9 +89630,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: &652 + default: &653 value: id: 1 key: ssh-rsa AAA... @@ -89581,9 +89666,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *435 - *436 - - &653 + - *437 + - &654 name: key_id description: The unique identifier of the key. in: path @@ -89595,9 +89680,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: *652 + default: *653 '404': *6 x-github: githubCloudOnly: false @@ -89615,9 +89700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *435 - *436 - - *653 + - *437 + - *654 responses: '204': description: Response @@ -89637,8 +89722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -89648,11 +89733,11 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 + default: *638 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -89671,8 +89756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -89708,9 +89793,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: - default: &654 + default: &655 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89742,8 +89827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89754,9 +89839,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: - default: *654 + default: *655 '404': *6 x-github: githubCloudOnly: false @@ -89773,8 +89858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89813,7 +89898,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -89839,8 +89924,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *435 - *436 + - *437 - name: name in: path required: true @@ -89866,8 +89951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -89903,8 +89988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *435 - *436 + - *437 responses: '202': *39 '403': @@ -89932,8 +90017,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -89959,9 +90044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *435 - *436 - - *529 + - *437 + - *530 responses: '200': description: Response @@ -90023,8 +90108,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true required: - _links @@ -90106,8 +90191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90172,8 +90257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90207,9 +90292,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *554 + schema: *555 examples: - default: *655 + default: *656 '204': description: Response when already merged '404': @@ -90234,8 +90319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *435 - *436 + - *437 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -90276,12 +90361,12 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 examples: default: value: @@ -90320,7 +90405,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -90337,8 +90422,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90378,9 +90463,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -90439,9 +90524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *435 - *436 - - &658 + - *437 + - &659 name: milestone_number description: The number that identifies the milestone. in: path @@ -90453,9 +90538,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 x-github: githubCloudOnly: false @@ -90472,9 +90557,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 requestBody: required: false content: @@ -90512,9 +90597,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90530,9 +90615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 responses: '204': description: Response @@ -90553,9 +90638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *435 - *436 - - *658 + - *437 + - *659 - *17 - *19 responses: @@ -90565,11 +90650,11 @@ paths: application/json: schema: type: array - items: *636 + items: *637 examples: - default: *637 + default: *638 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90586,12 +90671,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *435 - *436 - - *659 + - *437 - *660 - - *181 - *661 + - *182 + - *662 - *17 - *19 responses: @@ -90601,11 +90686,11 @@ paths: application/json: schema: type: array - items: *204 + items: *205 examples: - default: *662 + default: *663 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90627,8 +90712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -90686,14 +90771,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: &663 + schema: &664 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -90818,7 +90903,7 @@ paths: - custom_404 - public examples: - default: &664 + default: &665 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -90859,8 +90944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -90914,11 +90999,11 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *664 + default: *665 '422': *15 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90939,8 +91024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91026,7 +91111,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91047,14 +91132,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *435 - *436 + - *437 responses: '204': description: Response '422': *15 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91074,8 +91159,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -91085,7 +91170,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Page Build description: Page Build type: object @@ -91160,7 +91245,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91179,8 +91264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *435 - *436 + - *437 responses: '201': description: Response @@ -91225,16 +91310,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -91282,8 +91367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *435 - *436 + - *437 - name: build_id in: path required: true @@ -91294,9 +91379,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91316,8 +91401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91422,9 +91507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *435 - *436 - - &667 + - *437 + - &668 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -91482,11 +91567,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *435 - *436 - - *667 + - *437 + - *668 responses: - '204': *132 + '204': *133 '404': *6 x-github: githubCloudOnly: false @@ -91511,8 +91596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -91743,7 +91828,7 @@ paths: description: Empty response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -91770,8 +91855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Private vulnerability reporting status @@ -91808,10 +91893,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *435 - *436 + - *437 responses: - '204': *132 + '204': *133 '422': *14 x-github: githubCloudOnly: false @@ -91830,10 +91915,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *435 - *436 + - *437 responses: - '204': *132 + '204': *133 '422': *14 x-github: githubCloudOnly: false @@ -91854,8 +91939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *435 - *436 + - *437 - name: state description: Indicates the state of the projects to return. in: query @@ -91876,7 +91961,7 @@ paths: application/json: schema: type: array - items: *364 + items: *365 examples: default: value: @@ -91912,11 +91997,11 @@ paths: created_at: '2011-04-10T20:09:31Z' updated_at: '2014-03-03T18:58:10Z' headers: - Link: *40 + Link: *43 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -91939,8 +92024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -91966,13 +92051,13 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: - default: *445 + default: *446 '401': *25 '403': *29 '404': *6 - '410': *446 + '410': *447 '422': *7 x-github: githubCloudOnly: false @@ -91995,8 +92080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -92004,7 +92089,7 @@ paths: application/json: schema: type: array - items: *378 + items: *379 examples: default: value: @@ -92035,8 +92120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -92048,7 +92133,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *378 + items: *379 required: - properties examples: @@ -92098,8 +92183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *435 - *436 + - *437 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -92159,11 +92244,11 @@ paths: application/json: schema: type: array - items: *558 + items: *559 examples: - default: *668 + default: *669 headers: - Link: *40 + Link: *43 '304': *37 '422': *15 x-github: @@ -92193,8 +92278,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -92259,7 +92344,7 @@ paths: description: Response content: application/json: - schema: &672 + schema: &673 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -92370,8 +92455,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true active_lock_reason: type: string @@ -92416,7 +92501,7 @@ paths: nullable: true requested_teams: type: array - items: *402 + items: *403 nullable: true head: type: object @@ -92425,7 +92510,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: *4 @@ -92442,7 +92527,7 @@ paths: type: string ref: type: string - repo: *67 + repo: *69 sha: type: string user: *4 @@ -92455,14 +92540,14 @@ paths: _links: type: object properties: - comments: *372 - commits: *372 - statuses: *372 - html: *372 - issue: *372 - review_comments: *372 - review_comment: *372 - self: *372 + comments: *373 + commits: *373 + statuses: *373 + html: *373 + issue: *373 + review_comments: *373 + review_comment: *373 + self: *373 required: - comments - commits @@ -92472,8 +92557,8 @@ paths: - review_comments - review_comment - self - author_association: *178 - auto_merge: *669 + author_association: *179 + auto_merge: *670 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -92565,7 +92650,7 @@ paths: - merged_by - review_comments examples: - default: &673 + default: &674 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -93092,8 +93177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *435 - *436 + - *437 - name: sort in: query required: false @@ -93112,7 +93197,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -93122,9 +93207,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: &675 + default: &676 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -93176,7 +93261,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93201,17 +93286,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '200': description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: &671 + default: &672 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -93286,9 +93371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -93310,9 +93395,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93328,9 +93413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *190 + - *437 + - *191 responses: '204': description: Response @@ -93351,9 +93436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -93379,11 +93464,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -93402,9 +93487,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *435 - *436 - - *190 + - *437 + - *191 requestBody: required: true content: @@ -93436,16 +93521,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -93467,10 +93552,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *435 - *436 - - *190 - - *427 + - *437 + - *191 + - *428 responses: '204': description: Response @@ -93513,9 +93598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *435 - *436 - - &674 + - *437 + - &675 name: pull_number description: The number that identifies the pull request. in: path @@ -93528,9 +93613,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 '304': *37 '404': *6 '406': @@ -93538,8 +93623,8 @@ paths: content: application/json: schema: *3 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93565,9 +93650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -93609,9 +93694,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 '422': *15 '403': *29 x-github: @@ -93633,9 +93718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -93695,21 +93780,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -93735,10 +93820,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *435 - *436 - - *674 - - *201 + - *437 + - *675 + - *202 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -93748,7 +93833,7 @@ paths: enum: - asc - desc - - *181 + - *182 - *17 - *19 responses: @@ -93758,11 +93843,11 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *675 + default: *676 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93793,9 +93878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -93900,7 +93985,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: example-for-a-multi-line-comment: value: @@ -93988,10 +94073,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *435 - *436 - - *674 - - *190 + - *437 + - *675 + - *191 requestBody: required: true content: @@ -94013,7 +94098,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: default: value: @@ -94099,9 +94184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -94111,11 +94196,11 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: *676 + default: *677 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94143,9 +94228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -94155,7 +94240,7 @@ paths: application/json: schema: type: array - items: *567 + items: *568 examples: default: value: @@ -94171,10 +94256,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *40 + Link: *43 '422': *15 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94193,9 +94278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *435 - *436 - - *674 + - *437 + - *675 responses: '204': description: Response if pull request has been merged @@ -94218,9 +94303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -94331,9 +94416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 responses: '200': description: Response @@ -94349,7 +94434,7 @@ paths: items: *4 teams: type: array - items: *269 + items: *270 required: - users - teams @@ -94390,7 +94475,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94408,9 +94493,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -94447,7 +94532,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -94983,9 +95068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: true content: @@ -95019,7 +95104,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -95524,9 +95609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 - *17 - *19 responses: @@ -95536,7 +95621,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -95605,7 +95690,7 @@ paths: type: string body_text: type: string - author_association: *178 + author_association: *179 required: - id - node_id @@ -95654,7 +95739,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95687,9 +95772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -95775,9 +95860,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &679 + default: &680 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95840,10 +95925,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - &678 + - *437 + - *675 + - &679 name: review_id description: The unique identifier of the review. in: path @@ -95855,9 +95940,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &680 + default: &681 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95916,10 +96001,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -95942,7 +96027,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -96004,18 +96089,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 responses: '200': description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *679 + default: *680 '422': *7 '404': *6 x-github: @@ -96042,10 +96127,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 - *17 - *19 responses: @@ -96124,13 +96209,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *178 + author_association: *179 _links: type: object properties: - self: *372 - html: *372 - pull_request: *372 + self: *373 + html: *373 + pull_request: *373 required: - self - html @@ -96139,7 +96224,7 @@ paths: type: string body_html: type: string - reactions: *179 + reactions: *180 side: description: The side of the first line of the range for a multi-line comment. @@ -96251,7 +96336,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -96280,10 +96365,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -96311,7 +96396,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -96374,10 +96459,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *435 - *436 - - *674 - - *678 + - *437 + - *675 + - *679 requestBody: required: true content: @@ -96412,9 +96497,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *680 + default: *681 '404': *6 '422': *7 '403': *29 @@ -96436,9 +96521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *435 - *436 - - *674 + - *437 + - *675 requestBody: required: false content: @@ -96501,8 +96586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *435 - *436 + - *437 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -96515,9 +96600,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: &682 + default: &683 value: type: file encoding: base64 @@ -96559,8 +96644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *435 - *436 + - *437 - name: dir description: The alternate path to look for a README file in: path @@ -96580,9 +96665,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *6 '422': *15 x-github: @@ -96604,8 +96689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -96615,7 +96700,7 @@ paths: application/json: schema: type: array - items: &683 + items: &684 title: Release description: A release. type: object @@ -96686,7 +96771,7 @@ paths: author: *4 assets: type: array - items: &684 + items: &685 title: Release Asset description: Data related to a release. type: object @@ -96761,7 +96846,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *179 + reactions: *180 required: - assets_url - upload_url @@ -96853,7 +96938,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -96873,8 +96958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -96950,9 +97035,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: &687 + default: &688 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -97057,9 +97142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *435 - *436 - - &685 + - *437 + - &686 name: asset_id description: The unique identifier of the asset. in: path @@ -97071,9 +97156,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: &686 + default: &687 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -97108,7 +97193,7 @@ paths: type: User site_admin: false '404': *6 - '302': *569 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97124,9 +97209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *435 - *436 - - *685 + - *437 + - *686 requestBody: required: false content: @@ -97154,9 +97239,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *686 + default: *687 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97172,9 +97257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *435 - *436 - - *685 + - *437 + - *686 responses: '204': description: Response @@ -97198,8 +97283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -97284,16 +97369,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *435 - *436 + - *437 responses: '200': description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97310,8 +97395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *435 - *436 + - *437 - name: tag description: tag parameter in: path @@ -97324,9 +97409,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '404': *6 x-github: githubCloudOnly: false @@ -97348,9 +97433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *435 - *436 - - &688 + - *437 + - &689 name: release_id description: The unique identifier of the release. in: path @@ -97364,9 +97449,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '401': description: Unauthorized x-github: @@ -97384,9 +97469,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 requestBody: required: false content: @@ -97450,9 +97535,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *687 + default: *688 '404': description: Not Found if the discussion category name is invalid content: @@ -97473,9 +97558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 responses: '204': description: Response @@ -97495,9 +97580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *435 - *436 - - *688 + - *437 + - *689 - *17 - *19 responses: @@ -97507,7 +97592,7 @@ paths: application/json: schema: type: array - items: *684 + items: *685 examples: default: value: @@ -97544,7 +97629,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97589,9 +97674,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *435 - *436 - - *688 + - *437 + - *689 - name: name in: query required: true @@ -97617,7 +97702,7 @@ paths: description: Response for successful upload content: application/json: - schema: *684 + schema: *685 examples: response-for-successful-upload: value: @@ -97672,9 +97757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -97698,11 +97783,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -97721,9 +97806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *435 - *436 - - *688 + - *437 + - *689 requestBody: required: true content: @@ -97753,16 +97838,16 @@ paths: description: Reaction exists content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '201': description: Reaction created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -97784,10 +97869,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *435 - *436 - - *688 - - *427 + - *437 + - *689 + - *428 responses: '204': description: Response @@ -97811,9 +97896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *435 - *436 - - *494 + - *437 + - *495 - *17 - *19 responses: @@ -97829,8 +97914,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *141 - - &689 + - *142 + - &690 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -97849,66 +97934,66 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *142 - - *689 - allOf: - *143 - - *689 + - *690 - allOf: - *144 - - *689 - - allOf: - *690 - - *689 - allOf: - *145 - - *689 + - *690 + - allOf: + - *691 + - *690 - allOf: - *146 - - *689 + - *690 - allOf: - *147 - - *689 + - *690 - allOf: - *148 - - *689 + - *690 - allOf: - *149 - - *689 + - *690 - allOf: - *150 - - *689 + - *690 - allOf: - *151 - - *689 + - *690 - allOf: - *152 - - *689 + - *690 - allOf: - *153 - - *689 + - *690 - allOf: - *154 - - *689 + - *690 - allOf: - *155 - - *689 + - *690 - allOf: - *156 - - *689 + - *690 - allOf: - *157 - - *689 + - *690 - allOf: - *158 - - *689 + - *690 - allOf: - *159 - - *689 + - *690 - allOf: - *160 - - *689 + - *690 + - allOf: + - *161 + - *690 examples: default: value: @@ -97947,8 +98032,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - *17 - *19 - name: includes_parents @@ -97959,7 +98044,7 @@ paths: schema: type: boolean default: true - - *691 + - *692 responses: '200': description: Response @@ -97967,7 +98052,7 @@ paths: application/json: schema: type: array - items: *161 + items: *162 examples: default: value: @@ -97998,7 +98083,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -98014,8 +98099,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 requestBody: description: Request body required: true @@ -98035,16 +98120,16 @@ paths: - tag - push default: branch - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *135 + items: *141 + conditions: *136 rules: type: array description: An array of rules within the ruleset. - items: *692 + items: *693 required: - name - enforcement @@ -98075,9 +98160,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: &701 + default: &702 value: id: 42 name: super cool ruleset @@ -98110,7 +98195,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -98124,12 +98209,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *435 - *436 - - *693 - - *95 + - *437 - *694 + - *96 - *695 + - *696 - *17 - *19 responses: @@ -98137,11 +98222,11 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98160,19 +98245,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *435 - *436 - - *698 + - *437 + - *699 responses: '200': description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *700 + default: *701 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98198,8 +98283,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98219,11 +98304,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *701 + default: *702 '404': *6 - '500': *91 + '500': *40 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -98239,8 +98324,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98265,16 +98350,16 @@ paths: - branch - tag - push - enforcement: *139 + enforcement: *140 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *140 - conditions: *135 + items: *141 + conditions: *136 rules: description: An array of rules within the ruleset. type: array - items: *692 + items: *693 examples: default: value: @@ -98302,11 +98387,11 @@ paths: description: Response content: application/json: - schema: *161 + schema: *162 examples: - default: *701 + default: *702 '404': *6 - '500': *91 + '500': *40 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -98322,8 +98407,8 @@ paths: category: repos subcategory: rules parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98334,7 +98419,7 @@ paths: '204': description: Response '404': *6 - '500': *91 + '500': *40 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -98346,8 +98431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *435 - *436 + - *437 - *17 - *19 - name: ruleset_id @@ -98363,11 +98448,11 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *387 + default: *388 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98384,8 +98469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *435 - *436 + - *437 - name: ruleset_id description: The ID of the ruleset. in: path @@ -98403,7 +98488,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -98436,7 +98521,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98458,21 +98543,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *435 - *436 - - *389 + - *437 - *390 - *391 - *392 - - *100 + - *393 + - *101 - *19 - *17 - - *702 - *703 - - *393 + - *704 - *394 - *395 - *396 + - *397 responses: '200': description: Response @@ -98480,11 +98565,11 @@ paths: application/json: schema: type: array - items: &707 + items: &708 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -98492,15 +98577,15 @@ paths: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *704 - resolution: *705 + state: *705 + resolution: *706 resolved_at: type: string format: date-time @@ -98596,7 +98681,7 @@ paths: pull request. ' - oneOf: *706 + oneOf: *707 nullable: true has_more_locations: type: boolean @@ -98697,7 +98782,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98719,16 +98804,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 - - *396 + - *437 + - *524 + - *397 responses: '200': description: Response content: application/json: - schema: *707 + schema: *708 examples: default: value: @@ -98759,7 +98844,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98780,9 +98865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 requestBody: required: true content: @@ -98790,8 +98875,8 @@ paths: schema: type: object properties: - state: *704 - resolution: *705 + state: *705 + resolution: *706 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -98809,7 +98894,7 @@ paths: description: Response content: application/json: - schema: *707 + schema: *708 examples: default: value: @@ -98862,7 +98947,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -98884,9 +98969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *435 - *436 - - *523 + - *437 + - *524 - *19 - *17 responses: @@ -98897,7 +98982,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &890 + items: &891 type: object properties: type: @@ -98923,7 +99008,6 @@ paths: example: commit details: oneOf: - - *708 - *709 - *710 - *711 @@ -98936,6 +99020,7 @@ paths: - *718 - *719 - *720 + - *721 examples: default: value: @@ -98995,11 +99080,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *40 + Link: *43 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99021,8 +99106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99030,14 +99115,14 @@ paths: schema: type: object properties: - reason: &722 + reason: &723 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *721 + placeholder_id: *722 required: - reason - placeholder_id @@ -99054,7 +99139,7 @@ paths: schema: type: object properties: - reason: *722 + reason: *723 expire_at: type: string format: date-time @@ -99077,7 +99162,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *166 + '503': *167 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -99097,13 +99182,13 @@ paths: 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: - - *435 - *436 + - *437 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *166 + '503': *167 '200': description: Response content: @@ -99113,7 +99198,7 @@ paths: properties: incremental_scans: type: array - items: &723 + items: &724 description: Information on a single scan performed by secret scanning on the repository type: object @@ -99139,15 +99224,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *723 + items: *724 backfill_scans: type: array - items: *723 + items: *724 custom_pattern_backfill_scans: type: array items: allOf: - - *723 + - *724 - type: object properties: pattern_name: @@ -99217,9 +99302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *435 - *436 - - *100 + - *437 + - *101 - name: sort description: The property to sort the results by. in: query @@ -99231,8 +99316,8 @@ paths: - updated - published default: created - - *98 - *99 + - *100 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -99262,9 +99347,9 @@ paths: application/json: schema: type: array - items: *724 + items: *725 examples: - default: *725 + default: *726 '400': *14 '404': *6 x-github: @@ -99287,8 +99372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99361,7 +99446,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 required: - login - type @@ -99448,9 +99533,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: &727 + default: &728 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -99683,8 +99768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -99788,7 +99873,7 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: default: value: @@ -99935,17 +100020,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '200': description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: *727 + default: *728 '403': *29 '404': *6 x-github: @@ -99969,9 +100054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 requestBody: required: true content: @@ -100044,7 +100129,7 @@ paths: login: type: string description: The username of the user credited. - type: *401 + type: *402 required: - login - type @@ -100130,17 +100215,17 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: - default: *727 - add_credit: *727 + default: *728 + add_credit: *728 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *218 + schema: *219 examples: invalid_state_transition: value: @@ -100171,9 +100256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '202': *39 '400': *14 @@ -100200,17 +100285,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *435 - *436 - - *726 + - *437 + - *727 responses: '202': description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 '400': *14 '422': *15 '403': *29 @@ -100236,8 +100321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -100314,7 +100399,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -100336,8 +100421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -100346,7 +100431,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -100359,7 +100444,7 @@ paths: - 1124 - -435 '202': *39 - '204': *132 + '204': *133 '422': description: Repository contains more than 10,000 commits x-github: @@ -100379,8 +100464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -100429,7 +100514,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100456,8 +100541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -100531,7 +100616,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100553,8 +100638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *435 - *436 + - *437 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -100708,8 +100793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *435 - *436 + - *437 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -100719,7 +100804,7 @@ paths: application/json: schema: type: array - items: *728 + items: *729 examples: default: value: @@ -100732,7 +100817,7 @@ paths: - - 0 - 2 - 21 - '204': *132 + '204': *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100752,8 +100837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *435 - *436 + - *437 - name: sha in: path required: true @@ -100807,7 +100892,7 @@ paths: description: Response content: application/json: - schema: *729 + schema: *730 examples: default: value: @@ -100861,8 +100946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -100874,9 +100959,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100894,14 +100979,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *435 - *436 + - *437 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &730 + schema: &731 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -100969,8 +101054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *435 - *436 + - *437 requestBody: required: false content: @@ -100996,7 +101081,7 @@ paths: description: Response content: application/json: - schema: *730 + schema: *731 examples: default: value: @@ -101023,8 +101108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -101044,8 +101129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -101101,7 +101186,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101124,8 +101209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101133,7 +101218,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Tag protection description: Tag protection type: object @@ -101185,8 +101270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101209,7 +101294,7 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: default: value: @@ -101240,8 +101325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *435 - *436 + - *437 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -101278,8 +101363,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *435 - *436 + - *437 - name: ref in: path required: true @@ -101315,8 +101400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *435 - *436 + - *437 - *17 - *19 responses: @@ -101326,11 +101411,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - default: *347 + default: *348 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -101348,8 +101433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *435 - *436 + - *437 - *19 - *17 responses: @@ -101357,7 +101442,7 @@ paths: description: Response content: application/json: - schema: &732 + schema: &733 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -101369,7 +101454,7 @@ paths: required: - names examples: - default: &733 + default: &734 value: names: - octocat @@ -101392,8 +101477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101424,9 +101509,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: *733 + default: *734 '404': *6 '422': *7 x-github: @@ -101447,9 +101532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *435 - *436 - - &734 + - *437 + - &735 name: per description: The time frame to display results for. in: query @@ -101478,7 +101563,7 @@ paths: example: 128 clones: type: array - items: &735 + items: &736 title: Traffic type: object properties: @@ -101565,8 +101650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101656,8 +101741,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *435 - *436 + - *437 responses: '200': description: Response @@ -101717,9 +101802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *435 - *436 - - *734 + - *437 + - *735 responses: '200': description: Response @@ -101738,7 +101823,7 @@ paths: example: 3782 views: type: array - items: *735 + items: *736 required: - uniques - count @@ -101815,8 +101900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *435 - *436 + - *437 requestBody: required: true content: @@ -101852,7 +101937,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: default: value: @@ -102090,8 +102175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *435 - *436 + - *437 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -102114,8 +102199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -102137,8 +102222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -102164,8 +102249,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *435 - *436 + - *437 - name: ref in: path required: true @@ -102257,9 +102342,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -102300,7 +102385,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -102410,7 +102495,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &743 + - &744 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -102419,7 +102504,7 @@ paths: schema: type: string example: members - - &748 + - &749 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -102430,7 +102515,7 @@ paths: default: 1 format: int32 example: 1 - - &749 + - &750 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -102472,7 +102557,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &738 + items: &739 allOf: - type: object required: @@ -102547,7 +102632,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: &750 + meta: &751 type: object description: The metadata associated with the creation/updates to the user. @@ -102607,30 +102692,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &739 + '400': &740 description: Bad request content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '401': *737 - '403': &740 + schema: *737 + '401': *738 + '403': &741 description: Permission denied - '429': &741 + '429': &742 description: Too many requests content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '500': &742 + schema: *737 + '500': &743 description: Internal server error content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 + schema: *737 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102654,7 +102739,7 @@ paths: required: true content: application/json: - schema: &746 + schema: &747 type: object required: - schemas @@ -102714,9 +102799,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *738 + schema: *739 examples: - group: &744 + group: &745 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -102735,13 +102820,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': *739 - '401': *737 - '403': *740 - '409': &747 + '400': *740 + '401': *738 + '403': *741 + '409': &748 description: Duplicate record detected - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102758,7 +102843,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: - - &745 + - &746 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -102766,22 +102851,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *743 + - *744 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *738 + schema: *739 examples: - default: *744 - '400': *739 - '401': *737 - '403': *740 + default: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102800,13 +102885,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: - - *745 + - *746 - *41 requestBody: required: true content: application/json: - schema: *746 + schema: *747 examples: group: summary: Group @@ -102832,17 +102917,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *738 + schema: *739 examples: - group: *744 - groupWithMembers: *744 - '400': *739 - '401': *737 - '403': *740 + group: *745 + groupWithMembers: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102866,13 +102951,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: - - *745 + - *746 - *41 requestBody: required: true content: application/json: - schema: &757 + schema: &758 type: object required: - Operations @@ -102932,17 +103017,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *738 + schema: *739 examples: - updateGroup: *744 - addMembers: *744 - '400': *739 - '401': *737 - '403': *740 + updateGroup: *745 + addMembers: *745 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -102958,17 +103043,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: - - *745 + - *746 - *41 responses: '204': description: Group was deleted, no content - '400': *739 - '401': *737 - '403': *740 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103002,8 +103087,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *748 - *749 + - *750 - *41 responses: '200': @@ -103036,7 +103121,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &752 + items: &753 allOf: - type: object required: @@ -103115,7 +103200,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &751 + roles: &752 type: array description: The roles assigned to the user. items: @@ -103171,7 +103256,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *750 + meta: *751 startIndex: type: integer description: A starting index for the returned page @@ -103208,11 +103293,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *739 - '401': *737 - '403': *740 - '429': *741 - '500': *742 + '400': *740 + '401': *738 + '403': *741 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103236,7 +103321,7 @@ paths: required: true content: application/json: - schema: &755 + schema: &756 type: object required: - schemas @@ -103318,9 +103403,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *751 + roles: *752 examples: - user: &756 + user: &757 summary: User value: schemas: @@ -103367,9 +103452,9 @@ paths: description: User has been created content: application/scim+json: - schema: *752 + schema: *753 examples: - user: &753 + user: &754 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -103395,13 +103480,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: *753 - '400': *739 - '401': *737 - '403': *740 - '409': *747 - '429': *741 - '500': *742 + enterpriseOwner: *754 + '400': *740 + '401': *738 + '403': *741 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103418,7 +103503,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: - - &754 + - &755 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -103431,15 +103516,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *752 + schema: *753 examples: - default: *753 - '400': *739 - '401': *737 - '403': *740 + default: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103461,30 +103546,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: - - *754 + - *755 - *41 requestBody: required: true content: application/json: - schema: *755 + schema: *756 examples: - user: *756 + user: *757 responses: '200': description: User was updated content: application/scim+json: - schema: *752 + schema: *753 examples: - user: *753 - '400': *739 - '401': *737 - '403': *740 + user: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103519,13 +103604,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: - - *754 + - *755 - *41 requestBody: required: true content: application/json: - schema: *757 + schema: *758 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -103565,18 +103650,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *752 + schema: *753 examples: - userMultiValuedProperties: *753 - userSingleValuedProperties: *753 - disableUser: *753 - '400': *739 - '401': *737 - '403': *740 + userMultiValuedProperties: *754 + userSingleValuedProperties: *754 + disableUser: *754 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '409': *747 - '429': *741 - '500': *742 + '409': *748 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103596,17 +103681,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: - - *754 + - *755 - *41 responses: '204': description: User was deleted, no content - '400': *739 - '401': *737 - '403': *740 + '400': *740 + '401': *738 + '403': *741 '404': *6 - '429': *741 - '500': *742 + '429': *742 + '500': *743 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -103639,7 +103724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *76 + - *78 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -103693,7 +103778,7 @@ paths: example: 1 Resources: type: array - items: &758 + items: &759 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -103924,22 +104009,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': *37 - '404': &759 + '404': &760 description: Resource not found content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '403': &760 + schema: *737 + '403': &761 description: Forbidden content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '400': *739 - '429': *741 + schema: *737 + '400': *740 + '429': *742 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -103959,15 +104044,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *76 + - *78 responses: '201': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: &761 + default: &762 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -103990,17 +104075,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': *37 - '404': *759 - '403': *760 - '500': *742 + '404': *760 + '403': *761 + '500': *743 '409': description: Conflict content: application/json: - schema: *736 + schema: *737 application/scim+json: - schema: *736 - '400': *739 + schema: *737 + '400': *740 requestBody: required: true content: @@ -104097,18 +104182,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 - '404': *759 - '403': *760 + default: *762 + '404': *760 + '403': *761 '304': *37 x-github: githubCloudOnly: true @@ -104131,19 +104216,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '304': *37 - '404': *759 - '403': *760 + '404': *760 + '403': *761 requestBody: required: true content: @@ -104255,20 +104340,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *76 - - *754 + - *78 + - *755 responses: '200': description: Response content: application/scim+json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '304': *37 - '404': *759 - '403': *760 - '400': *739 + '404': *760 + '403': *761 + '400': *740 '429': description: Response content: @@ -104358,13 +104443,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *76 - - *754 + - *78 + - *755 responses: '204': description: Response - '404': *759 - '403': *760 + '404': *760 + '403': *761 '304': *37 x-github: githubCloudOnly: true @@ -104479,7 +104564,7 @@ paths: html_url: type: string format: uri - repository: *241 + repository: *242 score: type: number file_size: @@ -104497,7 +104582,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &762 + text_matches: &763 title: Search Result Text Matches type: array items: @@ -104611,7 +104696,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *166 + '503': *167 '422': *15 '403': *29 x-github: @@ -104660,7 +104745,7 @@ paths: enum: - author-date - committer-date - - &763 + - &764 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 @@ -104731,7 +104816,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true comment_count: type: integer @@ -104751,7 +104836,7 @@ paths: url: type: string format: uri - verification: *613 + verification: *614 required: - author - committer @@ -104770,7 +104855,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *492 + properties: *493 nullable: true parents: type: array @@ -104783,12 +104868,12 @@ paths: type: string sha: type: string - repository: *241 + repository: *242 score: type: number node_id: type: string - text_matches: *762 + text_matches: *763 required: - sha - node_id @@ -104971,7 +105056,7 @@ paths: - interactions - created - updated - - *763 + - *764 - *17 - *19 - name: advanced_search @@ -105068,11 +105153,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: type: string state_reason: @@ -105089,8 +105174,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *370 - required: *371 + properties: *371 + required: *372 nullable: true comments: type: integer @@ -105104,7 +105189,7 @@ paths: type: string format: date-time nullable: true - text_matches: *762 + text_matches: *763 pull_request: type: object properties: @@ -105137,10 +105222,10 @@ paths: type: string score: type: number - author_association: *178 + author_association: *179 draft: type: boolean - repository: *67 + repository: *69 body_html: type: string body_text: @@ -105148,7 +105233,7 @@ paths: timeline_url: type: string format: uri - type: *330 + type: *331 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -105158,9 +105243,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 - reactions: *179 + properties: *177 + required: *178 + reactions: *180 required: - assignee - closed_at @@ -105276,7 +105361,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *166 + '503': *167 '422': *15 '304': *37 '403': *29 @@ -105332,7 +105417,7 @@ paths: enum: - created - updated - - *763 + - *764 - *17 - *19 responses: @@ -105376,7 +105461,7 @@ paths: nullable: true score: type: number - text_matches: *762 + text_matches: *763 required: - id - node_id @@ -105462,7 +105547,7 @@ paths: - forks - help-wanted-issues - updated - - *763 + - *764 - *17 - *19 responses: @@ -105681,8 +105766,8 @@ paths: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true permissions: type: object @@ -105701,7 +105786,7 @@ paths: - admin - pull - push - text_matches: *762 + text_matches: *763 temp_clone_token: type: string allow_merge_commit: @@ -105903,7 +105988,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *166 + '503': *167 '422': *15 '304': *37 x-github: @@ -106002,7 +106087,7 @@ paths: type: string format: uri nullable: true - text_matches: *762 + text_matches: *763 related: type: array nullable: true @@ -106195,7 +106280,7 @@ paths: - followers - repositories - joined - - *763 + - *764 - *17 - *19 responses: @@ -106299,7 +106384,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *762 + text_matches: *763 blog: type: string nullable: true @@ -106358,7 +106443,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *166 + '503': *167 '422': *15 x-github: githubCloudOnly: false @@ -106378,7 +106463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &767 + - &768 name: team_id description: The unique identifier of the team. in: path @@ -106390,9 +106475,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -106419,7 +106504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *767 + - *768 requestBody: required: true content: @@ -106482,16 +106567,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '201': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 '422': *15 '403': *29 @@ -106519,7 +106604,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *767 + - *768 responses: '204': description: Response @@ -106550,8 +106635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *767 - - *100 + - *768 + - *101 - *17 - *19 responses: @@ -106561,11 +106646,11 @@ paths: application/json: schema: type: array - items: *418 + items: *419 examples: - default: *768 + default: *769 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106592,7 +106677,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *767 + - *768 requestBody: required: true content: @@ -106626,9 +106711,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: triggersNotification: true githubCloudOnly: false @@ -106655,16 +106740,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 responses: '200': description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106689,8 +106774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: false content: @@ -106713,9 +106798,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *769 + default: *770 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106740,8 +106825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 responses: '204': description: Response @@ -106770,9 +106855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *767 - - *420 - - *100 + - *768 + - *421 + - *101 - *17 - *19 responses: @@ -106782,11 +106867,11 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *770 + default: *771 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106813,8 +106898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: true content: @@ -106836,9 +106921,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: triggersNotification: true githubCloudOnly: false @@ -106865,17 +106950,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106900,9 +106985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 requestBody: required: true content: @@ -106924,9 +107009,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *771 + default: *772 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106951,9 +107036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 responses: '204': description: Response @@ -106982,9 +107067,9 @@ 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: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -107010,11 +107095,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107041,9 +107126,9 @@ 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: - - *767 - - *420 - - *423 + - *768 + - *421 + - *424 requestBody: required: true content: @@ -107075,9 +107160,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107103,8 +107188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -107130,11 +107215,11 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: - default: *426 + default: *427 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107161,8 +107246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *767 - - *420 + - *768 + - *421 requestBody: required: true content: @@ -107194,9 +107279,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107220,7 +107305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107230,11 +107315,11 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *328 + default: *329 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107258,7 +107343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *767 + - *768 - name: role description: Filters members returned by their role in the team. in: query @@ -107281,9 +107366,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107309,8 +107394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: if user is a member @@ -107346,8 +107431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107386,8 +107471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107423,16 +107508,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '200': description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-user-is-a-team-maintainer: *772 + response-if-user-is-a-team-maintainer: *773 '404': *6 x-github: githubCloudOnly: false @@ -107465,8 +107550,8 @@ 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: - - *767 - - *263 + - *768 + - *264 requestBody: required: false content: @@ -107491,9 +107576,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - response-if-users-membership-with-team-is-now-pending: *773 + response-if-users-membership-with-team-is-now-pending: *774 '403': description: Forbidden if team synchronization is set up '422': @@ -107527,8 +107612,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *767 - - *263 + - *768 + - *264 responses: '204': description: Response @@ -107556,7 +107641,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107566,11 +107651,11 @@ paths: application/json: schema: type: array - items: *433 + items: *434 examples: - default: *774 + default: *775 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107594,16 +107679,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *767 - - *434 + - *768 + - *435 responses: '200': description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: *775 + default: *776 '404': description: Not Found if project is not managed by this team x-github: @@ -107627,8 +107712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *767 - - *434 + - *768 + - *435 requestBody: required: false content: @@ -107695,8 +107780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *767 - - *434 + - *768 + - *435 responses: '204': description: Response @@ -107723,7 +107808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -107733,11 +107818,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -107765,15 +107850,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *776 + schema: *777 examples: alternative-response-with-extra-repository-information: value: @@ -107924,9 +108009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 requestBody: required: false content: @@ -107976,9 +108061,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *767 - - *435 + - *768 - *436 + - *437 responses: '204': description: Response @@ -108007,15 +108092,15 @@ 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: - - *767 + - *768 responses: '200': description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 '403': *29 '404': *6 x-github: @@ -108042,7 +108127,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: - - *767 + - *768 requestBody: required: true content: @@ -108099,7 +108184,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -108130,7 +108215,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *767 + - *768 - *17 - *19 responses: @@ -108140,11 +108225,11 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: - response-if-child-teams-exist: *777 + response-if-child-teams-exist: *778 headers: - Link: *40 + Link: *43 '404': *6 '403': *29 '422': *15 @@ -108175,7 +108260,7 @@ paths: application/json: schema: oneOf: - - &779 + - &780 title: Private User description: Private User type: object @@ -108378,7 +108463,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *778 + - *779 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -108531,7 +108616,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -108610,7 +108695,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 '304': *37 '404': *6 '403': *29 @@ -108633,7 +108718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *263 + - *264 responses: '204': description: If the user is blocked @@ -108661,7 +108746,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -108685,7 +108770,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -108734,11 +108819,11 @@ paths: type: integer codespaces: type: array - items: *336 + items: *337 examples: - default: *337 + default: *338 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -108875,21 +108960,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 - '503': *166 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108929,7 +109014,7 @@ paths: type: integer secrets: type: array - items: &780 + items: &781 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108969,9 +109054,9 @@ paths: - visibility - selected_repositories_url examples: - default: *546 + default: *547 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109039,13 +109124,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 responses: '200': description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -109075,7 +109160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 requestBody: required: true content: @@ -109120,7 +109205,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -109148,7 +109233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *251 + - *252 responses: '204': description: Response @@ -109173,7 +109258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *251 + - *252 responses: '200': description: Response @@ -109189,13 +109274,13 @@ paths: type: integer repositories: type: array - items: *241 + items: *242 examples: - default: *781 + default: *782 '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109216,7 +109301,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *251 + - *252 requestBody: required: true content: @@ -109248,7 +109333,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109270,7 +109355,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *251 + - *252 - name: repository_id in: path required: true @@ -109282,7 +109367,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109303,7 +109388,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *251 + - *252 - name: repository_id in: path required: true @@ -109315,7 +109400,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *91 + '500': *40 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109335,17 +109420,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109369,7 +109454,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 requestBody: required: false content: @@ -109399,9 +109484,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '401': *25 '403': *29 '404': *6 @@ -109423,11 +109508,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '202': *39 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109452,13 +109537,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '202': description: Response content: application/json: - schema: &782 + schema: &783 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -109499,7 +109584,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &783 + default: &784 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -109507,7 +109592,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109531,7 +109616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *338 + - *339 - name: export_id in: path required: true @@ -109544,9 +109629,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *783 + default: *784 '404': *6 x-github: githubCloudOnly: false @@ -109567,7 +109652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *338 + - *339 responses: '200': description: Response @@ -109583,11 +109668,11 @@ paths: type: integer machines: type: array - items: *784 + items: *785 examples: - default: *785 + default: *786 '304': *37 - '500': *91 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -109614,7 +109699,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *338 + - *339 requestBody: required: true content: @@ -109664,13 +109749,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *448 + repository: *449 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *544 - required: *545 + properties: *545 + required: *546 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -110444,17 +110529,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 + default: *544 '304': *37 - '500': *91 + '500': *40 '400': *14 '401': *25 '402': @@ -110464,7 +110549,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *108 + '409': *109 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110484,16 +110569,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *543 - '500': *91 + default: *544 + '500': *40 '401': *25 '403': *29 '404': *6 @@ -110522,9 +110607,9 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: &797 + default: &798 value: - id: 197 name: hello_docker @@ -110625,7 +110710,7 @@ paths: application/json: schema: type: array - items: &786 + items: &787 title: Email description: Email type: object @@ -110690,16 +110775,16 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: &799 + default: &800 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -110767,7 +110852,7 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: default: value: @@ -110877,9 +110962,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -110910,9 +110995,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -110932,7 +111017,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *263 + - *264 responses: '204': description: if the person is followed by the authenticated user @@ -110962,7 +111047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -110987,7 +111072,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *263 + - *264 responses: '204': description: Response @@ -111023,7 +111108,7 @@ paths: application/json: schema: type: array - items: &787 + items: &788 title: GPG Key description: A unique encryption key type: object @@ -111154,7 +111239,7 @@ paths: - subkeys - revoked examples: - default: &817 + default: &818 value: - id: 3 name: Octocat's GPG Key @@ -111186,7 +111271,7 @@ paths: revoked: false raw_key: string headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -111239,9 +111324,9 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: &788 + default: &789 value: id: 3 name: Octocat's GPG Key @@ -111298,7 +111383,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: - - &789 + - &790 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -111310,9 +111395,9 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: *788 + default: *789 '404': *6 '304': *37 '403': *29 @@ -111335,7 +111420,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: - - *789 + - *790 responses: '204': description: Response @@ -111478,7 +111563,7 @@ paths: suspended_at: suspended_by: headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -111524,11 +111609,11 @@ paths: type: string repositories: type: array - items: *67 + items: *69 examples: - default: *236 + default: *237 headers: - Link: *40 + Link: *43 '404': *6 '403': *29 '304': *37 @@ -111551,7 +111636,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *235 + - *236 responses: '204': description: Response @@ -111577,7 +111662,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *235 + - *236 responses: '204': description: Response @@ -111611,12 +111696,12 @@ paths: application/json: schema: anyOf: - - *325 + - *326 - type: object properties: {} additionalProperties: false examples: - default: *326 + default: *327 '204': description: Response when there are no restrictions x-github: @@ -111640,7 +111725,7 @@ paths: required: true content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -111651,7 +111736,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: default: value: @@ -111732,7 +111817,7 @@ paths: - closed - all default: open - - *333 + - *334 - name: sort description: What to sort results by. in: query @@ -111744,8 +111829,8 @@ paths: - updated - comments default: created - - *100 - - *181 + - *101 + - *182 - *17 - *19 responses: @@ -111755,11 +111840,11 @@ paths: application/json: schema: type: array - items: *191 + items: *192 examples: - default: *334 + default: *335 headers: - Link: *40 + Link: *43 '404': *6 '304': *37 x-github: @@ -111790,7 +111875,7 @@ paths: application/json: schema: type: array - items: &790 + items: &791 title: Key description: Key type: object @@ -111841,7 +111926,7 @@ paths: verified: false read_only: false headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -111891,9 +111976,9 @@ paths: description: Response content: application/json: - schema: *790 + schema: *791 examples: - default: &791 + default: &792 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111926,15 +112011,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '200': description: Response content: application/json: - schema: *790 + schema: *791 examples: - default: *791 + default: *792 '404': *6 '304': *37 '403': *29 @@ -111957,7 +112042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *653 + - *654 responses: '204': description: Response @@ -111990,7 +112075,7 @@ paths: application/json: schema: type: array - items: &792 + items: &793 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112047,7 +112132,7 @@ paths: - id - type - login - plan: *195 + plan: *196 required: - billing_cycle - next_billing_date @@ -112058,7 +112143,7 @@ paths: - account - plan examples: - default: &793 + default: &794 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112091,7 +112176,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *40 + Link: *43 '304': *37 '401': *25 '404': *6 @@ -112120,11 +112205,11 @@ paths: application/json: schema: type: array - items: *792 + items: *793 examples: - default: *793 + default: *794 headers: - Link: *40 + Link: *43 '304': *37 '401': *25 x-github: @@ -112162,7 +112247,7 @@ paths: application/json: schema: type: array - items: *339 + items: *340 examples: default: value: @@ -112239,7 +112324,7 @@ paths: type: User site_admin: false headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -112264,13 +112349,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -112328,7 +112413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *76 + - *78 requestBody: required: true content: @@ -112353,7 +112438,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -112421,7 +112506,7 @@ paths: application/json: schema: type: array - items: *341 + items: *342 examples: default: value: @@ -112574,7 +112659,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -112674,7 +112759,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -112854,7 +112939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *342 + - *343 - name: exclude in: query required: false @@ -112867,7 +112952,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: default: value: @@ -113061,7 +113146,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *342 + - *343 responses: '302': description: Response @@ -113087,7 +113172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *342 + - *343 responses: '204': description: Response @@ -113116,8 +113201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *342 - - *794 + - *343 + - *795 responses: '204': description: Response @@ -113141,7 +113226,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *342 + - *343 - *17 - *19 responses: @@ -113151,11 +113236,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '404': *6 x-github: githubCloudOnly: false @@ -113188,11 +113273,11 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: *795 + default: *796 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -113232,7 +113317,7 @@ paths: - docker - nuget - container - - *796 + - *797 - *19 - *17 responses: @@ -113242,10 +113327,10 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 - '400': *798 + default: *798 + '400': *799 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113265,16 +113350,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: - default: &818 + default: &819 value: id: 40201 name: octo-name @@ -113387,8 +113472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 responses: '204': description: Response @@ -113418,8 +113503,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *350 - *351 + - *352 - name: token description: package token schema: @@ -113451,8 +113536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *350 - *351 + - *352 - *19 - *17 - name: state @@ -113472,7 +113557,7 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: default: value: @@ -113521,15 +113606,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -113565,9 +113650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '204': description: Response @@ -113597,9 +113682,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *350 - *351 - - *353 + - *352 + - *354 responses: '204': description: Response @@ -113655,7 +113740,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -113727,11 +113812,11 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: *799 + default: *800 headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -113840,9 +113925,9 @@ paths: application/json: schema: type: array - items: *67 + items: *69 examples: - default: &806 + default: &807 summary: Default response value: - id: 1296269 @@ -113963,7 +114048,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '422': *15 '304': *37 '403': *29 @@ -114146,9 +114231,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: - default: *450 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -114186,11 +114271,11 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *800 + default: *801 headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114211,12 +114296,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *329 + - *330 responses: '204': description: Response '403': *29 - '409': *108 + '409': *109 '404': *6 '304': *37 x-github: @@ -114234,11 +114319,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *329 + - *330 responses: '204': description: Response - '409': *108 + '409': *109 '304': *37 '404': *6 '403': *29 @@ -114267,7 +114352,7 @@ paths: application/json: schema: type: array - items: &801 + items: &802 title: Social account description: Social media account type: object @@ -114282,12 +114367,12 @@ paths: - provider - url examples: - default: &802 + default: &803 value: - provider: twitter url: https://twitter.com/github headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114344,9 +114429,9 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *802 + default: *803 '422': *15 '304': *37 '404': *6 @@ -114433,7 +114518,7 @@ paths: application/json: schema: type: array - items: &803 + items: &804 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -114453,7 +114538,7 @@ paths: - title - created_at examples: - default: &819 + default: &820 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114466,7 +114551,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -114519,9 +114604,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: &804 + default: &805 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114552,7 +114637,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: - - &805 + - &806 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -114564,9 +114649,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: *804 + default: *805 '404': *6 '304': *37 '403': *29 @@ -114589,7 +114674,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: - - *805 + - *806 responses: '204': description: Response @@ -114618,7 +114703,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: - - &820 + - &821 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 @@ -114631,7 +114716,7 @@ paths: - created - updated default: created - - *100 + - *101 - *17 - *19 responses: @@ -114641,13 +114726,13 @@ paths: application/json: schema: type: array - items: *67 + items: *69 examples: - default-response: *806 + default-response: *807 application/vnd.github.v3.star+json: schema: type: array - items: &821 + items: &822 title: Starred Repository description: Starred Repository type: object @@ -114655,7 +114740,7 @@ paths: starred_at: type: string format: date-time - repo: *67 + repo: *69 required: - starred_at - repo @@ -114783,7 +114868,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -114803,8 +114888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response if this repository is starred by you @@ -114832,8 +114917,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -114857,8 +114942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *435 - *436 + - *437 responses: '204': description: Response @@ -114891,11 +114976,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -114930,7 +115015,7 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: default: value: @@ -114981,7 +115066,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *40 + Link: *43 '304': *37 '404': *6 '403': *29 @@ -115008,7 +115093,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *197 + - *198 responses: '200': description: Response @@ -115016,10 +115101,10 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: &812 + default-response: &813 summary: Default response value: login: octocat @@ -115054,7 +115139,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &813 + response-with-git-hub-plan-information: &814 summary: Response with GitHub plan information value: login: octocat @@ -115114,7 +115199,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *807 + - *808 - *17 responses: '200': @@ -115125,7 +115210,7 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: Link: example: ; rel="next" @@ -115148,8 +115233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *367 - - &808 + - *368 + - &809 name: user_id description: The unique identifier of the user. in: path @@ -115161,11 +115246,11 @@ paths: description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115185,11 +115270,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *367 - - *808 + - *368 + - *809 - *17 - - *98 - *99 + - *100 responses: '200': description: Response @@ -115197,11 +115282,11 @@ paths: application/json: schema: type: array - items: *368 + items: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115221,19 +115306,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *367 + - *368 + - *810 - *809 - - *808 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: - default: *369 + default: *370 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115254,10 +115339,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *367 - - *808 - - *98 + - *368 + - *809 - *99 + - *100 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -115284,11 +115369,11 @@ paths: application/json: schema: type: array - items: *374 + items: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115307,8 +115392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *808 - - *367 + - *809 + - *368 requestBody: required: true description: Details of the item to add to the project. @@ -115345,9 +115430,9 @@ paths: description: Response content: application/json: - schema: *810 + schema: *811 examples: - default: *811 + default: *812 '304': *37 '403': *29 '401': *25 @@ -115367,9 +115452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -115386,11 +115471,11 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -115409,9 +115494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -115481,9 +115566,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '401': *25 '403': *29 '404': *6 @@ -115503,9 +115588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *367 - - *808 - - *376 + - *368 + - *809 + - *377 responses: '204': description: Response @@ -115534,7 +115619,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *263 + - *264 responses: '200': description: Response @@ -115542,11 +115627,11 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: *812 - response-with-git-hub-plan-information: *813 + default-response: *813 + response-with-git-hub-plan-information: *814 '404': *6 x-github: githubCloudOnly: false @@ -115570,9 +115655,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *98 - *99 - - *263 + - *100 + - *264 requestBody: required: true content: @@ -115595,8 +115680,8 @@ paths: required: - subject_digests examples: - default: *814 - withPredicateType: *815 + default: *815 + withPredicateType: *816 responses: '200': description: Response @@ -115649,7 +115734,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *816 + default: *817 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115667,7 +115752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *263 + - *264 requestBody: required: true content: @@ -115732,7 +115817,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *263 + - *264 - name: subject_digest description: Subject Digest in: path @@ -115763,7 +115848,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *263 + - *264 - name: attestation_id description: Attestation ID in: path @@ -115799,9 +115884,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *98 - *99 - - *263 + - *100 + - *264 - name: subject_digest description: Subject Digest in: path @@ -115851,12 +115936,12 @@ paths: bundle_url: type: string examples: - default: *488 + default: *489 '201': description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -115882,7 +115967,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *263 + - *264 responses: '200': description: Response @@ -115890,9 +115975,9 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 + default: *798 '403': *29 '401': *25 x-github: @@ -115915,7 +116000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -115925,7 +116010,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -115996,8 +116081,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *263 - - *76 + - *264 + - *78 - *17 - *19 responses: @@ -116007,7 +116092,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -116086,7 +116171,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116096,7 +116181,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -116163,7 +116248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116175,9 +116260,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116194,7 +116279,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116206,9 +116291,9 @@ paths: type: array items: *4 examples: - default: *335 + default: *336 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116225,7 +116310,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *263 + - *264 - name: target_user in: path required: true @@ -116252,8 +116337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *263 - - *181 + - *264 + - *182 - *17 - *19 responses: @@ -116263,11 +116348,11 @@ paths: application/json: schema: type: array - items: *182 + items: *183 examples: - default: *183 + default: *184 headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -116286,7 +116371,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116296,11 +116381,11 @@ paths: application/json: schema: type: array - items: *787 + items: *788 examples: - default: *817 + default: *818 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116322,7 +116407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *263 + - *264 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -116394,7 +116479,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *263 + - *264 responses: '200': description: Response @@ -116402,7 +116487,7 @@ paths: application/json: schema: *22 examples: - default: *623 + default: *624 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116420,7 +116505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116455,7 +116540,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116475,7 +116560,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116485,11 +116570,11 @@ paths: application/json: schema: type: array - items: *62 + items: *64 examples: - default: *795 + default: *796 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116526,8 +116611,8 @@ paths: - docker - nuget - container - - *796 - - *263 + - *797 + - *264 - *19 - *17 responses: @@ -116537,12 +116622,12 @@ paths: application/json: schema: type: array - items: *348 + items: *349 examples: - default: *797 + default: *798 '403': *29 '401': *25 - '400': *798 + '400': *799 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116562,17 +116647,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: - default: *818 + default: *819 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116593,9 +116678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '204': description: Response @@ -116627,9 +116712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 - name: token description: package token schema: @@ -116661,9 +116746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *350 - *351 - - *263 + - *352 + - *264 responses: '200': description: Response @@ -116671,7 +116756,7 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: default: value: @@ -116729,16 +116814,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *350 - *351 - - *353 - - *263 + - *352 + - *354 + - *264 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -116773,10 +116858,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *350 - *351 - - *263 - - *353 + - *352 + - *264 + - *354 responses: '204': description: Response @@ -116808,10 +116893,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *350 - *351 - - *263 - - *353 + - *352 + - *264 + - *354 responses: '204': description: Response @@ -116837,7 +116922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-user-projects parameters: - - *263 + - *264 - name: state description: Indicates the state of the projects to return. in: query @@ -116858,7 +116943,7 @@ paths: application/json: schema: type: array - items: *364 + items: *365 examples: default: value: @@ -116894,7 +116979,7 @@ paths: created_at: '2011-04-10T20:09:31Z' updated_at: '2014-03-03T18:58:10Z' headers: - Link: *40 + Link: *43 '422': *15 x-github: githubCloudOnly: false @@ -116916,15 +117001,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *263 + - *264 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *98 - *99 + - *100 - *17 responses: '200': @@ -116933,11 +117018,11 @@ paths: application/json: schema: type: array - items: *365 + items: *366 examples: - default: *366 + default: *367 headers: - Link: *40 + Link: *43 '304': *37 '403': *29 '401': *25 @@ -116962,7 +117047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -116972,7 +117057,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -117051,7 +117136,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117061,7 +117146,7 @@ paths: application/json: schema: type: array - items: *203 + items: *204 examples: default: value: @@ -117138,7 +117223,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *263 + - *264 - name: type description: Limit results to repositories of the specified type. in: query @@ -117181,11 +117266,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117207,15 +117292,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117237,15 +117322,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117267,15 +117352,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117295,11 +117380,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - - *263 - - *210 + - *264 - *211 - *212 - *213 + - *214 responses: '200': description: Response when getting a billing usage report @@ -117369,8 +117454,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *91 - '503': *166 + '500': *40 + '503': *167 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117388,7 +117473,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117398,11 +117483,11 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *802 + default: *803 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117420,7 +117505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117430,11 +117515,11 @@ paths: application/json: schema: type: array - items: *803 + items: *804 examples: - default: *819 + default: *820 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117456,9 +117541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *263 - - *820 - - *100 + - *264 + - *821 + - *101 - *17 - *19 responses: @@ -117469,13 +117554,13 @@ paths: schema: anyOf: - type: array - items: *821 + items: *822 - type: array - items: *67 + items: *69 examples: - default-response: *806 + default-response: *807 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117492,7 +117577,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *263 + - *264 - *17 - *19 responses: @@ -117502,11 +117587,11 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *354 + default: *355 headers: - Link: *40 + Link: *43 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117632,7 +117717,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &822 + enterprise: &823 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117690,7 +117775,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &823 + installation: &824 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117709,7 +117794,7 @@ x-webhooks: required: - id - node_id - organization: &824 + organization: &825 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117769,13 +117854,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &825 + repository: &826 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &862 + properties: &863 id: description: Unique identifier of the repository example: 42 @@ -117795,8 +117880,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *192 - required: *193 + properties: *193 + required: *194 nullable: true organization: title: Simple User @@ -118458,7 +118543,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &863 + required: &864 - archive_url - assignees_url - blobs_url @@ -118609,10 +118694,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -118688,11 +118773,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: &826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: &827 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) @@ -118915,11 +119000,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: *826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: *827 sender: *4 required: - action @@ -119102,11 +119187,11 @@ x-webhooks: - everyone required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - rule: *826 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + rule: *827 sender: *4 required: - action @@ -119177,7 +119262,7 @@ x-webhooks: required: true content: application/json: - schema: &829 + schema: &830 title: Exemption request cancellation event type: object properties: @@ -119185,11 +119270,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: &827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: &828 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -119422,7 +119507,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &828 + items: &829 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -119530,7 +119615,7 @@ x-webhooks: required: true content: application/json: - schema: &830 + schema: &831 title: Exemption request completed event type: object properties: @@ -119538,11 +119623,11 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 sender: *4 required: - action @@ -119612,7 +119697,7 @@ x-webhooks: required: true content: application/json: - schema: &831 + schema: &832 title: Exemption request created event type: object properties: @@ -119620,11 +119705,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 sender: *4 required: - action @@ -119694,7 +119779,7 @@ x-webhooks: required: true content: application/json: - schema: &832 + schema: &833 title: Exemption response dismissed event type: object properties: @@ -119702,12 +119787,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 - exemption_response: *828 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 + exemption_response: *829 sender: *4 required: - action @@ -119779,7 +119864,7 @@ x-webhooks: required: true content: application/json: - schema: &833 + schema: &834 title: Exemption response submitted event type: object properties: @@ -119787,12 +119872,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - exemption_request: *827 - exemption_response: *828 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + exemption_request: *828 + exemption_response: *829 sender: *4 required: - action @@ -119865,7 +119950,7 @@ x-webhooks: required: true content: application/json: - schema: *829 + schema: *830 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119932,7 +120017,7 @@ x-webhooks: required: true content: application/json: - schema: *830 + schema: *831 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119999,7 +120084,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120066,7 +120151,7 @@ x-webhooks: required: true content: application/json: - schema: *832 + schema: *833 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120134,7 +120219,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120212,7 +120297,7 @@ x-webhooks: type: string enum: - completed - check_run: &835 + check_run: &836 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120265,8 +120350,8 @@ x-webhooks: type: string pull_requests: type: array - items: *505 - repository: *241 + items: *506 + repository: *242 status: example: completed type: string @@ -120303,7 +120388,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *834 + deployment: *835 details_url: example: https://example.com type: string @@ -120353,7 +120438,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *505 + items: *506 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -120388,10 +120473,10 @@ x-webhooks: - output - app - pull_requests - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -120784,11 +120869,11 @@ x-webhooks: type: string enum: - created - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -121184,11 +121269,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 requested_action: description: The action requested by the user. type: object @@ -121593,11 +121678,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *835 - installation: *823 - enterprise: *822 - organization: *824 - repository: *825 + check_run: *836 + installation: *824 + enterprise: *823 + organization: *825 + repository: *826 sender: *4 required: - check_run @@ -122574,10 +122659,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -123247,10 +123332,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -123914,10 +123999,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -124080,7 +124165,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124225,20 +124310,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &836 + commit_oid: &837 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: *822 - installation: *823 - organization: *824 - ref: &837 + enterprise: *823 + installation: *824 + organization: *825 + ref: &838 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: *825 + repository: *826 sender: *4 required: - action @@ -124400,7 +124485,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -124630,12 +124715,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -124730,7 +124815,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -124898,12 +124983,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -125066,7 +125151,7 @@ x-webhooks: required: - login - id - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -125232,12 +125317,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -125334,7 +125419,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125502,16 +125587,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 ref: 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 nullable: true - repository: *825 + repository: *826 sender: *4 required: - action @@ -125605,7 +125690,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *518 + dismissed_comment: *519 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -125745,12 +125830,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *836 - enterprise: *822 - installation: *823 - organization: *824 - ref: *837 - repository: *825 + commit_oid: *837 + enterprise: *823 + installation: *824 + organization: *825 + ref: *838 + repository: *826 sender: *4 required: - action @@ -126007,10 +126092,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -126090,18 +126175,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *824 - pusher_type: &838 + organization: *825 + pusher_type: &839 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &839 + ref: &840 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -126111,7 +126196,7 @@ x-webhooks: enum: - tag - branch - repository: *825 + repository: *826 sender: *4 required: - ref @@ -126193,10 +126278,10 @@ x-webhooks: type: string enum: - created - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126281,9 +126366,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126360,10 +126445,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126440,10 +126525,10 @@ x-webhooks: type: string enum: - updated - definition: *128 - enterprise: *822 - installation: *823 - organization: *824 + definition: *129 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -126520,19 +126605,19 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - repository: *825 - organization: *824 + enterprise: *823 + installation: *824 + repository: *826 + organization: *825 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *378 + items: *379 old_property_values: type: array description: The old custom property values for the repository. - items: *378 + items: *379 required: - action - repository @@ -126608,18 +126693,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - pusher_type: *838 - ref: *839 + enterprise: *823 + installation: *824 + organization: *825 + pusher_type: *839 + ref: *840 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *825 + repository: *826 sender: *4 required: - ref @@ -126703,11 +126788,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126791,11 +126876,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126879,11 +126964,11 @@ x-webhooks: type: string enum: - created - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -126965,11 +127050,11 @@ x-webhooks: type: string enum: - dismissed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127051,11 +127136,11 @@ x-webhooks: type: string enum: - fixed - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127138,11 +127223,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127224,11 +127309,11 @@ x-webhooks: type: string enum: - reopened - alert: *573 - installation: *823 - organization: *824 - enterprise: *822 - repository: *825 + alert: *574 + installation: *824 + organization: *825 + enterprise: *823 + repository: *826 sender: *4 required: - action @@ -127305,9 +127390,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - key: &840 + enterprise: *823 + installation: *824 + key: &841 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127343,8 +127428,8 @@ x-webhooks: - verified - created_at - read_only - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -127421,11 +127506,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - key: *840 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + key: *841 + organization: *825 + repository: *826 sender: *4 required: - action @@ -127986,12 +128071,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: &844 + workflow: &845 title: Workflow type: object nullable: true @@ -128717,13 +128802,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *579 + deployment: *580 pull_requests: type: array - items: *672 - repository: *825 - organization: *824 - installation: *823 + items: *673 + repository: *826 + organization: *825 + installation: *824 sender: *4 responses: '200': @@ -128794,7 +128879,7 @@ x-webhooks: type: string enum: - approved - approver: &841 + approver: &842 type: object properties: avatar_url: @@ -128837,11 +128922,11 @@ x-webhooks: type: string comment: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - reviewers: &842 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + reviewers: &843 type: array items: type: object @@ -128920,7 +129005,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &843 + workflow_job_run: &844 type: object properties: conclusion: @@ -129651,18 +129736,18 @@ x-webhooks: type: string enum: - rejected - approver: *841 + approver: *842 comment: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - reviewers: *842 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + reviewers: *843 sender: *4 since: type: string - workflow_job_run: *843 + workflow_job_run: *844 workflow_job_runs: type: array items: @@ -130366,13 +130451,13 @@ x-webhooks: type: string enum: - requested - enterprise: *822 + enterprise: *823 environment: type: string - installation: *823 - organization: *824 - repository: *825 - requestor: &849 + installation: *824 + organization: *825 + repository: *826 + requestor: &850 title: User type: object nullable: true @@ -132271,12 +132356,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Deployment Workflow Run type: object @@ -132956,7 +133041,7 @@ x-webhooks: type: string enum: - answered - answer: &847 + answer: &848 type: object properties: author_association: @@ -133113,7 +133198,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &845 + discussion: &846 title: Discussion description: A Discussion in a repository. type: object @@ -133399,7 +133484,7 @@ x-webhooks: - id labels: type: array - items: *636 + items: *637 required: - repository_url - category @@ -133421,10 +133506,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133551,11 +133636,11 @@ x-webhooks: - from required: - category - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133638,11 +133723,11 @@ x-webhooks: type: string enum: - closed - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133724,7 +133809,7 @@ x-webhooks: type: string enum: - created - comment: &846 + comment: &847 type: object properties: author_association: @@ -133881,11 +133966,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -133968,12 +134053,12 @@ x-webhooks: type: string enum: - deleted - comment: *846 - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + comment: *847 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134068,12 +134153,12 @@ x-webhooks: - from required: - body - comment: *846 - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + comment: *847 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134157,11 +134242,11 @@ x-webhooks: type: string enum: - created - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134243,11 +134328,11 @@ x-webhooks: type: string enum: - deleted - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134347,11 +134432,11 @@ x-webhooks: type: string required: - from - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134433,10 +134518,10 @@ x-webhooks: type: string enum: - labeled - discussion: *845 - enterprise: *822 - installation: *823 - label: &848 + discussion: *846 + enterprise: *823 + installation: *824 + label: &849 title: Label type: object properties: @@ -134468,8 +134553,8 @@ x-webhooks: - color - default - description - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134552,11 +134637,11 @@ x-webhooks: type: string enum: - locked - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134638,11 +134723,11 @@ x-webhooks: type: string enum: - pinned - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134724,11 +134809,11 @@ x-webhooks: type: string enum: - reopened - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134813,16 +134898,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *845 - new_repository: *825 + new_discussion: *846 + new_repository: *826 required: - new_discussion - new_repository - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134905,10 +134990,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *845 - old_answer: *847 - organization: *824 - repository: *825 + discussion: *846 + old_answer: *848 + organization: *825 + repository: *826 sender: *4 required: - action @@ -134990,12 +135075,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *845 - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135078,11 +135163,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135164,11 +135249,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *845 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + discussion: *846 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -135237,7 +135322,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135300,7 +135385,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135366,7 +135451,7 @@ x-webhooks: required: true content: application/json: - schema: *829 + schema: *830 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135432,7 +135517,7 @@ x-webhooks: required: true content: application/json: - schema: *830 + schema: *831 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135498,7 +135583,7 @@ x-webhooks: required: true content: application/json: - schema: *831 + schema: *832 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135564,7 +135649,7 @@ x-webhooks: required: true content: application/json: - schema: *832 + schema: *833 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135630,7 +135715,7 @@ x-webhooks: required: true content: application/json: - schema: *833 + schema: *834 responses: '200': description: Return a 200 status to indicate that the data was received @@ -135697,7 +135782,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *822 + enterprise: *823 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -136357,9 +136442,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *823 - organization: *824 - repository: *825 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - forkee @@ -136505,9 +136590,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pages: description: The pages that were updated. type: array @@ -136544,7 +136629,7 @@ x-webhooks: - action - sha - html_url - repository: *825 + repository: *826 sender: *4 required: - pages @@ -136620,10 +136705,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: &850 + organization: *825 + repositories: &851 description: An array of repository objects that the installation can access. type: array @@ -136649,8 +136734,8 @@ x-webhooks: - name - full_name - private - repository: *825 - requester: *849 + repository: *826 + requester: *850 sender: *4 required: - action @@ -136725,11 +136810,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -136805,11 +136890,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -136885,10 +136970,10 @@ x-webhooks: type: string enum: - added - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories_added: &851 + organization: *825 + repositories_added: &852 description: An array of repository objects, which were added to the installation. type: array @@ -136934,15 +137019,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *825 - repository_selection: &852 + repository: *826 + repository_selection: &853 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *849 + requester: *850 sender: *4 required: - action @@ -137021,10 +137106,10 @@ x-webhooks: type: string enum: - removed - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories_added: *851 + organization: *825 + repositories_added: *852 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -137051,9 +137136,9 @@ x-webhooks: - name - full_name - private - repository: *825 - repository_selection: *852 - requester: *849 + repository: *826 + repository_selection: *853 + requester: *850 sender: *4 required: - action @@ -137132,11 +137217,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -137315,10 +137400,10 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 target_type: type: string @@ -137397,11 +137482,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *822 + enterprise: *823 installation: *22 - organization: *824 - repositories: *850 - repository: *825 + organization: *825 + repositories: *851 + repository: *826 requester: nullable: true sender: *4 @@ -137525,8 +137610,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *176 - required: *177 + properties: *177 + required: *178 reactions: title: Reactions type: object @@ -137653,8 +137738,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -138448,8 +138533,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138465,7 +138550,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -138798,8 +138883,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -138879,7 +138964,7 @@ x-webhooks: type: string enum: - deleted - comment: &853 + comment: &854 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -139044,8 +139129,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -139835,8 +139920,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139852,7 +139937,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -140187,8 +140272,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -140268,7 +140353,7 @@ x-webhooks: type: string enum: - edited - changes: &882 + changes: &883 description: The changes to the comment. type: object properties: @@ -140280,9 +140365,9 @@ x-webhooks: type: string required: - from - comment: *853 - enterprise: *822 - installation: *823 + comment: *854 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -141075,8 +141160,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141092,7 +141177,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -141425,8 +141510,8 @@ x-webhooks: - state - locked - assignee - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141510,15 +141595,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 + blocked_issue: *192 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - blocking_issue_repo: *67 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + blocking_issue_repo: *69 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141606,15 +141691,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 + blocked_issue: *192 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - blocking_issue_repo: *67 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + blocking_issue_repo: *69 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141701,15 +141786,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 - blocked_issue_repo: *67 + blocked_issue: *192 + blocked_issue_repo: *69 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141797,15 +141882,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *191 - blocked_issue_repo: *67 + blocked_issue: *192 + blocked_issue_repo: *69 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *191 - installation: *823 - organization: *824 - repository: *825 + blocking_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -141890,10 +141975,10 @@ x-webhooks: type: string enum: - assigned - assignee: *849 - enterprise: *822 - installation: *823 - issue: &856 + assignee: *850 + enterprise: *823 + installation: *824 + issue: &857 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -142682,11 +142767,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142702,7 +142787,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -142803,8 +142888,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -142884,8 +142969,8 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -143679,11 +143764,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143699,7 +143784,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -143935,8 +144020,8 @@ x-webhooks: required: - state - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -144015,8 +144100,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144801,11 +144886,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144821,7 +144906,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -144921,8 +145006,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -145001,8 +145086,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145809,11 +145894,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145829,7 +145914,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -145908,7 +145993,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &854 + milestone: &855 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146046,8 +146131,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -146146,8 +146231,8 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146936,11 +147021,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146953,7 +147038,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -147057,9 +147142,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *848 - organization: *824 - repository: *825 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -147139,8 +147224,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147928,11 +148013,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147945,7 +148030,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -148049,9 +148134,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *848 - organization: *824 - repository: *825 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -148131,8 +148216,8 @@ x-webhooks: type: string enum: - locked - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148944,11 +149029,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148961,7 +149046,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *330 + type: *331 title: description: Title of the issue type: string @@ -149042,8 +149127,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -149122,8 +149207,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149929,11 +150014,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149949,7 +150034,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -150027,9 +150112,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *854 - organization: *824 - repository: *825 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -150897,11 +150982,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150994,7 +151079,7 @@ x-webhooks: required: - login - id - type: *330 + type: *331 required: - id - number @@ -151463,8 +151548,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152253,11 +152338,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152273,7 +152358,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -152373,8 +152458,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -152454,9 +152539,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *822 - installation: *823 - issue: &855 + enterprise: *823 + installation: *824 + issue: &856 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153239,11 +153324,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153259,7 +153344,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -153359,8 +153444,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -153439,8 +153524,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154250,11 +154335,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154348,9 +154433,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *330 - organization: *824 - repository: *825 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155216,11 +155301,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155236,7 +155321,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -155804,11 +155889,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *822 - installation: *823 - issue: *855 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *856 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155888,12 +155973,12 @@ x-webhooks: type: string enum: - typed - enterprise: *822 - installation: *823 - issue: *856 - type: *330 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -155974,7 +156059,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &885 + assignee: &886 title: User type: object nullable: true @@ -156044,11 +156129,11 @@ x-webhooks: required: - login - id - enterprise: *822 - installation: *823 - issue: *856 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + organization: *825 + repository: *826 sender: *4 required: - action @@ -156127,12 +156212,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *822 - installation: *823 - issue: *856 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -156212,8 +156297,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157023,11 +157108,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *764 - issue_dependencies_summary: *765 + sub_issues_summary: *765 + issue_dependencies_summary: *766 issue_field_values: type: array - items: *766 + items: *767 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157043,7 +157128,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *330 + type: *331 updated_at: type: string format: date-time @@ -157121,8 +157206,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157202,11 +157287,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *822 - installation: *823 - issue: *855 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *856 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157285,12 +157370,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *822 - installation: *823 - issue: *856 - type: *330 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + issue: *857 + type: *331 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157370,11 +157455,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157452,11 +157537,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157566,11 +157651,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - label: *848 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + label: *849 + organization: *825 + repository: *826 sender: *4 required: - action @@ -157652,9 +157737,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: &857 + enterprise: *823 + installation: *824 + marketplace_purchase: &858 title: Marketplace Purchase type: object required: @@ -157737,8 +157822,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *824 - previous_marketplace_purchase: &858 + organization: *825 + previous_marketplace_purchase: &859 title: Marketplace Purchase type: object properties: @@ -157818,7 +157903,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -157898,10 +157983,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -157984,7 +158069,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -158066,10 +158151,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -158151,7 +158236,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *825 + repository: *826 sender: *4 required: - action @@ -158232,8 +158317,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 marketplace_purchase: title: Marketplace Purchase type: object @@ -158315,9 +158400,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *824 - previous_marketplace_purchase: *858 - repository: *825 + organization: *825 + previous_marketplace_purchase: *859 + repository: *826 sender: *4 required: - action @@ -158397,12 +158482,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *822 - installation: *823 - marketplace_purchase: *857 - organization: *824 - previous_marketplace_purchase: *858 - repository: *825 + enterprise: *823 + installation: *824 + marketplace_purchase: *858 + organization: *825 + previous_marketplace_purchase: *859 + repository: *826 sender: *4 required: - action @@ -158504,11 +158589,11 @@ x-webhooks: type: string required: - to - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158608,11 +158693,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158691,11 +158776,11 @@ x-webhooks: type: string enum: - removed - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 sender: *4 required: - action @@ -158773,11 +158858,11 @@ x-webhooks: type: string enum: - added - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 scope: description: The scope of the membership. Currently, can only be `team`. @@ -158853,7 +158938,7 @@ x-webhooks: required: - login - id - team: &859 + team: &860 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -159043,11 +159128,11 @@ x-webhooks: type: string enum: - removed - enterprise: *822 - installation: *823 - member: *849 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + member: *850 + organization: *825 + repository: *826 scope: description: The scope of the membership. Currently, can only be `team`. @@ -159124,7 +159209,7 @@ x-webhooks: required: - login - id - team: *859 + team: *860 required: - action - scope @@ -159206,8 +159291,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *823 - merge_group: &861 + installation: *824 + merge_group: &862 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -159226,15 +159311,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *860 + head_commit: *861 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159320,10 +159405,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *823 - merge_group: *861 - organization: *824 - repository: *825 + installation: *824 + merge_group: *862 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159396,7 +159481,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 + enterprise: *823 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -159505,16 +159590,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *823 - organization: *824 + installation: *824 + organization: *825 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -159595,11 +159680,11 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159678,9 +159763,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - milestone: &864 + enterprise: *823 + installation: *824 + milestone: &865 title: Milestone description: A collection of related issues and pull requests. type: object @@ -159817,8 +159902,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -159897,11 +159982,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160011,11 +160096,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - milestone: *854 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *855 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160095,11 +160180,11 @@ x-webhooks: type: string enum: - opened - enterprise: *822 - installation: *823 - milestone: *864 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + milestone: *865 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160178,11 +160263,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *849 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + blocked_user: *850 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160261,11 +160346,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *849 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + blocked_user: *850 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160344,9 +160429,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - membership: &865 + enterprise: *823 + installation: *824 + membership: &866 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -160453,8 +160538,8 @@ x-webhooks: - role - organization_url - user - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160532,11 +160617,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160615,8 +160700,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -160732,10 +160817,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 - user: *849 + user: *850 required: - action - invitation @@ -160813,11 +160898,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160904,11 +160989,11 @@ x-webhooks: properties: from: type: string - enterprise: *822 - installation: *823 - membership: *865 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + membership: *866 + organization: *825 + repository: *826 sender: *4 required: - action @@ -160984,9 +161069,9 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 package: description: Information about the package. type: object @@ -161485,7 +161570,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &866 + items: &867 title: Ruby Gems metadata type: object properties: @@ -161580,7 +161665,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -161656,9 +161741,9 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 package: description: Information about the package. type: object @@ -162011,7 +162096,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *866 + items: *867 source_url: type: string format: uri @@ -162081,7 +162166,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -162258,12 +162343,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *822 + enterprise: *823 id: type: integer - installation: *823 - organization: *824 - repository: *825 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - id @@ -162340,7 +162425,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &867 + personal_access_token_request: &868 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -162486,10 +162571,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *822 - organization: *824 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162566,11 +162651,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *867 - enterprise: *822 - organization: *824 + personal_access_token_request: *868 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162646,11 +162731,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *867 - enterprise: *822 - organization: *824 + personal_access_token_request: *868 + enterprise: *823 + organization: *825 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162725,11 +162810,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *867 - organization: *824 - enterprise: *822 + personal_access_token_request: *868 + organization: *825 + enterprise: *823 sender: *4 - installation: *823 + installation: *824 required: - action - personal_access_token_request @@ -162834,7 +162919,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *868 + last_response: *869 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -162866,8 +162951,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 zen: description: Random string of GitHub zen. @@ -163112,10 +163197,10 @@ x-webhooks: - from required: - note - enterprise: *822 - installation: *823 - organization: *824 - project_card: &869 + enterprise: *823 + installation: *824 + organization: *825 + project_card: &870 title: Project Card type: object properties: @@ -163234,7 +163319,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -163315,11 +163400,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project_card: *869 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_card: *870 + repository: *826 sender: *4 required: - action @@ -163399,9 +163484,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 project_card: title: Project Card type: object @@ -163529,8 +163614,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -163624,11 +163709,11 @@ x-webhooks: - from required: - note - enterprise: *822 - installation: *823 - organization: *824 - project_card: *869 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_card: *870 + repository: *826 sender: *4 required: - action @@ -163722,9 +163807,9 @@ x-webhooks: - from required: - column_id - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 project_card: allOf: - title: Project Card @@ -163914,7 +163999,7 @@ x-webhooks: type: string required: - after_id - repository: *825 + repository: *826 sender: *4 required: - action @@ -163994,10 +164079,10 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - organization: *824 - project: &871 + enterprise: *823 + installation: *824 + organization: *825 + project: &872 title: Project type: object properties: @@ -164121,7 +164206,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -164201,10 +164286,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project_column: &870 + enterprise: *823 + installation: *824 + organization: *825 + project_column: &871 title: Project Column type: object properties: @@ -164243,7 +164328,7 @@ x-webhooks: - name - created_at - updated_at - repository: *825 + repository: *826 sender: *4 required: - action @@ -164322,18 +164407,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -164423,11 +164508,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 + repository: *826 sender: *4 required: - action @@ -164507,11 +164592,11 @@ x-webhooks: type: string enum: - moved - enterprise: *822 - installation: *823 - organization: *824 - project_column: *870 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project_column: *871 + repository: *826 sender: *4 required: - action @@ -164591,11 +164676,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164675,18 +164760,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - project: *871 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *862 - required: *863 + properties: *863 + required: *864 nullable: true sender: *4 required: @@ -164788,11 +164873,11 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164871,11 +164956,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 - organization: *824 - project: *871 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + project: *872 + repository: *826 sender: *4 required: - action @@ -164956,9 +165041,9 @@ x-webhooks: type: string enum: - closed - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165039,9 +165124,9 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165122,9 +165207,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165241,9 +165326,9 @@ x-webhooks: type: string to: type: string - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -165326,7 +165411,7 @@ x-webhooks: type: string enum: - archived - changes: &875 + changes: &876 type: object properties: archived_at: @@ -165340,9 +165425,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *823 - organization: *824 - projects_v2_item: &872 + installation: *824 + organization: *825 + projects_v2_item: &873 title: Projects v2 Item description: An item belonging to a project type: object @@ -165360,7 +165445,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *373 + content_type: *374 creator: *4 created_at: type: string @@ -165477,9 +165562,9 @@ x-webhooks: nullable: true to: type: string - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165561,9 +165646,9 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165644,9 +165729,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165752,7 +165837,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &873 + - &874 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -165774,7 +165859,7 @@ x-webhooks: required: - id - name - - &874 + - &875 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -165808,8 +165893,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *873 - *874 + - *875 required: - field_value - type: object @@ -165825,9 +165910,9 @@ x-webhooks: nullable: true required: - body - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -165922,9 +166007,9 @@ x-webhooks: to: type: string nullable: true - installation: *823 - organization: *824 - projects_v2_item: *872 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -166007,10 +166092,10 @@ x-webhooks: type: string enum: - restored - changes: *875 - installation: *823 - organization: *824 - projects_v2_item: *872 + changes: *876 + installation: *824 + organization: *825 + projects_v2_item: *873 sender: *4 required: - action @@ -166092,9 +166177,9 @@ x-webhooks: type: string enum: - reopened - installation: *823 - organization: *824 - projects_v2: *365 + installation: *824 + organization: *825 + projects_v2: *366 sender: *4 required: - action @@ -166175,14 +166260,14 @@ x-webhooks: type: string enum: - created - installation: *823 - organization: *824 - projects_v2_status_update: &878 + installation: *824 + organization: *825 + projects_v2_status_update: &879 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *876 - required: *877 + properties: *877 + required: *878 sender: *4 required: - action @@ -166263,9 +166348,9 @@ x-webhooks: type: string enum: - deleted - installation: *823 - organization: *824 - projects_v2_status_update: *878 + installation: *824 + organization: *825 + projects_v2_status_update: *879 sender: *4 required: - action @@ -166401,9 +166486,9 @@ x-webhooks: type: string format: date nullable: true - installation: *823 - organization: *824 - projects_v2_status_update: *878 + installation: *824 + organization: *825 + projects_v2_status_update: *879 sender: *4 required: - action @@ -166474,10 +166559,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - repository @@ -166554,13 +166639,13 @@ x-webhooks: type: string enum: - assigned - assignee: *849 - enterprise: *822 - installation: *823 - number: &879 + assignee: *850 + enterprise: *823 + installation: *824 + number: &880 description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -168843,7 +168928,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -168925,11 +169010,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -171207,7 +171292,7 @@ x-webhooks: - draft reason: type: string - repository: *825 + repository: *826 sender: *4 required: - action @@ -171289,11 +171374,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -173571,7 +173656,7 @@ x-webhooks: - draft reason: type: string - repository: *825 + repository: *826 sender: *4 required: - action @@ -173653,13 +173738,13 @@ x-webhooks: type: string enum: - closed - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: &880 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: &881 allOf: - - *672 + - *673 - type: object properties: allow_auto_merge: @@ -173721,7 +173806,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *825 + repository: *826 sender: *4 required: - action @@ -173802,12 +173887,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -173887,11 +173972,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *822 - milestone: *656 - number: *879 - organization: *824 - pull_request: &881 + enterprise: *823 + milestone: *657 + number: *880 + organization: *825 + pull_request: &882 title: Pull Request type: object properties: @@ -176154,7 +176239,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -176233,11 +176318,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -178519,7 +178604,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *825 + repository: *826 sender: *4 required: - action @@ -178643,12 +178728,12 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -178728,11 +178813,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -180999,7 +181084,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -181079,11 +181164,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *822 - installation: *823 - label: *848 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + label: *849 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -183365,7 +183450,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -183446,10 +183531,10 @@ x-webhooks: type: string enum: - locked - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -185729,7 +185814,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -185809,12 +185894,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *822 - milestone: *656 - number: *879 - organization: *824 - pull_request: *881 - repository: *825 + enterprise: *823 + milestone: *657 + number: *880 + organization: *825 + pull_request: *882 + repository: *826 sender: *4 required: - action @@ -185893,12 +185978,12 @@ x-webhooks: type: string enum: - opened - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -185979,12 +186064,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -186064,12 +186149,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *822 - installation: *823 - number: *879 - organization: *824 - pull_request: *880 - repository: *825 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 + pull_request: *881 + repository: *826 sender: *4 required: - action @@ -186435,9 +186520,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -188607,7 +188692,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -188687,7 +188772,7 @@ x-webhooks: type: string enum: - deleted - comment: &883 + comment: &884 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. @@ -188972,9 +189057,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -191132,7 +191217,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -191212,11 +191297,11 @@ x-webhooks: type: string enum: - edited - changes: *882 - comment: *883 - enterprise: *822 - installation: *823 - organization: *824 + changes: *883 + comment: *884 + enterprise: *823 + installation: *824 + organization: *825 pull_request: type: object properties: @@ -193377,7 +193462,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *825 + repository: *826 sender: *4 required: - action @@ -193458,9 +193543,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -195633,7 +195718,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 review: description: The review that was affected. type: object @@ -195880,9 +195965,9 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -197936,8 +198021,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 - review: &884 + repository: *826 + review: &885 description: The review that was affected. type: object properties: @@ -198170,12 +198255,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -200458,7 +200543,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_reviewer: title: User type: object @@ -200542,12 +200627,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -202837,7 +202922,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203029,12 +203114,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -205319,7 +205404,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_reviewer: title: User type: object @@ -205404,12 +205489,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *822 - installation: *823 + enterprise: *823 + installation: *824 number: description: The pull request number. type: integer - organization: *824 + organization: *825 pull_request: title: Pull Request type: object @@ -207685,7 +207770,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207866,9 +207951,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -210043,8 +210128,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 - review: *884 + repository: *826 + review: *885 sender: *4 required: - action @@ -210124,9 +210209,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -212196,7 +212281,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 sender: *4 thread: type: object @@ -212583,9 +212668,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 pull_request: title: Simple Pull Request type: object @@ -214641,7 +214726,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *825 + repository: *826 sender: *4 thread: type: object @@ -215031,10 +215116,10 @@ x-webhooks: type: string before: type: string - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -217305,7 +217390,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -217387,11 +217472,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *885 - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + assignee: *886 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -219674,7 +219759,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -219753,11 +219838,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *822 - installation: *823 - label: *848 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + label: *849 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -222030,7 +222115,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -222111,10 +222196,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *822 - installation: *823 - number: *879 - organization: *824 + enterprise: *823 + installation: *824 + number: *880 + organization: *825 pull_request: title: Pull Request type: object @@ -224379,7 +224464,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *825 + repository: *826 sender: *4 required: - action @@ -224579,7 +224664,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *822 + enterprise: *823 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -224671,8 +224756,8 @@ x-webhooks: - url - author - committer - installation: *823 - organization: *824 + installation: *824 + organization: *825 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225247,9 +225332,9 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 registry_package: type: object properties: @@ -225695,7 +225780,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *866 + items: *867 summary: type: string tag_name: @@ -225749,7 +225834,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -225827,9 +225912,9 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 registry_package: type: object properties: @@ -226137,7 +226222,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *866 + items: *867 summary: type: string tag_name: @@ -226186,7 +226271,7 @@ x-webhooks: - owner - package_version - registry - repository: *825 + repository: *826 sender: *4 required: - action @@ -226263,10 +226348,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - release: &886 + enterprise: *823 + installation: *824 + organization: *825 + release: &887 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -226584,7 +226669,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *825 + repository: *826 sender: *4 required: - action @@ -226661,11 +226746,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -226782,11 +226867,11 @@ x-webhooks: type: boolean required: - to - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -226864,9 +226949,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -227188,7 +227273,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *825 + repository: *826 sender: *4 required: - action @@ -227264,10 +227349,10 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - release: &887 + enterprise: *823 + installation: *824 + organization: *825 + release: &888 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -227586,7 +227671,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *825 + repository: *826 sender: *4 required: - action @@ -227662,11 +227747,11 @@ x-webhooks: type: string enum: - released - enterprise: *822 - installation: *823 - organization: *824 - release: *886 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *887 + repository: *826 sender: *4 required: - action @@ -227742,11 +227827,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *822 - installation: *823 - organization: *824 - release: *887 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + release: *888 + repository: *826 sender: *4 required: - action @@ -227822,11 +227907,11 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_advisory: *724 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_advisory: *725 sender: *4 required: - action @@ -227902,11 +227987,11 @@ x-webhooks: type: string enum: - reported - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_advisory: *724 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_advisory: *725 sender: *4 required: - action @@ -227982,10 +228067,10 @@ x-webhooks: type: string enum: - archived - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228062,10 +228147,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228143,10 +228228,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228230,10 +228315,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228345,10 +228430,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228420,10 +228505,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 status: type: string @@ -228504,10 +228589,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228584,10 +228669,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228681,10 +228766,10 @@ x-webhooks: - name required: - repository - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -228764,11 +228849,11 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 sender: *4 required: - action @@ -228846,11 +228931,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 sender: *4 required: - action @@ -228928,11 +229013,11 @@ x-webhooks: type: string enum: - edited - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - repository_ruleset: *161 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + repository_ruleset: *162 changes: type: object properties: @@ -228951,16 +229036,16 @@ x-webhooks: properties: added: type: array - items: *135 + items: *136 deleted: type: array - items: *135 + items: *136 updated: type: array items: type: object properties: - condition: *135 + condition: *136 changes: type: object properties: @@ -228993,16 +229078,16 @@ x-webhooks: properties: added: type: array - items: *692 + items: *693 deleted: type: array - items: *692 + items: *693 updated: type: array items: type: object properties: - rule: *692 + rule: *693 changes: type: object properties: @@ -229236,10 +229321,10 @@ x-webhooks: - from required: - owner - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229317,10 +229402,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229398,7 +229483,7 @@ x-webhooks: type: string enum: - create - alert: &888 + alert: &889 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -229519,10 +229604,10 @@ x-webhooks: type: string enum: - open - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229728,10 +229813,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -229809,11 +229894,11 @@ x-webhooks: type: string enum: - reopen - alert: *888 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *889 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230012,10 +230097,10 @@ x-webhooks: enum: - fixed - open - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230093,11 +230178,11 @@ x-webhooks: type: string enum: - created - alert: &889 + alert: &890 type: object properties: - number: *112 - created_at: *119 + number: *113 + created_at: *120 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -230105,8 +230190,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *117 - html_url: *118 + url: *118 + html_url: *119 locations_url: type: string format: uri @@ -230204,10 +230289,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230288,11 +230373,11 @@ x-webhooks: type: string enum: - created - alert: *889 - installation: *823 - location: *890 - organization: *824 - repository: *825 + alert: *890 + installation: *824 + location: *891 + organization: *825 + repository: *826 sender: *4 required: - location @@ -230530,11 +230615,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230612,11 +230697,11 @@ x-webhooks: type: string enum: - reopened - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230694,11 +230779,11 @@ x-webhooks: type: string enum: - resolved - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230776,11 +230861,11 @@ x-webhooks: type: string enum: - validated - alert: *889 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + alert: *890 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -230906,10 +230991,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *825 - enterprise: *822 - installation: *823 - organization: *824 + repository: *826 + enterprise: *823 + installation: *824 + organization: *825 sender: *4 required: - action @@ -230987,11 +231072,11 @@ x-webhooks: type: string enum: - published - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - security_advisory: &891 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + security_advisory: &892 description: The details of the security advisory, including summary, description, and severity. type: object @@ -231007,7 +231092,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array items: @@ -231174,11 +231259,11 @@ x-webhooks: type: string enum: - updated - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 - security_advisory: *891 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 + security_advisory: *892 sender: *4 required: - action @@ -231251,10 +231336,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -231271,7 +231356,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *114 + cvss_severities: *115 cwes: type: array items: @@ -231438,11 +231523,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *381 - enterprise: *822 - installation: *823 - organization: *824 - repository: *448 + security_and_analysis: *382 + enterprise: *823 + installation: *824 + organization: *825 + repository: *449 sender: *4 required: - changes @@ -231520,12 +231605,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: &892 + sponsorship: &893 type: object properties: created_at: @@ -231826,12 +231911,12 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - sponsorship @@ -231919,12 +232004,12 @@ x-webhooks: type: string required: - from - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232001,17 +232086,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &893 + effective_date: &894 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: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - sponsorship @@ -232085,7 +232170,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &894 + changes: &895 type: object properties: tier: @@ -232129,13 +232214,13 @@ x-webhooks: - from required: - tier - effective_date: *893 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + effective_date: *894 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232212,13 +232297,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *894 - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + changes: *895 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - sponsorship: *892 + sponsorship: *893 required: - action - changes @@ -232292,10 +232377,10 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232378,10 +232463,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232801,15 +232886,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *822 + enterprise: *823 id: description: The unique identifier of the status. type: integer - installation: *823 + installation: *824 name: type: string - organization: *824 - repository: *825 + organization: *825 + repository: *826 sender: *4 sha: description: The Commit SHA. @@ -232918,15 +233003,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - parent_issue_repo: *67 + parent_issue: *192 + parent_issue_repo: *69 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - installation: *823 - organization: *824 - repository: *825 + sub_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233010,15 +233095,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - parent_issue_repo: *67 + parent_issue: *192 + parent_issue_repo: *69 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - installation: *823 - organization: *824 - repository: *825 + sub_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233102,15 +233187,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - sub_issue_repo: *67 + sub_issue: *192 + sub_issue_repo: *69 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - installation: *823 - organization: *824 - repository: *825 + parent_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233194,15 +233279,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *191 - sub_issue_repo: *67 + sub_issue: *192 + sub_issue_repo: *69 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *191 - installation: *823 - organization: *824 - repository: *825 + parent_issue: *192 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -233279,12 +233364,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - team: &895 + team: &896 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -233474,9 +233559,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -233934,7 +234019,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -234010,9 +234095,9 @@ x-webhooks: type: string enum: - created - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -234470,7 +234555,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -234547,9 +234632,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -235007,7 +235092,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -235151,9 +235236,9 @@ x-webhooks: - from required: - permissions - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -235611,7 +235696,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - changes @@ -235689,9 +235774,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *822 - installation: *823 - organization: *824 + enterprise: *823 + installation: *824 + organization: *825 repository: title: Repository description: A git repository @@ -236149,7 +236234,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *895 + team: *896 required: - action - team @@ -236225,10 +236310,10 @@ x-webhooks: type: string enum: - started - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 required: - action @@ -236301,16 +236386,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *822 + enterprise: *823 inputs: type: object nullable: true additionalProperties: true - installation: *823 - organization: *824 + installation: *824 + organization: *825 ref: type: string - repository: *825 + repository: *826 sender: *4 workflow: type: string @@ -236392,10 +236477,10 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: allOf: @@ -236632,7 +236717,7 @@ x-webhooks: type: string required: - conclusion - deployment: *579 + deployment: *580 required: - action - repository @@ -236711,10 +236796,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: allOf: @@ -236974,7 +237059,7 @@ x-webhooks: required: - status - steps - deployment: *579 + deployment: *580 required: - action - repository @@ -237053,10 +237138,10 @@ x-webhooks: type: string enum: - queued - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: type: object @@ -237191,7 +237276,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *579 + deployment: *580 required: - action - repository @@ -237270,10 +237355,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 workflow_job: type: object @@ -237409,7 +237494,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *579 + deployment: *580 required: - action - repository @@ -237489,12 +237574,12 @@ x-webhooks: type: string enum: - completed - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object @@ -238493,12 +238578,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object @@ -239482,12 +239567,12 @@ x-webhooks: type: string enum: - requested - enterprise: *822 - installation: *823 - organization: *824 - repository: *825 + enterprise: *823 + installation: *824 + organization: *825 + repository: *826 sender: *4 - workflow: *844 + workflow: *845 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index ce09e254e..aa273150e 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -2226,6 +2226,116 @@ } } }, + "/enterprises/{enterprise}/access-restrictions/disable": { + "post": { + "summary": "Disable access restrictions for an enterprise", + "description": "Disable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/disable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/enterprise-access-restrictions" + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully disabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, + "/enterprises/{enterprise}/access-restrictions/enable": { + "post": { + "summary": "Enable access restrictions for an enterprise", + "description": "Enable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/enable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/enterprise-access-restrictions" + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully enabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, "/enterprises/{enterprise}/actions/cache/usage": { "get": { "summary": "Get GitHub Actions cache usage for an enterprise", @@ -117683,6 +117793,31 @@ } } }, + "enterprise-access-restrictions": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, "actions-cache-usage-org-enterprise": { "type": "object", "properties": { diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index 995276ee4..f61945286 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -1552,6 +1552,80 @@ paths: enabledForGitHubApps: false category: enterprise-admin subcategory: admin-stats + "/enterprises/{enterprise}/access-restrictions/disable": + post: + summary: Disable access restrictions for an enterprise + description: Disable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/disable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/enterprise-access-restrictions" + examples: + default: + value: + message: Enterprise access restrictions successfully disabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises + "/enterprises/{enterprise}/access-restrictions/enable": + post: + summary: Enable access restrictions for an enterprise + description: Enable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/enable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/enterprise-access-restrictions" + examples: + default: + value: + message: Enterprise access restrictions successfully enabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises "/enterprises/{enterprise}/actions/cache/usage": get: summary: Get GitHub Actions cache usage for an enterprise @@ -85119,6 +85193,25 @@ components: "$ref": "#/components/schemas/server-statistics-actions" packages_stats: "$ref": "#/components/schemas/server-statistics-packages" + enterprise-access-restrictions: + type: object + title: Enterprise Access Restrictions + description: Information about the enterprise access restrictions proxy header. + properties: + message: + type: string + description: The message returned for the request. + header_name: + type: string + description: The name of the proxy header. + example: sec-GitHub-allowed-enterprise + header_value: + type: string + description: The value of the proxy header. + required: + - message + - header_name + - header_value actions-cache-usage-org-enterprise: type: object properties: diff --git a/descriptions/ghec/ghec.json b/descriptions/ghec/ghec.json index ce09e254e..aa273150e 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -2226,6 +2226,116 @@ } } }, + "/enterprises/{enterprise}/access-restrictions/disable": { + "post": { + "summary": "Disable access restrictions for an enterprise", + "description": "Disable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/disable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/enterprise-access-restrictions" + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully disabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, + "/enterprises/{enterprise}/access-restrictions/enable": { + "post": { + "summary": "Enable access restrictions for an enterprise", + "description": "Enable access restriction by proxy header using the network proxy owned by the enterprise.", + "operationId": "enterprise-admin/enable-access-restrictions", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/enterprise-access-restrictions" + }, + "examples": { + "default": { + "value": { + "message": "Enterprise access restrictions successfully enabled.", + "header_name": "sec-GitHub-allowed-enterprise", + "header_value": "12345" + } + } + } + } + } + }, + "400": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "enterprise-admin", + "subcategory": "enterprises" + } + } + }, "/enterprises/{enterprise}/actions/cache/usage": { "get": { "summary": "Get GitHub Actions cache usage for an enterprise", @@ -117683,6 +117793,31 @@ } } }, + "enterprise-access-restrictions": { + "type": "object", + "title": "Enterprise Access Restrictions", + "description": "Information about the enterprise access restrictions proxy header.", + "properties": { + "message": { + "type": "string", + "description": "The message returned for the request." + }, + "header_name": { + "type": "string", + "description": "The name of the proxy header.", + "example": "sec-GitHub-allowed-enterprise" + }, + "header_value": { + "type": "string", + "description": "The value of the proxy header." + } + }, + "required": [ + "message", + "header_name", + "header_value" + ] + }, "actions-cache-usage-org-enterprise": { "type": "object", "properties": { diff --git a/descriptions/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index 995276ee4..f61945286 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -1552,6 +1552,80 @@ paths: enabledForGitHubApps: false category: enterprise-admin subcategory: admin-stats + "/enterprises/{enterprise}/access-restrictions/disable": + post: + summary: Disable access restrictions for an enterprise + description: Disable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/disable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#disable-access-restrictions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/enterprise-access-restrictions" + examples: + default: + value: + message: Enterprise access restrictions successfully disabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises + "/enterprises/{enterprise}/access-restrictions/enable": + post: + summary: Enable access restrictions for an enterprise + description: Enable access restriction by proxy header using the network proxy + owned by the enterprise. + operationId: enterprise-admin/enable-access-restrictions + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprises#enable-access-restrictions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/enterprise-access-restrictions" + examples: + default: + value: + message: Enterprise access restrictions successfully enabled. + header_name: sec-GitHub-allowed-enterprise + header_value: '12345' + '400': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: enterprise-admin + subcategory: enterprises "/enterprises/{enterprise}/actions/cache/usage": get: summary: Get GitHub Actions cache usage for an enterprise @@ -85119,6 +85193,25 @@ components: "$ref": "#/components/schemas/server-statistics-actions" packages_stats: "$ref": "#/components/schemas/server-statistics-packages" + enterprise-access-restrictions: + type: object + title: Enterprise Access Restrictions + description: Information about the enterprise access restrictions proxy header. + properties: + message: + type: string + description: The message returned for the request. + header_name: + type: string + description: The name of the proxy header. + example: sec-GitHub-allowed-enterprise + header_value: + type: string + description: The value of the proxy header. + required: + - message + - header_name + - header_value actions-cache-usage-org-enterprise: type: object properties: