diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index b1be856f2..2d8ad7ad8 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -35262,6 +35262,471 @@ } } }, + "/enterprises/{enterprise}/bypass-requests/secret-scanning": { + "get": { + "summary": "List bypass requests for secret scanning for an enterprise", + "description": "List requests to bypass secret scanning push protection in an enterprise.\n\nDelegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/list-enterprise-bypass-requests", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "secret-scanning", + "subcategory": "delegated-bypass" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "organization_name", + "description": "The name of the organization to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the bypass request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "deleted", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Secret scanning bypass request", + "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the bypass request." + }, + "number": { + "type": "integer", + "description": "The number uniquely identifying the bypass request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the repository the bypass request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the bypass request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the bypass request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the bypass.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who requested the bypass." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the bypass." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the push rules that are being requested to be bypassed.", + "items": { + "type": "object", + "properties": { + "secret_type": { + "type": "string", + "description": "The type of secret that secret scanning detected." + }, + "bypass_reason": { + "type": "string", + "enum": [ + "used_in_tests", + "false_positive", + "fix_later" + ], + "description": "The reason the bypass was requested." + }, + "path": { + "type": "string", + "description": "The path in the repo where the secret was located during the request." + }, + "branch": { + "type": "string", + "description": "The branch in the repo where the secret was located during the request." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", + "examples": [ + "827efc6d56897b048c772eb4087f854f46256132" + ] + }, + "status": { + "type": "string", + "description": "The status of the bypass request.", + "enum": [ + "pending", + "denied", + "approved", + "cancelled", + "completed", + "expired", + "open" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the bypass request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the bypass request.", + "items": { + "title": "Bypass response", + "description": "A response made by a delegated bypasser to a bypass request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the response to the bypass request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the bypass request.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who reviewed the bypass request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the bypass request." + } + } + }, + "status": { + "type": "string", + "description": "The response status to the bypass request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the bypass request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the bypass request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/exemptions/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "used_in_tests", + "path": "/tests/README.md:16:0", + "branch": "refs/heads/main" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", + "status": "denied", + "requester_comment": "Test token used in the readme as an example", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", + "html_url": "https://github.com/octo-org/smile/exemptions/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "fix_later", + "path": "README.md:17:0", + "branch": "refs/heads/my-branch" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", + "status": "denied", + "requester_comment": "Token is already revoked, I'll remove it later", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "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": { + "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" + } + } + } + } + } + } + } + } + }, "/enterprises/{enterprise}/code-scanning/alerts": { "get": { "summary": "List code scanning alerts for an enterprise", diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 85fb350c7..86af34709 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/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 - - &90 + - &96 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 - - &91 + - &97 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 - - &92 + - &98 name: direction description: The direction to sort the results by. in: query @@ -701,7 +701,7 @@ paths: required: - vector_string - score - cvss_severities: &104 + cvss_severities: &110 type: - object - 'null' @@ -748,7 +748,7 @@ paths: required: - vector_string - score - epss: &105 + epss: &111 type: - object - 'null' @@ -911,7 +911,7 @@ paths: - subscriptions_url - type - url - type: &383 + type: &386 type: string description: The type of credit the user is receiving. enum: @@ -1044,7 +1044,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &204 + schema: &210 title: Validation Error Simple description: Validation Error Simple type: object @@ -1077,7 +1077,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: - - &701 + - &702 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1662,7 +1662,7 @@ paths: schema: type: integer default: 30 - - &294 + - &297 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 @@ -1678,7 +1678,7 @@ paths: application/json: schema: type: array - items: &295 + items: &298 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1774,7 +1774,7 @@ paths: - installation_id - repository_id examples: - default: &296 + default: &299 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1806,7 +1806,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &711 + schema: &712 title: Scim Error description: Scim Error type: object @@ -1837,7 +1837,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &203 + schema: &209 title: Validation Error description: Validation Error type: object @@ -1909,7 +1909,7 @@ paths: description: Response content: application/json: - schema: &297 + schema: &300 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2044,7 +2044,7 @@ paths: - request - response examples: - default: &298 + default: &301 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2248,7 +2248,7 @@ paths: parameters: - *17 - *19 - - &169 + - &175 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) @@ -3033,7 +3033,7 @@ paths: license: anyOf: - type: 'null' - - &180 + - &186 title: License Simple description: License Simple type: object @@ -7696,7 +7696,7 @@ paths: description: Response content: application/json: - schema: &205 + schema: &211 type: object properties: total_active_caches_count: @@ -7711,7 +7711,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &206 + default: &212 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7916,7 +7916,7 @@ paths: - public_ip_enabled - platform examples: - default: &207 + default: &213 value: total_count: 2 runners: @@ -8206,7 +8206,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &214 type: object properties: public_ips: @@ -8233,7 +8233,7 @@ paths: required: - public_ips examples: - default: &209 + default: &215 value: public_ips: current_usage: 17 @@ -8273,7 +8273,7 @@ paths: type: array items: *43 examples: - default: &210 + default: &216 value: id: 4-core cpu_cores: 4 @@ -8531,7 +8531,7 @@ paths: - all - local_only - selected - selected_actions_url: &213 + selected_actions_url: &219 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` @@ -8611,7 +8611,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &215 + schema: &221 type: object properties: days: @@ -8629,7 +8629,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &712 + '401': &713 description: Authorization failure '404': *6 x-github: @@ -8657,7 +8657,7 @@ paths: required: true content: application/json: - schema: &216 + schema: &222 type: object properties: days: @@ -8706,7 +8706,7 @@ paths: required: - approval_policy examples: - default: &217 + default: &223 value: approval_policy: first_time_contributors '404': *6 @@ -8764,7 +8764,7 @@ paths: description: Response content: application/json: - schema: &218 + schema: &224 type: object required: - run_workflows_from_fork_pull_requests @@ -8818,7 +8818,7 @@ paths: required: true content: application/json: - schema: &219 + schema: &225 type: object required: - run_workflows_from_fork_pull_requests @@ -9254,7 +9254,7 @@ paths: description: Success response content: application/json: - schema: &222 + schema: &228 type: object properties: default_workflow_permissions: &54 @@ -9302,7 +9302,7 @@ paths: required: true content: application/json: - schema: &223 + schema: &229 type: object properties: default_workflow_permissions: *54 @@ -10147,7 +10147,7 @@ paths: application/json: schema: type: array - items: &227 + items: &233 title: Runner Application description: Runner Application type: object @@ -10172,7 +10172,7 @@ paths: - download_url - filename examples: - default: &228 + default: &234 value: - os: osx architecture: x64 @@ -10256,7 +10256,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &229 + '201': &235 description: Response content: application/json: @@ -10295,7 +10295,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &100 + '409': &106 description: Conflict content: application/json: @@ -10375,7 +10375,7 @@ paths: - token - expires_at examples: - default: &230 + default: &236 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10415,7 +10415,7 @@ paths: application/json: schema: *66 examples: - default: &231 + default: &237 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10447,7 +10447,7 @@ paths: application/json: schema: *63 examples: - default: &232 + default: &238 value: id: 23 name: MBP @@ -10663,7 +10663,7 @@ paths: - *39 - *62 responses: - '200': &233 + '200': &239 description: Response content: application/json: @@ -10719,7 +10719,7 @@ paths: parameters: - *39 - *62 - - &234 + - &240 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10816,7 +10816,7 @@ paths: required: true content: application/json: - schema: &241 + schema: &247 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -11467,7 +11467,7 @@ paths: required: false schema: type: string - - &242 + - &248 name: include description: |- The event types to include: @@ -11485,7 +11485,7 @@ paths: - web - git - all - - &243 + - &249 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. @@ -11493,7 +11493,7 @@ paths: required: false schema: type: string - - &244 + - &250 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. @@ -11501,7 +11501,7 @@ paths: required: false schema: type: string - - &245 + - &251 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11523,7 +11523,7 @@ paths: application/json: schema: type: array - items: &246 + items: &252 type: object properties: "@timestamp": @@ -11645,7 +11645,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &247 + default: &253 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12248,12 +12248,13 @@ paths: subcategory: bypass-requests parameters: - *39 - - name: organization_name + - &90 + name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &249 + - &91 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12261,7 +12262,7 @@ paths: required: false schema: type: string - - &250 + - &92 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12269,7 +12270,7 @@ paths: required: false schema: type: string - - &251 + - &93 name: time_period description: |- The time period to filter by. @@ -12285,7 +12286,7 @@ paths: - week - month default: day - - &252 + - &94 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12312,7 +12313,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12438,7 +12439,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: &256 + items: &95 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12484,7 +12485,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &254 + default: &256 value: - id: 21 number: 42 @@ -12554,6 +12555,240 @@ paths: html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 '500': *89 + "/enterprises/{enterprise}/bypass-requests/secret-scanning": + get: + summary: List bypass requests for secret scanning for an enterprise + description: |- + List requests to bypass secret scanning push protection in an enterprise. + + Delegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-enterprise-bypass-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: secret-scanning + subcategory: delegated-bypass + parameters: + - *39 + - *90 + - *91 + - *92 + - *93 + - *94 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: &258 + title: Secret scanning bypass request + description: A bypass request made by a user asking to be exempted + from push protection in this repository. + type: object + properties: + id: + type: integer + description: The unique identifier of the bypass request. + number: + type: integer + description: The number uniquely identifying the bypass request + within its repository. + repository: + type: object + description: The repository the bypass request is for. + properties: + id: + type: integer + description: The ID of the repository the bypass request + is for. + name: + type: string + description: The name of the repository the bypass request + is for. + full_name: + type: string + description: The full name of the repository the bypass + request is for. + organization: + type: object + description: The organization associated with the repository + the bypass request is for. + properties: + id: + type: integer + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the bypass. + properties: + actor_id: + type: integer + description: The ID of the GitHub user who requested the + bypass. + actor_name: + type: string + description: The name of the GitHub user who requested the + bypass. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the push rules that are being requested + to be bypassed. + items: + type: object + properties: + secret_type: + type: string + description: The type of secret that secret scanning detected. + bypass_reason: + type: string + enum: + - used_in_tests + - false_positive + - fix_later + description: The reason the bypass was requested. + path: + type: string + description: The path in the repo where the secret was + located during the request. + branch: + type: string + description: The branch in the repo where the secret was + located during the request. + resource_identifier: + type: string + description: The unique identifier for the request type of the + bypass request. For example, a commit SHA. + examples: + - 827efc6d56897b048c772eb4087f854f46256132 + status: + type: string + description: The status of the bypass request. + enum: + - pending + - denied + - approved + - cancelled + - completed + - expired + - open + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the bypass request. + expires_at: + type: string + format: date-time + description: The date and time the bypass request will expire. + created_at: + type: string + format: date-time + description: The date and time the bypass request was created. + responses: + type: + - array + - 'null' + description: The responses to the bypass request. + items: *95 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: + type: string + description: The URL to view the bypass request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/exemptions/1 + examples: + default: &259 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: used_in_tests + path: "/tests/README.md:16:0" + branch: refs/heads/main + resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 + status: denied + requester_comment: Test token used in the readme as an example + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: https://github.com/octo-org/smile/exemptions/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: fix_later + path: README.md:17:0 + branch: refs/heads/my-branch + resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 + status: denied + requester_comment: Token is already revoked, I'll remove it later + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + 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': *89 "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -12571,17 +12806,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &261 + - &264 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: &93 + schema: &99 type: string description: The name of the tool used to generate the code scanning analysis. - - &262 + - &265 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 @@ -12589,23 +12824,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &94 + schema: &100 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *90 - - *91 + - *96 + - *97 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &263 + schema: &266 type: string description: State of a code scanning alert. enum: @@ -12630,42 +12865,42 @@ paths: application/json: schema: type: array - items: &264 + items: &267 type: object properties: - number: &102 + number: &108 type: integer description: The security alert number. readOnly: true - created_at: &109 + created_at: &115 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: &110 + updated_at: &116 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: &107 + url: &113 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &108 + html_url: &114 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &498 + instances_url: &499 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &95 + state: &101 type: - string - 'null' @@ -12675,7 +12910,7 @@ paths: - dismissed - fixed - - fixed_at: &112 + fixed_at: &118 type: - string - 'null' @@ -12687,7 +12922,7 @@ paths: anyOf: - type: 'null' - *4 - dismissed_at: &111 + dismissed_at: &117 type: - string - 'null' @@ -12695,7 +12930,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &499 + dismissed_reason: &500 type: - string - 'null' @@ -12706,14 +12941,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &500 + dismissed_comment: &501 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &501 + rule: &502 type: object properties: id: @@ -12774,26 +13009,26 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &502 + tool: &503 type: object properties: - name: *93 + name: *99 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *94 - most_recent_instance: &503 + guid: *100 + most_recent_instance: &504 type: object properties: - ref: &496 + ref: &497 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &513 + analysis_key: &514 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12804,13 +13039,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &514 + category: &515 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: *95 + state: *101 commit_sha: type: string message: @@ -12851,7 +13086,7 @@ paths: - test - library - - repository: &101 + repository: &107 title: Simple Repository description: A GitHub repository. type: object @@ -13192,7 +13427,7 @@ paths: - most_recent_instance - repository examples: - default: &265 + default: &268 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13423,7 +13658,7 @@ paths: headers: Link: *38 '404': *6 - '503': &156 + '503': &162 description: Service unavailable content: application/json: @@ -13467,8 +13702,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -13476,7 +13711,7 @@ paths: application/json: schema: type: array - items: &96 + items: &102 type: object description: A code security configuration properties: @@ -13851,7 +14086,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &266 + code_scanning_options: &269 type: - object - 'null' @@ -13870,7 +14105,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &99 + code_scanning_default_setup_options: &105 type: - object - 'null' @@ -13989,9 +14224,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *96 + schema: *102 examples: - default: &97 + default: &103 value: id: 1325 target_type: enterprise @@ -14049,7 +14284,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 type: array description: A list of default code security configurations items: @@ -14063,9 +14298,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *96 + configuration: *102 examples: - default: &269 + default: &272 value: - default_for_new_repos: public configuration: @@ -14154,7 +14389,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *39 - - &98 + - &104 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -14166,9 +14401,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *97 + default: *103 '304': *35 '403': *27 '404': *6 @@ -14193,7 +14428,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14272,7 +14507,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14360,13 +14595,13 @@ paths: description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *97 + default: *103 '304': *35 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14390,14 +14625,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *39 - - *98 + - *104 responses: - '204': &122 + '204': &128 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14422,7 +14657,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14449,7 +14684,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14474,7 +14709,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: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14514,12 +14749,12 @@ paths: - none - private_and_internal - public - configuration: *96 + configuration: *102 examples: default: value: default_for_new_repos: all - configuration: &267 + configuration: &270 value: id: 1325 target_type: organization @@ -14576,7 +14811,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *39 - - *98 + - *104 - 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)." @@ -14585,8 +14820,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -14604,7 +14839,7 @@ paths: application/json: schema: type: array - items: &270 + items: &273 type: object description: Repositories associated with a code security configuration and attachment status @@ -14622,13 +14857,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *101 + repository: *107 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &271 + repository: &274 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15111,7 +15346,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &113 + items: &119 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -15129,7 +15364,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &257 + - &260 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15188,7 +15423,7 @@ paths: parent: anyOf: - type: 'null' - - &331 + - &334 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -15403,7 +15638,7 @@ paths: - created_at additionalProperties: false examples: - default: &114 + default: &120 value: total_seats: 2 seats: @@ -15855,7 +16090,7 @@ paths: application/json: schema: type: array - items: &162 + items: &168 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -16170,7 +16405,7 @@ paths: - date additionalProperties: true examples: - default: &163 + default: &169 value: - date: '2024-06-24' total_active_users: 24 @@ -16272,7 +16507,7 @@ paths: '500': *89 '403': *27 '404': *6 - '422': &164 + '422': &170 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -16302,7 +16537,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &278 + - &281 name: state in: query description: |- @@ -16311,7 +16546,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &279 + - &282 name: severity in: query description: |- @@ -16320,7 +16555,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &280 + - &283 name: ecosystem in: query description: |- @@ -16329,14 +16564,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &281 + - &284 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 - - &282 + - &285 name: epss_percentage in: query description: |- @@ -16348,7 +16583,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 - - &283 + - &286 name: has in: query description: |- @@ -16362,7 +16597,7 @@ paths: type: string enum: - patch - - &284 + - &287 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -16372,7 +16607,7 @@ paths: enum: - development - runtime - - &285 + - &288 name: sort in: query description: |- @@ -16387,10 +16622,10 @@ paths: - updated - epss_percentage default: created - - *92 - - *90 - - *91 - - &286 + - *98 + - *96 + - *97 + - &289 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -16403,7 +16638,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &287 + - &290 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -16423,11 +16658,11 @@ paths: application/json: schema: type: array - items: &288 + items: &291 type: object description: A Dependabot alert. properties: - number: *102 + number: *108 state: type: string description: The state of the Dependabot alert. @@ -16442,7 +16677,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &103 + package: &109 type: object description: Details for the vulnerable package. readOnly: true @@ -16490,7 +16725,7 @@ paths: - direct - transitive - - security_advisory: &549 + security_advisory: &550 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -16521,13 +16756,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &106 + items: &112 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *103 + package: *109 severity: type: string description: The severity of the vulnerability. @@ -16595,8 +16830,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *104 - epss: *105 + cvss_severities: *110 + epss: *111 cwes: type: array description: Details for the advisory pertaining to Common @@ -16696,12 +16931,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *106 - url: *107 - html_url: *108 - created_at: *109 - updated_at: *110 - dismissed_at: *111 + security_vulnerability: *112 + url: *113 + html_url: *114 + created_at: *115 + updated_at: *116 + dismissed_at: *117 dismissed_by: anyOf: - type: 'null' @@ -16725,8 +16960,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *112 - auto_dismissed_at: &550 + fixed_at: *118 + auto_dismissed_at: &551 type: - string - 'null' @@ -16734,7 +16969,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - repository: *101 + repository: *107 required: - number - state @@ -16753,7 +16988,7 @@ paths: - repository additionalProperties: false examples: - default: &289 + default: &292 value: - number: 2 state: dismissed @@ -17170,7 +17405,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: - *39 - - &248 + - &254 name: username description: The handle for the GitHub user account. in: path @@ -17192,9 +17427,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *113 + items: *119 examples: - default: *114 + default: *120 '500': *89 '401': *23 '403': *27 @@ -17237,7 +17472,7 @@ paths: type: integer network_configurations: type: array - items: &115 + items: &121 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -17282,7 +17517,7 @@ paths: - name - created_on examples: - default: &393 + default: &396 value: total_count: 2 network_configurations: @@ -17360,9 +17595,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: &116 + default: &122 value: id: 123456789ABCDEF name: My network configuration @@ -17389,7 +17624,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: - *39 - - &117 + - &123 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -17401,9 +17636,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 headers: Link: *38 x-github: @@ -17423,7 +17658,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: - *39 - - *117 + - *123 requestBody: required: true content: @@ -17462,9 +17697,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17482,7 +17717,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: - *39 - - *117 + - *123 responses: '204': description: Response @@ -17505,7 +17740,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: - *39 - - &394 + - &397 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17517,7 +17752,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &398 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17556,7 +17791,7 @@ paths: - subnet_id - region examples: - default: &396 + default: &399 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -17591,7 +17826,7 @@ paths: application/json: schema: type: array - items: &118 + items: &124 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -17667,7 +17902,7 @@ paths: - property_name - value_type examples: - default: &119 + default: &125 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17724,7 +17959,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *118 + items: *124 minItems: 1 maxItems: 100 required: @@ -17754,9 +17989,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -17780,7 +18015,7 @@ paths: parameters: - *39 - *74 - - &120 + - &126 name: custom_property_name description: The custom property name in: path @@ -17792,9 +18027,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: &121 + default: &127 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17827,15 +18062,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *39 - - *120 + - *126 responses: '200': description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -17857,12 +18092,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: - *39 - - *120 + - *126 requestBody: required: true content: application/json: - schema: &361 + schema: &364 title: Custom Property Set Payload description: Custom property set payload type: object @@ -17935,9 +18170,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -17959,9 +18194,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *39 - - *120 + - *126 responses: - '204': *122 + '204': *128 '403': *27 '404': *6 x-github: @@ -18001,7 +18236,7 @@ paths: - push - repository default: branch - enforcement: &129 + enforcement: &135 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -18014,7 +18249,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &130 + items: &136 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -18053,7 +18288,7 @@ paths: - always - pull_request default: always - conditions: &153 + conditions: &159 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -18067,7 +18302,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &123 + - &129 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -18093,7 +18328,7 @@ paths: type: string required: - organization_name - - &126 + - &132 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -18122,7 +18357,7 @@ paths: is prevented. required: - repository_name - - &125 + - &131 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -18150,8 +18385,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *123 - - &128 + - *129 + - &134 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -18164,7 +18399,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &124 + items: &130 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -18195,16 +18430,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *124 + items: *130 required: - repository_property - - *125 + - *131 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &127 + - &133 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -18221,25 +18456,25 @@ paths: type: integer required: - organization_id - - *126 - - *125 + - *132 + - *131 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *127 - - *128 - - *125 + - *133 + - *134 + - *131 rules: type: array description: An array of rules within the ruleset. - items: &154 + items: &160 title: Repository Rule type: object description: A repository rule. oneOf: - - &131 + - &137 title: creation description: Only allow users with bypass permission to create matching refs. @@ -18251,7 +18486,7 @@ paths: type: string enum: - creation - - &132 + - &138 title: update description: Only allow users with bypass permission to update matching refs. @@ -18272,7 +18507,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &133 + - &139 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -18284,7 +18519,7 @@ paths: type: string enum: - deletion - - &134 + - &140 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -18296,7 +18531,7 @@ paths: type: string enum: - required_linear_history - - &135 + - &141 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -18320,7 +18555,7 @@ paths: type: string required: - required_deployment_environments - - &136 + - &142 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -18332,7 +18567,7 @@ paths: type: string enum: - required_signatures - - &137 + - &143 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. @@ -18392,7 +18627,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &138 + - &144 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -18439,7 +18674,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &139 + - &145 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -18451,7 +18686,7 @@ paths: type: string enum: - non_fast_forward - - &140 + - &146 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -18487,7 +18722,7 @@ paths: required: - operator - pattern - - &141 + - &147 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -18523,7 +18758,7 @@ paths: required: - operator - pattern - - &142 + - &148 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -18559,7 +18794,7 @@ paths: required: - operator - pattern - - &143 + - &149 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -18595,7 +18830,7 @@ paths: required: - operator - pattern - - &144 + - &150 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -18631,7 +18866,7 @@ paths: required: - operator - pattern - - &145 + - &151 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -18655,7 +18890,7 @@ paths: type: string required: - restricted_file_paths - - &146 + - &152 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -18679,7 +18914,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &147 + - &153 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -18702,7 +18937,7 @@ paths: type: string required: - restricted_file_extensions - - &148 + - &154 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -18726,7 +18961,7 @@ paths: maximum: 100 required: - max_file_size - - &149 + - &155 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -18775,7 +19010,7 @@ paths: - repository_id required: - workflows - - &150 + - &156 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -18861,7 +19096,7 @@ paths: description: Response content: application/json: - schema: &151 + schema: &157 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -18896,11 +19131,11 @@ paths: source: type: string description: The name of the source - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 + items: *136 current_user_can_bypass: type: string description: |- @@ -18931,8 +19166,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *125 - - &366 + - *131 + - &369 title: Organization ruleset conditions type: object description: |- @@ -18946,14 +19181,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *125 - - *126 + - *131 + - *132 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *125 + - *131 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -18975,23 +19210,23 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *125 - - *128 + - *131 + - *134 type: - 'null' - object rules: type: array - items: &667 + items: &668 title: Repository Rule type: object description: A repository rule. oneOf: - - *131 - - *132 - - *133 - - *134 - - &665 + - *137 + - *138 + - *139 + - *140 + - &666 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -19069,12 +19304,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *135 - - *136 - - *137 - - *138 - - *139 - - *140 - *141 - *142 - *143 @@ -19085,6 +19314,12 @@ paths: - *148 - *149 - *150 + - *151 + - *152 + - *153 + - *154 + - *155 + - *156 created_at: type: string format: date-time @@ -19092,7 +19327,7 @@ paths: type: string format: date-time examples: - default: &152 + default: &158 value: id: 21 name: super cool ruleset @@ -19151,9 +19386,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *152 + default: *158 '404': *6 '500': *89 x-github: @@ -19197,16 +19432,16 @@ paths: - tag - push - repository - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *153 + items: *136 + conditions: *159 rules: description: An array of rules within the ruleset. type: array - items: *154 + items: *160 examples: default: value: @@ -19230,9 +19465,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *152 + default: *158 '404': *6 '500': *89 x-github: @@ -19294,7 +19529,7 @@ paths: application/json: schema: type: array - items: &155 + items: &161 title: Ruleset version type: object description: The historical version of a ruleset @@ -19318,7 +19553,7 @@ paths: type: string format: date-time examples: - default: &369 + default: &372 value: - version_id: 3 actor: @@ -19371,9 +19606,9 @@ paths: description: Response content: application/json: - schema: &370 + schema: &373 allOf: - - *155 + - *161 - type: object required: - state @@ -19426,7 +19661,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &371 + - &374 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19437,7 +19672,7 @@ paths: enum: - open - resolved - - &372 + - &375 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19447,7 +19682,7 @@ paths: required: false schema: type: string - - &373 + - &376 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19456,7 +19691,7 @@ paths: required: false schema: type: string - - &374 + - &377 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. @@ -19468,11 +19703,11 @@ paths: - created - updated default: created - - *92 + - *98 - *17 - - *90 - - *91 - - &375 + - *96 + - *97 + - &378 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19481,7 +19716,7 @@ paths: required: false schema: type: string - - &376 + - &379 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19490,7 +19725,7 @@ paths: schema: type: boolean default: false - - &377 + - &380 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19499,7 +19734,7 @@ paths: schema: type: boolean default: false - - &378 + - &381 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19515,30 +19750,30 @@ paths: application/json: schema: type: array - items: &379 + items: &382 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &679 + state: &680 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: &680 + resolution: &681 type: - string - 'null' @@ -19572,7 +19807,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *101 + repository: *107 push_protection_bypassed: type: - boolean @@ -19645,14 +19880,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &681 + - &682 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &683 + - &684 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -19709,7 +19944,7 @@ paths: - blob_url - commit_sha - commit_url - - &684 + - &685 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. @@ -19770,7 +20005,7 @@ paths: - page_url - commit_sha - commit_url - - &685 + - &686 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -19785,7 +20020,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &686 + - &687 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -19800,7 +20035,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &687 + - &688 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -19815,7 +20050,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &688 + - &689 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -19830,7 +20065,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &689 + - &690 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -19845,7 +20080,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &690 + - &691 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -19860,7 +20095,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &691 + - &692 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. @@ -19875,7 +20110,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &692 + - &693 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. @@ -19890,7 +20125,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &693 + - &694 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. @@ -19905,7 +20140,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &694 + - &695 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. @@ -19920,7 +20155,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &695 + - &696 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 @@ -19941,7 +20176,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &380 + default: &383 value: number: 2 created_at: '2020-11-06T18:48:51Z' @@ -20100,7 +20335,7 @@ paths: headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20131,13 +20366,13 @@ paths: description: Response content: application/json: - schema: &381 + schema: &384 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: &158 + pattern_config_version: &164 type: - string - 'null' @@ -20147,7 +20382,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &157 + items: &163 type: object properties: token_type: @@ -20216,9 +20451,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *157 + items: *163 examples: - default: &382 + default: &385 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -20273,7 +20508,7 @@ paths: schema: type: object properties: - pattern_config_version: *158 + pattern_config_version: *164 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -20299,7 +20534,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *158 + custom_pattern_version: *164 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -20335,7 +20570,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 "/enterprises/{enterprise}/settings/billing/actions": get: @@ -20362,7 +20597,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &387 type: object properties: total_minutes_used: @@ -20432,7 +20667,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &385 + default: &388 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20463,7 +20698,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &386 + - &389 name: advanced_security_product in: query description: | @@ -20483,7 +20718,7 @@ paths: description: Success content: application/json: - schema: &387 + schema: &390 type: object properties: total_advanced_security_committers: @@ -20546,7 +20781,7 @@ paths: required: - repositories examples: - default: &388 + default: &391 value: total_advanced_security_committers: 2 total_count: 2 @@ -20657,7 +20892,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20787,7 +21022,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *39 - - &161 + - &167 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -20799,7 +21034,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &159 + schema: &165 type: object properties: id: @@ -20839,7 +21074,7 @@ paths: - name - resources examples: - default: &160 + default: &166 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -20853,7 +21088,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20903,15 +21138,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *159 + schema: *165 examples: - default: *160 + default: *166 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20929,7 +21164,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *39 - - *161 + - *167 responses: '200': description: Response when deleting a cost center @@ -20968,7 +21203,7 @@ paths: '404': *6 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20989,7 +21224,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *39 - - *161 + - *167 requestBody: required: true content: @@ -21060,9 +21295,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *27 - '409': *100 + '409': *106 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21082,7 +21317,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *39 - - *161 + - *167 requestBody: required: true content: @@ -21129,7 +21364,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21160,7 +21395,7 @@ paths: description: Response content: application/json: - schema: &389 + schema: &392 type: object properties: total_gigabytes_bandwidth_used: @@ -21178,7 +21413,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &390 + default: &393 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -21213,7 +21448,7 @@ paths: description: Response content: application/json: - schema: &391 + schema: &394 type: object properties: days_left_in_billing_cycle: @@ -21231,7 +21466,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &392 + default: &395 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -21256,7 +21491,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *39 - - &195 + - &201 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, @@ -21265,7 +21500,7 @@ paths: required: false schema: type: integer - - &196 + - &202 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 @@ -21274,7 +21509,7 @@ paths: required: false schema: type: integer - - &197 + - &203 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 @@ -21283,7 +21518,7 @@ paths: required: false schema: type: integer - - &198 + - &204 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 @@ -21304,7 +21539,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &199 + schema: &205 type: object properties: usageItems: @@ -21357,7 +21592,7 @@ paths: - netAmount - organizationName examples: - default: &200 + default: &206 value: usageItems: - date: '2023-08-01' @@ -21374,7 +21609,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21445,13 +21680,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -21540,7 +21775,7 @@ paths: application/json: schema: type: array - items: &190 + items: &196 title: Event description: Event type: object @@ -21551,7 +21786,7 @@ paths: type: - string - 'null' - actor: &165 + actor: &171 title: Actor description: Actor type: object @@ -21592,13 +21827,13 @@ paths: - id - name - url - org: *165 + org: *171 payload: type: object properties: action: type: string - issue: &179 + issue: &185 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -21719,7 +21954,7 @@ paths: milestone: anyOf: - type: 'null' - - &355 + - &358 title: Milestone description: A collection of related issues and pull requests. @@ -21891,7 +22126,7 @@ paths: timeline_url: type: string format: uri - type: &316 + type: &319 title: Issue Type description: The type of issue. type: @@ -21949,7 +22184,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &166 + author_association: &172 title: author_association type: string description: How the author is associated with the repository. @@ -21964,7 +22199,7 @@ paths: - OWNER examples: - OWNER - reactions: &167 + reactions: &173 title: Reaction Rollup type: object properties: @@ -22000,7 +22235,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &739 + sub_issues_summary: &740 title: Sub-issues Summary type: object properties: @@ -22021,7 +22256,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &740 + issue_dependencies_summary: &741 title: Issue Dependencies Summary type: object properties: @@ -22040,7 +22275,7 @@ paths: - total_blocking issue_field_values: type: array - items: &741 + items: &742 title: Issue Field Value description: A value assigned to an issue field type: object @@ -22135,7 +22370,7 @@ paths: - user - created_at - updated_at - comment: &605 + comment: &606 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -22185,12 +22420,12 @@ paths: issue_url: type: string format: uri - author_association: *166 + author_association: *172 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - id - node_id @@ -22287,7 +22522,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22377,7 +22612,7 @@ paths: _links: type: object properties: - timeline: &168 + timeline: &174 title: Link With Type description: Hypermedia Link with Type type: object @@ -22389,17 +22624,17 @@ paths: required: - href - type - user: *168 - security_advisories: *168 - current_user: *168 - current_user_public: *168 - current_user_actor: *168 - current_user_organization: *168 + user: *174 + security_advisories: *174 + current_user: *174 + current_user_public: *174 + current_user_actor: *174 + current_user_organization: *174 current_user_organizations: type: array - items: *168 - repository_discussions: *168 - repository_discussions_category: *168 + items: *174 + repository_discussions: *174 + repository_discussions_category: *174 required: - timeline - user @@ -22461,7 +22696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *169 + - *175 - *17 - *19 responses: @@ -22471,7 +22706,7 @@ paths: application/json: schema: type: array - items: &170 + items: &176 title: Base Gist description: Base Gist type: object @@ -22568,7 +22803,7 @@ paths: - created_at - updated_at examples: - default: &171 + default: &177 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -22692,7 +22927,7 @@ paths: description: Response content: application/json: - schema: &172 + schema: &178 title: Gist Simple description: Gist Simple type: object @@ -22710,7 +22945,7 @@ paths: url: type: string format: uri - user: &753 + user: &754 title: Public User description: Public User type: object @@ -23084,7 +23319,7 @@ paths: truncated: type: boolean examples: - default: &173 + default: &179 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -23188,7 +23423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *169 + - *175 - *17 - *19 responses: @@ -23198,9 +23433,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '422': *15 @@ -23222,7 +23457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *169 + - *175 - *17 - *19 responses: @@ -23232,9 +23467,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '401': *23 @@ -23262,7 +23497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &174 + - &180 name: gist_id description: The unique identifier of the gist. in: path @@ -23274,10 +23509,10 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - default: *173 - '403': &177 + default: *179 + '403': &183 description: Forbidden Gist content: application/json: @@ -23326,7 +23561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *174 + - *180 requestBody: required: true content: @@ -23390,9 +23625,9 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - updateGist: *173 + updateGist: *179 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -23550,7 +23785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -23579,7 +23814,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *174 + - *180 - *17 - *19 responses: @@ -23589,7 +23824,7 @@ paths: application/json: schema: type: array - items: &175 + items: &181 title: Gist Comment description: A comment made to a gist. type: object @@ -23627,7 +23862,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *166 + author_association: *172 required: - url - id @@ -23692,7 +23927,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *174 + - *180 requestBody: required: true content: @@ -23718,9 +23953,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: &176 + default: &182 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -23778,8 +24013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *174 - - &178 + - *180 + - &184 name: comment_id description: The unique identifier of the comment. in: path @@ -23792,12 +24027,12 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: *176 + default: *182 '304': *35 '404': *6 - '403': *177 + '403': *183 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23819,8 +24054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *174 - - *178 + - *180 + - *184 requestBody: required: true content: @@ -23846,9 +24081,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: *176 + default: *182 '404': *6 x-github: githubCloudOnly: false @@ -23865,8 +24100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *174 - - *178 + - *180 + - *184 responses: '204': description: Response @@ -23889,7 +24124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *174 + - *180 - *17 - *19 responses: @@ -23990,7 +24225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *174 + - *180 - *17 - *19 responses: @@ -24000,7 +24235,7 @@ paths: application/json: schema: type: array - items: *172 + items: *178 examples: default: value: @@ -24065,13 +24300,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *174 + - *180 responses: '201': description: Response content: application/json: - schema: *170 + schema: *176 examples: default: value: @@ -24142,7 +24377,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *174 + - *180 responses: '204': description: Response if gist is starred @@ -24172,7 +24407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -24194,7 +24429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -24223,7 +24458,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *174 + - *180 - name: sha in: path required: true @@ -24234,9 +24469,9 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - default: *173 + default: *179 '422': *15 '404': *6 '403': *27 @@ -24605,7 +24840,7 @@ paths: - closed - all default: open - - &319 + - &322 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24623,8 +24858,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - name: collab in: query required: false @@ -24654,9 +24889,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: &320 + default: &323 value: - id: 1 node_id: MDU6SXNzdWUx @@ -24936,7 +25171,7 @@ paths: application/json: schema: type: array - items: *180 + items: *186 examples: default: value: @@ -25234,7 +25469,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &181 + X-CommonMarker-Version: &187 example: 0.17.4 schema: type: string @@ -25289,7 +25524,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *181 + X-CommonMarker-Version: *187 content: text/html: schema: @@ -25318,7 +25553,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: - - &184 + - &190 name: account_id description: account_id parameter in: path @@ -25330,7 +25565,7 @@ paths: description: Response content: application/json: - schema: &183 + schema: &189 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -25364,7 +25599,7 @@ paths: - 'null' id: type: integer - plan: &182 + plan: &188 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -25467,7 +25702,7 @@ paths: - 'null' updated_at: type: string - plan: *182 + plan: *188 required: - url - id @@ -25475,7 +25710,7 @@ paths: - login - marketplace_purchase examples: - default: &185 + default: &191 value: url: https://api.github.com/orgs/github type: Organization @@ -25560,9 +25795,9 @@ paths: application/json: schema: type: array - items: *182 + items: *188 examples: - default: &186 + default: &192 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -25602,14 +25837,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &187 + - &193 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &188 + - &194 name: sort description: The property to sort the results by. in: query @@ -25639,9 +25874,9 @@ paths: application/json: schema: type: array - items: *183 + items: *189 examples: - default: &189 + default: &195 value: - url: https://api.github.com/orgs/github type: Organization @@ -25715,15 +25950,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: - - *184 + - *190 responses: '200': description: Response content: application/json: - schema: *183 + schema: *189 examples: - default: *185 + default: *191 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -25755,9 +25990,9 @@ paths: application/json: schema: type: array - items: *182 + items: *188 examples: - default: *186 + default: *192 headers: Link: *38 '401': *23 @@ -25780,8 +26015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *187 - - *188 + - *193 + - *194 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -25801,9 +26036,9 @@ paths: application/json: schema: type: array - items: *183 + items: *189 examples: - default: *189 + default: *195 headers: Link: *38 '401': *23 @@ -26068,14 +26303,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: - - &416 + - &419 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &417 + - &420 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -26092,7 +26327,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -26146,7 +26381,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &430 + '301': &433 description: Moved permanently content: application/json: @@ -26168,7 +26403,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &634 + - &635 name: all description: If `true`, show notifications marked as read. in: query @@ -26176,7 +26411,7 @@ paths: schema: type: boolean default: false - - &635 + - &636 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -26185,8 +26420,8 @@ paths: schema: type: boolean default: false - - *169 - - &636 + - *175 + - &637 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: @@ -26211,14 +26446,14 @@ paths: application/json: schema: type: array - items: &191 + items: &197 title: Thread description: Thread type: object properties: id: type: string - repository: &226 + repository: &232 title: Minimal Repository description: Minimal Repository type: object @@ -26557,7 +26792,7 @@ paths: type: boolean examples: - false - security_and_analysis: &363 + security_and_analysis: &366 type: - object - 'null' @@ -26730,7 +26965,7 @@ paths: - url - subscription_url examples: - default: &637 + default: &638 value: - id: '1' repository: @@ -26896,7 +27131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &192 + - &198 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 @@ -26910,7 +27145,7 @@ paths: description: Response content: application/json: - schema: *191 + schema: *197 examples: default: value: @@ -27013,7 +27248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *192 + - *198 responses: '205': description: Reset Content @@ -27036,7 +27271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *192 + - *198 responses: '204': description: No content @@ -27059,13 +27294,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: - - *192 + - *198 responses: '200': description: Response content: application/json: - schema: &193 + schema: &199 title: Thread Subscription description: Thread Subscription type: object @@ -27109,7 +27344,7 @@ paths: - url - subscribed examples: - default: &194 + default: &200 value: subscribed: true ignored: false @@ -27140,7 +27375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *192 + - *198 requestBody: required: false content: @@ -27161,9 +27396,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *199 examples: - default: *194 + default: *200 '304': *35 '403': *27 '401': *23 @@ -27186,7 +27421,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *192 + - *198 responses: '204': description: Response @@ -27283,7 +27518,7 @@ paths: type: array items: *60 examples: - default: &769 + default: &770 value: - login: github id: 1 @@ -27348,7 +27583,7 @@ paths: - 3 custom_roles: type: array - items: &273 + items: &276 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -27397,7 +27632,7 @@ paths: - created_at - updated_at examples: - default: &274 + default: &277 value: id: 8030 name: Security Engineer @@ -27490,7 +27725,7 @@ paths: items: anyOf: - type: 'null' - - *101 + - *107 additionalProperties: false examples: default: @@ -27710,22 +27945,22 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *74 - - *195 - - *196 - - *197 - - *198 + - *201 + - *202 + - *203 + - *204 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *199 + schema: *205 examples: - default: *200 + default: *206 '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27757,7 +27992,7 @@ paths: description: Response content: application/json: - schema: &201 + schema: &207 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -28167,7 +28402,7 @@ paths: - updated_at - archived_at examples: - default-response: &202 + default-response: &208 value: login: github id: 1 @@ -28493,18 +28728,18 @@ paths: description: Response content: application/json: - schema: *201 + schema: *207 examples: - default: *202 + default: *208 '422': description: Validation failed content: application/json: schema: oneOf: - - *203 - - *204 - '409': *100 + - *209 + - *210 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28558,9 +28793,9 @@ paths: description: Response content: application/json: - schema: *205 + schema: *211 examples: - default: *206 + default: *212 headers: Link: *38 x-github: @@ -28601,7 +28836,7 @@ paths: type: integer repository_cache_usages: type: array - items: &435 + items: &438 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -28679,7 +28914,7 @@ paths: type: array items: *40 examples: - default: *207 + default: *213 headers: Link: *38 x-github: @@ -28863,9 +29098,9 @@ paths: description: Response content: application/json: - schema: *208 + schema: *214 examples: - default: *209 + default: *215 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28901,7 +29136,7 @@ paths: type: array items: *43 examples: - default: *210 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29084,7 +29319,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &211 + schema: &217 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -29098,7 +29333,7 @@ paths: required: - include_claim_keys examples: - default: &212 + default: &218 value: include_claim_keys: - repo @@ -29125,15 +29360,15 @@ paths: required: true content: application/json: - schema: *211 + schema: *217 examples: - default: *212 + default: *218 responses: '201': description: Empty response content: application/json: - schema: &237 + schema: &243 title: Empty Object description: An object without any properties. type: object @@ -29172,7 +29407,7 @@ paths: schema: type: object properties: - enabled_repositories: &214 + enabled_repositories: &220 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -29186,7 +29421,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *47 - selected_actions_url: *213 + selected_actions_url: *219 sha_pinning_required: *48 required: - enabled_repositories @@ -29228,7 +29463,7 @@ paths: schema: type: object properties: - enabled_repositories: *214 + enabled_repositories: *220 allowed_actions: *47 sha_pinning_required: *48 required: @@ -29264,7 +29499,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *221 examples: response: summary: Example response @@ -29295,7 +29530,7 @@ paths: required: true content: application/json: - schema: *216 + schema: *222 examples: application/json: value: @@ -29305,7 +29540,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29333,7 +29568,7 @@ paths: application/json: schema: *49 examples: - default: *217 + default: *223 '404': *6 x-github: enabledForGitHubApps: true @@ -29390,7 +29625,7 @@ paths: description: Response content: application/json: - schema: *218 + schema: *224 examples: default: *50 '403': *27 @@ -29415,7 +29650,7 @@ paths: required: true content: application/json: - schema: *219 + schema: *225 examples: default: *50 responses: @@ -29467,7 +29702,7 @@ paths: type: array items: *65 examples: - default: &221 + default: &227 value: total_count: 1 repositories: @@ -29652,7 +29887,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - &220 + - &226 name: repository_id description: The unique identifier of the repository. in: path @@ -29681,7 +29916,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - *220 + - *226 responses: '204': description: Response @@ -29840,7 +30075,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29877,7 +30112,7 @@ paths: type: array items: *65 examples: - default: *221 + default: *227 '403': *27 '404': *6 x-github: @@ -29946,13 +30181,13 @@ paths: 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: - *74 - - *220 + - *226 responses: '204': description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29973,13 +30208,13 @@ paths: 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: - *74 - - *220 + - *226 responses: '204': description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -30007,7 +30242,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *228 examples: default: *56 x-github: @@ -30041,7 +30276,7 @@ paths: required: false content: application/json: - schema: *223 + schema: *229 examples: default: *56 x-github: @@ -30088,7 +30323,7 @@ paths: type: number runner_groups: type: array - items: &224 + items: &230 type: object properties: id: @@ -30278,9 +30513,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: - default: &225 + default: &231 value: id: 2 name: octo-runner-group @@ -30322,7 +30557,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: default: value: @@ -30415,9 +30650,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: - default: *225 + default: *231 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -30481,7 +30716,7 @@ paths: type: array items: *40 examples: - default: *207 + default: *213 headers: Link: *38 x-github: @@ -30522,9 +30757,9 @@ paths: type: number repositories: type: array - items: *226 + items: *232 examples: - default: &756 + default: &757 value: total_count: 1 repositories: @@ -30823,7 +31058,7 @@ paths: parameters: - *74 - *59 - - *220 + - *226 responses: '204': description: Response @@ -30847,7 +31082,7 @@ paths: parameters: - *74 - *59 - - *220 + - *226 responses: '204': description: Response @@ -31065,9 +31300,9 @@ paths: application/json: schema: type: array - items: *227 + items: *233 examples: - default: *228 + default: *234 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31132,10 +31367,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *229 + '201': *235 '404': *6 '422': *7 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31171,7 +31406,7 @@ paths: application/json: schema: *66 examples: - default: *230 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31207,7 +31442,7 @@ paths: application/json: schema: *66 examples: - default: *231 + default: *237 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31238,7 +31473,7 @@ paths: application/json: schema: *63 examples: - default: *232 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31413,7 +31648,7 @@ paths: - *74 - *62 responses: - '200': *233 + '200': *239 '404': *6 x-github: githubCloudOnly: false @@ -31442,7 +31677,7 @@ paths: parameters: - *74 - *62 - - *234 + - *240 responses: '200': *68 '404': *6 @@ -31487,7 +31722,7 @@ paths: type: integer secrets: type: array - items: &235 + items: &241 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -31568,7 +31803,7 @@ paths: description: Response content: application/json: - schema: &455 + schema: &458 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -31603,7 +31838,7 @@ paths: - key_id - key examples: - default: &456 + default: &459 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31629,7 +31864,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - *74 - - &236 + - &242 name: secret_name description: The name of the secret. in: path @@ -31641,7 +31876,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *241 examples: default: value: @@ -31672,7 +31907,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -31729,7 +31964,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -31756,7 +31991,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -31783,7 +32018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -31801,9 +32036,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: &240 + default: &246 value: total_count: 1 repositories: @@ -31896,7 +32131,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -31949,7 +32184,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -31983,7 +32218,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -32016,7 +32251,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *74 - - &440 + - &443 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)." @@ -32040,7 +32275,7 @@ paths: type: integer variables: type: array - items: &238 + items: &244 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -32178,7 +32413,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -32204,7 +32439,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - *74 - - &239 + - &245 name: name description: The name of the variable. in: path @@ -32216,7 +32451,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *244 examples: default: value: @@ -32247,7 +32482,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - *74 - - *239 + - *245 requestBody: required: true content: @@ -32310,7 +32545,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - *74 - - *239 + - *245 responses: '204': description: Response @@ -32337,7 +32572,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *239 + - *245 - *19 - *17 responses: @@ -32355,9 +32590,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 '409': description: Response when the visibility of the variable is not set to `selected` @@ -32384,7 +32619,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *239 + - *245 requestBody: required: true content: @@ -32434,7 +32669,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *239 + - *245 - name: repository_id in: path required: true @@ -32469,7 +32704,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *239 + - *245 - name: repository_id in: path required: true @@ -32527,7 +32762,7 @@ paths: required: true content: application/json: - schema: *241 + schema: *247 examples: default: *72 parameters: @@ -32800,8 +33035,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations-by-bulk-subject-digests parameters: - *17 - - *90 - - *91 + - *96 + - *97 - *74 requestBody: required: true @@ -32825,12 +33060,12 @@ paths: required: - subject_digests examples: - default: &788 + default: &789 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &789 + withPredicateType: &790 value: subject_digests: - sha256:abc123 @@ -32889,7 +33124,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &790 + default: &791 value: attestations_subject_digests: - sha256:abc: @@ -33130,8 +33365,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations parameters: - *17 - - *90 - - *91 + - *96 + - *97 - *74 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 @@ -33183,7 +33418,7 @@ paths: bundle_url: type: string examples: - default: &469 + default: &472 value: attestations: - bundle: @@ -33309,10 +33544,10 @@ paths: required: false schema: type: string - - *242 - - *243 - - *244 - - *245 + - *248 + - *249 + - *250 + - *251 - *17 responses: '200': @@ -33321,9 +33556,9 @@ paths: application/json: schema: type: array - items: *246 + items: *252 examples: - default: *247 + default: *253 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -33352,7 +33587,7 @@ paths: type: array items: *4 examples: - default: &321 + default: &324 value: - login: octocat id: 1 @@ -33391,7 +33626,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: If the user is blocked @@ -33417,7 +33652,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -33438,7 +33673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -33465,16 +33700,16 @@ paths: subcategory: bypass-requests parameters: - *74 - - &255 + - &257 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *249 - - *250 - - *251 - - *252 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -33484,9 +33719,9 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: - default: *254 + default: *256 '404': *6 '500': *89 "/orgs/{org}/bypass-requests/secret-scanning": @@ -33510,11 +33745,11 @@ paths: subcategory: delegated-bypass parameters: - *74 - - *255 - - *249 - - *250 - - *251 - - *252 + - *257 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -33524,203 +33759,9 @@ paths: application/json: schema: type: array - items: &486 - title: Secret scanning bypass request - description: A bypass request made by a user asking to be exempted - from push protection in this repository. - type: object - properties: - id: - type: integer - description: The unique identifier of the bypass request. - number: - type: integer - description: The number uniquely identifying the bypass request - within its repository. - repository: - type: object - description: The repository the bypass request is for. - properties: - id: - type: integer - description: The ID of the repository the bypass request - is for. - name: - type: string - description: The name of the repository the bypass request - is for. - full_name: - type: string - description: The full name of the repository the bypass - request is for. - organization: - type: object - description: The organization associated with the repository - the bypass request is for. - properties: - id: - type: integer - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the bypass. - properties: - actor_id: - type: integer - description: The ID of the GitHub user who requested the - bypass. - actor_name: - type: string - description: The name of the GitHub user who requested the - bypass. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the push rules that are being requested - to be bypassed. - items: - type: object - properties: - secret_type: - type: string - description: The type of secret that secret scanning detected. - bypass_reason: - type: string - enum: - - used_in_tests - - false_positive - - fix_later - description: The reason the bypass was requested. - path: - type: string - description: The path in the repo where the secret was - located during the request. - branch: - type: string - description: The branch in the repo where the secret was - located during the request. - resource_identifier: - type: string - description: The unique identifier for the request type of the - bypass request. For example, a commit SHA. - examples: - - 827efc6d56897b048c772eb4087f854f46256132 - status: - type: string - description: The status of the bypass request. - enum: - - pending - - denied - - approved - - cancelled - - completed - - expired - - open - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the bypass request. - expires_at: - type: string - format: date-time - description: The date and time the bypass request will expire. - created_at: - type: string - format: date-time - description: The date and time the bypass request was created. - responses: - type: - - array - - 'null' - description: The responses to the bypass request. - items: *256 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: - type: string - description: The URL to view the bypass request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/exemptions/1 + items: *258 examples: - default: &487 - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: used_in_tests - path: "/tests/README.md:16:0" - branch: refs/heads/main - resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 - status: denied - requester_comment: Test token used in the readme as an example - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: https://github.com/octo-org/smile/exemptions/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: fix_later - path: README.md:17:0 - branch: refs/heads/my-branch - resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 - status: denied - requester_comment: Token is already revoked, I'll remove it later - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 - html_url: https://github.com/octo-org/smile/exemptions/2 + default: *259 '404': *6 '500': *89 "/orgs/{org}/campaigns": @@ -33742,12 +33783,12 @@ paths: - *74 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &258 + schema: &261 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -33773,7 +33814,7 @@ paths: application/json: schema: type: array - items: &259 + items: &262 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -33804,7 +33845,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *257 + items: *260 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -33823,7 +33864,7 @@ paths: - string - 'null' format: date-time - state: *258 + state: *261 contact_link: description: The contact link of the campaign. type: @@ -33921,7 +33962,7 @@ paths: headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34040,9 +34081,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: &260 + default: &263 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -34091,7 +34132,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34125,16 +34166,16 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: *260 + default: *263 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34205,7 +34246,7 @@ paths: - string - 'null' format: uri - state: *258 + state: *261 examples: default: value: @@ -34215,9 +34256,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: *260 + default: *263 '400': description: Bad Request content: @@ -34229,7 +34270,7 @@ paths: content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34261,7 +34302,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34284,19 +34325,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *74 - - *261 - - *262 - - *90 - - *91 + - *264 + - *265 + - *96 + - *97 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *263 + schema: *266 - name: sort description: The property by which to sort the results. in: query @@ -34312,7 +34353,7 @@ paths: be returned. in: query required: false - schema: &497 + schema: &498 type: string description: Severity of a code scanning alert. enum: @@ -34330,13 +34371,13 @@ paths: application/json: schema: type: array - items: *264 + items: *267 examples: - default: *265 + default: *268 headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34377,8 +34418,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -34386,7 +34427,7 @@ paths: application/json: schema: type: array - items: *96 + items: *102 examples: default: value: @@ -34547,7 +34588,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *266 + code_scanning_options: *269 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -34556,7 +34597,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -34688,9 +34729,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *96 + schema: *102 examples: - default: *267 + default: *270 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34718,9 +34759,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '304': *35 '403': *27 '404': *6 @@ -34772,11 +34813,11 @@ paths: - 32 - 91 responses: - '204': *122 + '204': *128 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34799,15 +34840,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - *74 - - *98 + - *104 responses: '200': description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *267 + default: *270 '304': *35 '403': *27 '404': *6 @@ -34832,7 +34873,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -34911,7 +34952,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -35029,7 +35070,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *96 + schema: *102 examples: default: value: @@ -35089,13 +35130,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - *74 - - *98 + - *104 responses: - '204': *122 + '204': *128 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35120,7 +35161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -35184,7 +35225,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -35224,12 +35265,12 @@ paths: - none - private_and_internal - public - configuration: *96 + configuration: *102 examples: default: value: default_for_new_repos: all - configuration: *267 + configuration: *270 '403': *27 '404': *6 x-github: @@ -35254,7 +35295,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - *74 - - *98 + - *104 - 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)." @@ -35263,8 +35304,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -35282,13 +35323,13 @@ paths: application/json: schema: type: array - items: *270 + items: *273 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *271 + repository: *274 '403': *27 '404': *6 x-github: @@ -35328,7 +35369,7 @@ paths: type: integer codespaces: type: array - items: &322 + items: &325 type: object title: Codespace description: A codespace. @@ -35359,11 +35400,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *226 + repository: *232 machine: anyOf: - type: 'null' - - &526 + - &527 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -35650,7 +35691,7 @@ paths: - pulls_url - recent_folders examples: - default: &323 + default: &326 value: total_count: 3 codespaces: @@ -36274,7 +36315,7 @@ paths: type: integer secrets: type: array - items: &272 + items: &275 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -36315,7 +36356,7 @@ paths: - updated_at - visibility examples: - default: &527 + default: &528 value: total_count: 2 secrets: @@ -36353,7 +36394,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -36388,7 +36429,7 @@ paths: - key_id - key examples: - default: &529 + default: &530 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -36412,15 +36453,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &531 + default: &532 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -36448,7 +36489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -36503,7 +36544,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -36530,7 +36571,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -36556,7 +36597,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -36574,9 +36615,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -36599,7 +36640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -36650,7 +36691,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -36684,7 +36725,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -36887,9 +36928,9 @@ paths: currently being billed. seats: type: array - items: *113 + items: *119 examples: - default: *114 + default: *120 headers: Link: *38 '500': *89 @@ -37273,13 +37314,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37507,7 +37548,7 @@ paths: - 3 custom_roles: type: array - items: *273 + items: *276 examples: default: value: @@ -37599,7 +37640,7 @@ paths: required: true content: application/json: - schema: &276 + schema: &279 type: object properties: name: @@ -37641,9 +37682,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37668,7 +37709,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - *74 - - &275 + - &278 name: role_id description: The unique identifier of the role. in: path @@ -37680,9 +37721,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '404': *6 x-github: githubCloudOnly: true @@ -37705,12 +37746,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: application/json: - schema: &277 + schema: &280 type: object properties: name: @@ -37749,9 +37790,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37776,7 +37817,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -37809,7 +37850,7 @@ paths: required: true content: application/json: - schema: *276 + schema: *279 examples: default: value: @@ -37823,9 +37864,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37856,15 +37897,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - *74 - - *275 + - *278 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '404': *6 x-github: githubCloudOnly: true @@ -37893,12 +37934,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -37913,9 +37954,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37946,7 +37987,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -37975,11 +38016,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *74 - - *278 - - *279 - - *280 - *281 - *282 + - *283 + - *284 + - *285 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37995,14 +38036,14 @@ paths: Can be: `jfrog-artifactory` schema: type: string - - *283 - - *284 - - *285 - - *92 - - *90 - - *91 - *286 - *287 + - *288 + - *98 + - *96 + - *97 + - *289 + - *290 - *17 responses: '200': @@ -38011,9 +38052,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *289 + default: *292 '304': *35 '400': *14 '403': *27 @@ -38057,7 +38098,7 @@ paths: type: integer secrets: type: array - items: &290 + items: &293 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38136,7 +38177,7 @@ paths: description: Response content: application/json: - schema: &553 + schema: &554 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38155,7 +38196,7 @@ paths: - key_id - key examples: - default: &554 + default: &555 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38179,13 +38220,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: default: value: @@ -38214,7 +38255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -38269,7 +38310,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -38294,7 +38335,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -38319,7 +38360,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -38337,9 +38378,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38361,7 +38402,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -38412,7 +38453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -38444,7 +38485,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -38481,7 +38522,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *74 - - &562 + - &563 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -38489,7 +38530,7 @@ paths: required: false schema: type: string - - &563 + - &564 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -38497,7 +38538,7 @@ paths: required: false schema: type: string - - &564 + - &565 name: time_period description: |- The time period to filter by. @@ -38513,7 +38554,7 @@ paths: - week - month default: month - - &565 + - &566 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -38528,7 +38569,7 @@ paths: - denied - all default: all - - *255 + - *257 - *17 - *19 responses: @@ -38538,7 +38579,7 @@ paths: application/json: schema: type: array - items: &566 + items: &567 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -38701,7 +38742,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &567 + default: &568 value: - id: 21 number: 42 @@ -38788,11 +38829,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *74 - - *255 - - *249 - - *250 - - *251 - - &568 + - *257 + - *91 + - *92 + - *93 + - &569 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -38818,7 +38859,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -38932,7 +38973,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *256 + items: *95 url: type: string format: uri @@ -38945,7 +38986,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &570 + default: &571 value: - id: 21 number: 42 @@ -39033,7 +39074,7 @@ paths: application/json: schema: type: array - items: &333 + items: &336 title: Package description: A software package type: object @@ -39086,7 +39127,7 @@ paths: repository: anyOf: - type: 'null' - - *226 + - *232 created_at: type: string format: date-time @@ -39104,7 +39145,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &337 value: - id: 197 name: hello_docker @@ -39192,7 +39233,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: 200-response: value: @@ -39288,7 +39329,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &414 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -39378,7 +39419,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &412 + default: &415 value: group_id: '123' group_name: Octocat admins @@ -39433,7 +39474,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -39473,7 +39514,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &410 + default: &413 value: groups: - group_id: '123' @@ -39517,7 +39558,7 @@ paths: application/json: schema: type: array - items: &313 + items: &316 title: Organization Invitation description: Organization Invitation type: object @@ -39571,7 +39612,7 @@ paths: - invitation_teams_url - node_id examples: - default: &314 + default: &317 value: - id: 1 login: monalisa @@ -39638,7 +39679,7 @@ paths: application/json: schema: type: array - items: &364 + items: &367 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -39652,7 +39693,7 @@ paths: - name - description examples: - default: &365 + default: &368 value: - name: add_assignee description: Assign or remove a user @@ -39693,7 +39734,7 @@ paths: application/json: schema: type: array - items: &291 + items: &294 title: Org Hook description: Org Hook type: object @@ -39876,9 +39917,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: - default: &292 + default: &295 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39923,7 +39964,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *74 - - &293 + - &296 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. @@ -39936,9 +39977,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: - default: *292 + default: *295 '404': *6 x-github: githubCloudOnly: false @@ -39960,7 +40001,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *74 - - *293 + - *296 requestBody: required: false content: @@ -40006,7 +40047,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: default: value: @@ -40046,7 +40087,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *74 - - *293 + - *296 responses: '204': description: Response @@ -40072,7 +40113,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *74 - - *293 + - *296 responses: '200': description: Response @@ -40101,7 +40142,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *74 - - *293 + - *296 requestBody: required: false content: @@ -40150,9 +40191,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *17 - - *294 + - *297 responses: '200': description: Response @@ -40160,9 +40201,9 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: - default: *296 + default: *299 '400': *14 '422': *15 x-github: @@ -40186,16 +40227,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *16 responses: '200': description: Response content: application/json: - schema: *297 + schema: *300 examples: - default: *298 + default: *301 '400': *14 '422': *15 x-github: @@ -40219,7 +40260,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *16 responses: '202': *37 @@ -40246,7 +40287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *74 - - *293 + - *296 responses: '204': description: Response @@ -40269,7 +40310,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *74 - - &303 + - &306 name: actor_type in: path description: The type of the actor @@ -40282,14 +40323,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &304 + - &307 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &299 + - &302 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`.' @@ -40297,7 +40338,7 @@ paths: required: true schema: type: string - - &300 + - &303 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) @@ -40308,7 +40349,7 @@ paths: type: string - *19 - *17 - - *92 + - *98 - name: sort description: The property to sort the results by. in: query @@ -40392,12 +40433,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *74 - - *299 - - *300 + - *302 + - *303 - *19 - *17 - - *92 - - &309 + - *98 + - &312 name: sort description: The property to sort the results by. in: query @@ -40477,14 +40518,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *74 - - *299 - - *300 + - *302 + - *303 responses: '200': description: Response content: application/json: - schema: &301 + schema: &304 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40500,7 +40541,7 @@ paths: type: integer format: int64 examples: - default: &302 + default: &305 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40521,23 +40562,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *74 - - &305 + - &308 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *299 - - *300 + - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *301 + schema: *304 examples: - default: *302 + default: *305 x-github: enabledForGitHubApps: true category: orgs @@ -40556,18 +40597,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *74 - - *299 - - *300 + - *302 - *303 - - *304 + - *306 + - *307 responses: '200': description: Response content: application/json: - schema: *301 + schema: *304 examples: - default: *302 + default: *305 x-github: enabledForGitHubApps: true category: orgs @@ -40585,9 +40626,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *74 - - *299 - - *300 - - &306 + - *302 + - *303 + - &309 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40600,7 +40641,7 @@ paths: description: Response content: application/json: - schema: &307 + schema: &310 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40616,7 +40657,7 @@ paths: type: integer format: int64 examples: - default: &308 + default: &311 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40653,18 +40694,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *74 - - *305 - - *299 - - *300 - - *306 + - *308 + - *302 + - *303 + - *309 responses: '200': description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 x-github: enabledForGitHubApps: true category: orgs @@ -40682,19 +40723,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *74 - - *303 - - *304 - - *299 - - *300 - *306 + - *307 + - *302 + - *303 + - *309 responses: '200': description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 x-github: enabledForGitHubApps: true category: orgs @@ -40712,13 +40753,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *74 - - *305 - - *299 - - *300 + - *308 + - *302 + - *303 - *19 - *17 - - *92 - - *309 + - *98 + - *312 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40802,7 +40843,7 @@ paths: application/json: schema: *20 examples: - default: &601 + default: &602 value: id: 1 account: @@ -40968,12 +41009,12 @@ paths: application/json: schema: anyOf: - - &311 + - &314 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &310 + limit: &313 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -41001,7 +41042,7 @@ paths: properties: {} additionalProperties: false examples: - default: &312 + default: &315 value: limit: collaborators_only origin: organization @@ -41030,13 +41071,13 @@ paths: required: true content: application/json: - schema: &602 + schema: &603 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *310 + limit: *313 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -41061,9 +41102,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '422': *15 x-github: githubCloudOnly: false @@ -41141,9 +41182,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 '404': *6 @@ -41221,7 +41262,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *316 examples: default: value: @@ -41278,7 +41319,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *74 - - &315 + - &318 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41312,7 +41353,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *74 - - *315 + - *318 - *17 - *19 responses: @@ -41322,9 +41363,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: &332 + default: &335 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41367,7 +41408,7 @@ paths: application/json: schema: type: array - items: *316 + items: *319 examples: default: value: @@ -41455,9 +41496,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: &317 + default: &320 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41490,7 +41531,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *74 - - &318 + - &321 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41546,9 +41587,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 '422': *7 x-github: @@ -41573,7 +41614,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *74 - - *318 + - *321 responses: '204': description: Response @@ -41636,7 +41677,7 @@ paths: - closed - all default: open - - *319 + - *322 - name: type description: Can be the name of an issue type. in: query @@ -41654,8 +41695,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -41665,9 +41706,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *320 + default: *323 headers: Link: *38 '404': *6 @@ -41727,7 +41768,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '422': *15 @@ -41748,7 +41789,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response if requester is an organization member and user is @@ -41783,7 +41824,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -41810,7 +41851,7 @@ paths: - *17 - *19 - *74 - - *248 + - *254 responses: '200': description: Response @@ -41826,9 +41867,9 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: - default: *323 + default: *326 '304': *35 '500': *89 '401': *23 @@ -41854,8 +41895,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - *74 - - *248 - - &324 + - *254 + - &327 name: codespace_name in: path required: true @@ -41889,16 +41930,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - *74 - - *248 - - *324 + - *254 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &525 + default: &526 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42072,13 +42113,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - *74 - - *248 + - *254 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *113 + schema: *119 examples: default: value: @@ -42148,13 +42189,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: &325 + schema: &328 title: Org Membership description: Org Membership type: object @@ -42223,7 +42264,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &326 + response-if-user-has-an-active-admin-membership-with-organization: &329 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42292,7 +42333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 requestBody: required: false content: @@ -42320,9 +42361,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: - response-if-user-already-had-membership-with-organization: *326 + response-if-user-already-had-membership-with-organization: *329 '422': *15 '403': *27 x-github: @@ -42347,7 +42388,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -42394,7 +42435,7 @@ paths: application/json: schema: type: array - items: &327 + items: &330 title: Migration description: A migration. type: object @@ -42732,7 +42773,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -42911,7 +42952,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *74 - - &328 + - &331 name: migration_id description: The unique identifier of the migration. in: path @@ -42939,7 +42980,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -43109,7 +43150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *74 - - *328 + - *331 responses: '302': description: Response @@ -43131,7 +43172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *74 - - *328 + - *331 responses: '204': description: Response @@ -43155,8 +43196,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *74 - - *328 - - &768 + - *331 + - &769 name: repo_name description: repo_name parameter in: path @@ -43184,7 +43225,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *74 - - *328 + - *331 - *17 - *19 responses: @@ -43194,9 +43235,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: &339 + default: &342 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43405,7 +43446,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &329 + items: &332 title: Organization Role description: Organization roles type: object @@ -43614,7 +43655,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43643,7 +43684,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43666,7 +43707,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *74 - - &330 + - &333 name: team_slug description: The slug of the team name. in: path @@ -43698,8 +43739,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *74 - - *330 - - *275 + - *333 + - *278 responses: '204': description: Response @@ -43729,8 +43770,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *74 - - *330 - - *275 + - *333 + - *278 responses: '204': description: Response @@ -43756,7 +43797,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -43782,8 +43823,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - *74 - - *248 - - *275 + - *254 + - *278 responses: '204': description: Response @@ -43814,8 +43855,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - *74 - - *248 - - *275 + - *254 + - *278 responses: '204': description: Response @@ -43844,13 +43885,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - *74 - - *275 + - *278 responses: '200': description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43908,7 +43949,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: @@ -43947,7 +43988,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43975,7 +44016,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *100 + '409': *106 '404': *6 x-github: githubCloudOnly: true @@ -44001,7 +44042,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -44027,7 +44068,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *74 - - *275 + - *278 - *17 - *19 responses: @@ -44106,7 +44147,7 @@ paths: parent: anyOf: - type: 'null' - - *331 + - *334 required: - id - node_id @@ -44120,7 +44161,7 @@ paths: - slug - parent examples: - default: *332 + default: *335 headers: Link: *38 '404': @@ -44150,7 +44191,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *74 - - *275 + - *278 - *17 - *19 responses: @@ -44179,7 +44220,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *331 + items: *334 name: type: - string @@ -44296,7 +44337,7 @@ paths: - type - url examples: - default: *321 + default: *324 headers: Link: *38 '404': @@ -44347,7 +44388,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -44373,7 +44414,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - *74 - - *248 + - *254 requestBody: required: false content: @@ -44431,7 +44472,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -44489,7 +44530,7 @@ paths: - nuget - container - *74 - - &770 + - &771 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44525,12 +44566,12 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *334 + default: *337 '403': *27 '401': *23 - '400': &772 + '400': &773 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44552,7 +44593,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &335 + - &338 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 @@ -44570,7 +44611,7 @@ paths: - docker - nuget - container - - &336 + - &339 name: package_name description: The name of the package. in: path @@ -44583,7 +44624,7 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: default: value: @@ -44635,8 +44676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 responses: '204': @@ -44669,8 +44710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 - name: token description: package token @@ -44703,8 +44744,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-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 - *19 - *17 @@ -44725,7 +44766,7 @@ paths: application/json: schema: type: array - items: &337 + items: &340 title: Package Version description: A version of a software package type: object @@ -44860,10 +44901,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: - - *335 - - *336 + - *338 + - *339 - *74 - - &338 + - &341 name: package_version_id description: Unique identifier of the package version. in: path @@ -44875,7 +44916,7 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -44911,10 +44952,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *335 - - *336 - - *74 - *338 + - *339 + - *74 + - *341 responses: '204': description: Response @@ -44946,10 +44987,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *335 - - *336 - - *74 - *338 + - *339 + - *74 + - *341 responses: '204': description: Response @@ -44979,7 +45020,7 @@ paths: - *74 - *17 - *19 - - &340 + - &343 name: sort description: The property by which to sort the results. in: query @@ -44989,8 +45030,8 @@ paths: enum: - created_at default: created_at - - *92 - - &341 + - *98 + - &344 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -45002,7 +45043,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &342 + - &345 name: repository description: The name of the repository to use to filter the results. in: query @@ -45011,7 +45052,7 @@ paths: type: string examples: - Hello-World - - &343 + - &346 name: permission description: The permission to use to filter the results. in: query @@ -45020,7 +45061,7 @@ paths: type: string examples: - issues_read - - &344 + - &347 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) @@ -45030,7 +45071,7 @@ paths: schema: type: string format: date-time - - &345 + - &348 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) @@ -45040,7 +45081,7 @@ paths: schema: type: string format: date-time - - &346 + - &349 name: token_id description: The ID of the token in: query @@ -45316,7 +45357,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45357,9 +45398,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -45385,14 +45426,14 @@ paths: - *74 - *17 - *19 - - *340 - - *92 - - *341 - - *342 - *343 + - *98 - *344 - *345 - *346 + - *347 + - *348 + - *349 responses: '500': *89 '422': *15 @@ -45633,7 +45674,7 @@ paths: responses: '500': *89 '404': *6 - '204': *122 + '204': *128 '403': *27 '422': *15 x-github: @@ -45674,9 +45715,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -45718,7 +45759,7 @@ paths: type: integer configurations: type: array - items: &347 + items: &350 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45977,7 +46018,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &348 + org-private-registry-with-selected-visibility: &351 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46069,15 +46110,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 '404': *6 x-github: githubCloudOnly: false @@ -46099,7 +46140,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -46196,7 +46237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -46242,7 +46283,7 @@ paths: application/json: schema: type: array - items: &349 + items: &352 title: Project description: Projects are a way to organize columns and cards of work. @@ -46424,7 +46465,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: default: value: @@ -46462,7 +46503,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &427 + '410': &430 description: Gone content: application/json: @@ -46495,8 +46536,8 @@ paths: required: false schema: type: string - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -46505,7 +46546,7 @@ paths: application/json: schema: type: array - items: &350 + items: &353 title: Projects v2 Project description: A projects v2 project type: object @@ -46579,7 +46620,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &847 + - &848 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46664,7 +46705,7 @@ paths: - deleted_at - deleted_by examples: - default: &351 + default: &354 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46767,7 +46808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &352 + - &355 name: project_number description: The project's number. in: path @@ -46780,9 +46821,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -46804,11 +46845,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *352 + - *355 - *74 - *17 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -46816,7 +46857,7 @@ paths: application/json: schema: type: array - items: &353 + items: &356 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46966,7 +47007,7 @@ paths: - updated_at - project_url examples: - default: &354 + default: &357 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47009,8 +47050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *352 - - &783 + - *355 + - &784 name: field_id description: The unique identifier of the field. in: path @@ -47023,9 +47064,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -47048,7 +47089,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *352 + - *355 - *74 - 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) @@ -47069,8 +47110,8 @@ paths: type: string examples: - fields[]=123,fields[]=456,fields[]=789 - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -47079,7 +47120,7 @@ paths: application/json: schema: type: array - items: &358 + items: &361 title: Projects v2 Item description: An item belonging to a project type: object @@ -47096,7 +47137,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &357 + content_type: &360 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47153,7 +47194,7 @@ paths: - updated_at - archived_at examples: - default: &359 + default: &362 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -47848,7 +47889,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *74 - - *352 + - *355 requestBody: required: true description: Details of the item to add to the project. @@ -47885,7 +47926,7 @@ paths: description: Response content: application/json: - schema: &784 + schema: &785 title: Projects v2 Item description: An item belonging to a project type: object @@ -47898,8 +47939,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *179 - - &538 + - *185 + - &539 title: Pull Request Simple description: Pull Request Simple type: object @@ -48019,7 +48060,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 active_lock_reason: type: - string @@ -48074,7 +48115,7 @@ paths: type: - array - 'null' - items: *257 + items: *260 head: type: object properties: @@ -48118,7 +48159,7 @@ paths: _links: type: object properties: - comments: &356 + comments: &359 title: Link description: Hypermedia Link type: object @@ -48127,13 +48168,13 @@ paths: type: string required: - href - commits: *356 - statuses: *356 - html: *356 - issue: *356 - review_comments: *356 - review_comment: *356 - self: *356 + commits: *359 + statuses: *359 + html: *359 + issue: *359 + review_comments: *359 + review_comment: *359 + self: *359 required: - comments - commits @@ -48143,8 +48184,8 @@ paths: - review_comments - review_comment - self - author_association: *166 - auto_merge: &644 + author_association: *172 + auto_merge: &645 title: Auto merge description: The status of auto merging a pull request. type: @@ -48246,7 +48287,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *357 + content_type: *360 creator: *4 created_at: type: string @@ -48283,7 +48324,7 @@ paths: - updated_at - archived_at examples: - default: &785 + default: &786 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -48357,9 +48398,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: - - *352 + - *355 - *74 - - &360 + - &363 name: item_id description: The unique identifier of the project item. in: path @@ -48383,9 +48424,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -48406,9 +48447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *352 + - *355 - *74 - - *360 + - *363 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -48481,9 +48522,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '401': *23 '403': *27 '404': *6 @@ -48503,9 +48544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *352 + - *355 - *74 - - *360 + - *363 responses: '204': description: Response @@ -48537,9 +48578,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -48577,7 +48618,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *118 + items: *124 minItems: 1 maxItems: 100 required: @@ -48607,9 +48648,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -48631,15 +48672,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 responses: '200': description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -48663,12 +48704,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 requestBody: required: true content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -48684,9 +48725,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -48710,9 +48751,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 responses: - '204': *122 + '204': *128 '403': *27 '404': *6 x-github: @@ -48774,7 +48815,7 @@ paths: - octocat/Hello-World properties: type: array - items: &362 + items: &365 title: Custom Property Value description: Custom property name and associated value type: object @@ -48864,7 +48905,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *362 + items: *365 required: - repository_names - properties @@ -48917,7 +48958,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -48937,7 +48978,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response if user is a public member @@ -48962,7 +49003,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -48984,7 +49025,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -49055,9 +49096,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -49261,7 +49302,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &432 title: Full Repository description: Full Repository type: object @@ -49707,7 +49748,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 organization: anyOf: - type: 'null' @@ -49726,7 +49767,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &543 + code_of_conduct: &544 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -49756,7 +49797,7 @@ paths: - key - name - html_url - security_and_analysis: *363 + security_and_analysis: *366 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -49840,7 +49881,7 @@ paths: - network_count - subscribers_count examples: - default: &431 + default: &434 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50366,9 +50407,9 @@ paths: application/json: schema: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -50393,7 +50434,7 @@ paths: - *74 - *17 - *19 - - &666 + - &667 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50412,7 +50453,7 @@ paths: application/json: schema: type: array - items: *151 + items: *157 examples: default: value: @@ -50480,26 +50521,20 @@ paths: - push - repository default: branch - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *366 + items: *136 + conditions: *369 rules: type: array description: An array of rules within the ruleset. - items: &368 + items: &371 title: Repository Rule type: object description: A repository rule. oneOf: - - *131 - - *132 - - *133 - - *134 - - *135 - - *136 - *137 - *138 - *139 @@ -50514,6 +50549,12 @@ paths: - *148 - *149 - *150 + - *151 + - *152 + - *153 + - *154 + - *155 + - *156 required: - name - enforcement @@ -50551,9 +50592,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: &367 + default: &370 value: id: 21 name: super cool ruleset @@ -50608,7 +50649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *74 - - &668 + - &669 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 @@ -50618,16 +50659,16 @@ paths: schema: type: string x-multi-segment: true - - *255 - - *251 - - &669 + - *257 + - *93 + - &670 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 - - &670 + - &671 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -50647,7 +50688,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &672 title: Rule Suites description: Response type: array @@ -50703,7 +50744,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &672 + default: &673 value: - id: 21 actor_id: 12 @@ -50747,7 +50788,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &673 + - &674 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -50763,7 +50804,7 @@ paths: description: Response content: application/json: - schema: &674 + schema: &675 title: Rule Suite description: Response type: object @@ -50870,7 +50911,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &675 + default: &676 value: id: 21 actor_id: 12 @@ -50943,9 +50984,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *367 + default: *370 '404': *6 '500': *89 put: @@ -50989,16 +51030,16 @@ paths: - tag - push - repository - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *366 + items: *136 + conditions: *369 rules: description: An array of rules within the ruleset. type: array - items: *368 + items: *371 examples: default: value: @@ -51033,9 +51074,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *367 + default: *370 '404': *6 '500': *89 delete: @@ -51092,9 +51133,9 @@ paths: application/json: schema: type: array - items: *155 + items: *161 examples: - default: *369 + default: *372 '404': *6 '500': *89 x-github: @@ -51131,7 +51172,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: default: value: @@ -51194,14 +51235,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - *371 - - *372 - - *373 - *374 - - *92 + - *375 + - *376 + - *377 + - *98 - *19 - *17 - - &677 + - &678 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 @@ -51211,7 +51252,7 @@ paths: required: false schema: type: string - - &678 + - &679 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 @@ -51221,10 +51262,10 @@ paths: required: false schema: type: string - - *375 - - *376 - - *377 - *378 + - *379 + - *380 + - *381 responses: '200': description: Response @@ -51232,13 +51273,13 @@ paths: application/json: schema: type: array - items: *379 + items: *382 examples: - default: *380 + default: *383 headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51269,9 +51310,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 '403': *27 '404': *6 patch: @@ -51300,7 +51341,7 @@ paths: schema: type: object properties: - pattern_config_version: *158 + pattern_config_version: *164 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -51326,7 +51367,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *158 + custom_pattern_version: *164 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -51362,7 +51403,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 "/orgs/{org}/security-advisories": get: @@ -51381,7 +51422,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - *74 - - *92 + - *98 - name: sort description: The property to sort the results by. in: query @@ -51393,8 +51434,8 @@ paths: - updated - published default: created - - *90 - - *91 + - *96 + - *97 - 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)." @@ -51424,7 +51465,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 description: A repository security advisory. type: object properties: @@ -51632,7 +51673,7 @@ paths: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: - array @@ -51668,7 +51709,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 credits_detailed: type: - array @@ -51679,7 +51720,7 @@ paths: type: object properties: user: *4 - type: *383 + type: *386 state: type: string description: The state of the user's acceptance of the @@ -51705,13 +51746,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *257 + items: *260 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *101 + - *107 type: - 'null' required: @@ -51743,7 +51784,7 @@ paths: - private_fork additionalProperties: false examples: - default: &700 + default: &701 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -52130,9 +52171,9 @@ paths: application/json: schema: type: array - items: *331 + items: *334 examples: - default: *332 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52156,7 +52197,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -52182,7 +52223,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -52217,9 +52258,9 @@ paths: description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52244,7 +52285,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *74 - - *386 + - *389 - *17 - *19 responses: @@ -52252,9 +52293,9 @@ paths: description: Success content: application/json: - schema: *387 + schema: *390 examples: - default: *388 + default: *391 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -52282,9 +52323,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52312,9 +52353,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52352,9 +52393,9 @@ paths: type: integer network_configurations: type: array - items: *115 + items: *121 examples: - default: *393 + default: *396 headers: Link: *38 x-github: @@ -52417,9 +52458,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52440,15 +52481,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *117 + - *123 responses: '200': description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 headers: Link: *38 x-github: @@ -52470,7 +52511,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *117 + - *123 requestBody: required: true content: @@ -52509,9 +52550,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52531,7 +52572,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *74 - - *117 + - *123 responses: '204': description: Response @@ -52555,15 +52596,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *74 - - *394 + - *397 responses: '200': description: Response content: application/json: - schema: *395 + schema: *398 examples: - default: *396 + default: *399 headers: Link: *38 x-github: @@ -52601,7 +52642,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &421 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -52653,7 +52694,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &419 + default: &422 value: groups: - group_id: '123' @@ -52699,7 +52740,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *74 - - *330 + - *333 - 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`). @@ -52731,13 +52772,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52765,9 +52806,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 headers: Link: *38 '403': *27 @@ -52861,7 +52902,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &400 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52935,7 +52976,7 @@ paths: parent: anyOf: - type: 'null' - - *331 + - *334 members_count: type: integer examples: @@ -53241,7 +53282,7 @@ paths: - repos_count - organization examples: - default: &398 + default: &401 value: id: 1 node_id: MDQ6VGVhbTE= @@ -53312,15 +53353,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -53342,7 +53383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *74 - - *330 + - *333 requestBody: required: false content: @@ -53405,16 +53446,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '201': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 '422': *15 '403': *27 @@ -53440,7 +53481,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -53467,8 +53508,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *74 - - *330 - - *92 + - *333 + - *98 - *17 - *19 - name: pinned @@ -53484,7 +53525,7 @@ paths: application/json: schema: type: array - items: &399 + items: &402 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -53575,7 +53616,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *167 + reactions: *173 required: - author - body @@ -53595,7 +53636,7 @@ paths: - updated_at - url examples: - default: &743 + default: &744 value: - author: login: octocat @@ -53670,7 +53711,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -53704,9 +53745,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: &400 + default: &403 value: author: login: octocat @@ -53779,8 +53820,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *74 - - *330 - - &401 + - *333 + - &404 name: discussion_number description: The number that identifies the discussion. in: path @@ -53792,9 +53833,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53817,8 +53858,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: false content: @@ -53841,9 +53882,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: &744 + default: &745 value: author: login: octocat @@ -53914,8 +53955,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 responses: '204': description: Response @@ -53942,9 +53983,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *74 - - *330 - - *401 - - *92 + - *333 + - *404 + - *98 - *17 - *19 responses: @@ -53954,7 +53995,7 @@ paths: application/json: schema: type: array - items: &402 + items: &405 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -54019,7 +54060,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *167 + reactions: *173 required: - author - body @@ -54034,7 +54075,7 @@ paths: - updated_at - url examples: - default: &745 + default: &746 value: - author: login: octocat @@ -54103,8 +54144,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: true content: @@ -54126,9 +54167,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: &403 + default: &406 value: author: login: octocat @@ -54195,9 +54236,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *74 - - *330 - - *401 - - &404 + - *333 + - *404 + - &407 name: comment_number description: The number that identifies the comment. in: path @@ -54209,9 +54250,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54234,9 +54275,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 requestBody: required: true content: @@ -54258,9 +54299,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: &746 + default: &747 value: author: login: octocat @@ -54325,9 +54366,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 responses: '204': description: Response @@ -54354,9 +54395,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 - 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. @@ -54382,7 +54423,7 @@ paths: application/json: schema: type: array - items: &405 + items: &408 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -54426,7 +54467,7 @@ paths: - content - created_at examples: - default: &407 + default: &410 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -54477,9 +54518,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 requestBody: required: true content: @@ -54512,9 +54553,9 @@ paths: team discussion comment content: application/json: - schema: *405 + schema: *408 examples: - default: &406 + default: &409 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -54543,9 +54584,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54569,10 +54610,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *74 - - *330 - - *401 + - *333 - *404 - - &408 + - *407 + - &411 name: reaction_id description: The unique identifier of the reaction. in: path @@ -54605,8 +54646,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 - 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. @@ -54632,9 +54673,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -54661,8 +54702,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: true content: @@ -54694,16 +54735,16 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54727,9 +54768,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *74 - - *330 - - *401 - - *408 + - *333 + - *404 + - *411 responses: '204': description: Response @@ -54753,15 +54794,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: *410 + default: *413 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -54781,7 +54822,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -54805,9 +54846,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -54827,7 +54868,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -54852,7 +54893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -54862,9 +54903,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 x-github: @@ -54887,7 +54928,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *74 - - *330 + - *333 - name: role description: Filters members returned by their role in the team. in: query @@ -54910,7 +54951,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -54941,14 +54982,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 responses: '200': description: Response content: application/json: - schema: &413 + schema: &416 title: Team Membership description: Team Membership type: object @@ -54976,7 +55017,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &747 + response-if-user-is-a-team-maintainer: &748 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55013,8 +55054,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 requestBody: required: false content: @@ -55039,9 +55080,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-users-membership-with-team-is-now-pending: &748 + response-if-users-membership-with-team-is-now-pending: &749 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55077,8 +55118,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 responses: '204': description: Response @@ -55104,7 +55145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -55114,7 +55155,7 @@ paths: application/json: schema: type: array - items: &414 + items: &417 title: Team Project description: A team's access to a project. type: object @@ -55183,7 +55224,7 @@ paths: - updated_at - permissions examples: - default: &749 + default: &750 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -55247,8 +55288,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *74 - - *330 - - &415 + - *333 + - &418 name: project_id description: The unique identifier of the project. in: path @@ -55260,9 +55301,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: - default: &750 + default: &751 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -55325,8 +55366,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *74 - - *330 - - *415 + - *333 + - *418 requestBody: required: false content: @@ -55394,8 +55435,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *74 - - *330 - - *415 + - *333 + - *418 responses: '204': description: Response @@ -55423,7 +55464,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -55433,9 +55474,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -55465,15 +55506,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &751 + schema: &752 title: Team Repository description: A team's access to a repository. type: object @@ -55499,7 +55540,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 forks: type: integer permissions: @@ -56115,9 +56156,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 requestBody: required: false content: @@ -56163,9 +56204,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 responses: '204': description: Response @@ -56192,15 +56233,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *418 + schema: *421 examples: - default: *419 + default: *422 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -56223,7 +56264,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -56266,7 +56307,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *421 examples: default: value: @@ -56299,7 +56340,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -56309,9 +56350,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - response-if-child-teams-exist: &752 + response-if-child-teams-exist: &753 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -56438,7 +56479,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &420 + - &423 name: card_id description: The unique identifier of the card. in: path @@ -56450,7 +56491,7 @@ paths: description: Response content: application/json: - schema: &421 + schema: &424 title: Project Card description: Project cards represent a scope of work. type: object @@ -56525,7 +56566,7 @@ paths: - created_at - updated_at examples: - default: &422 + default: &425 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -56581,7 +56622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *420 + - *423 requestBody: required: false content: @@ -56611,9 +56652,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - default: *422 + default: *425 '304': *35 '403': *27 '401': *23 @@ -56640,7 +56681,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *420 + - *423 responses: '204': description: Response @@ -56684,7 +56725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *420 + - *423 requestBody: required: true content: @@ -56797,7 +56838,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &423 + - &426 name: column_id description: The unique identifier of the column. in: path @@ -56809,7 +56850,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &427 title: Project Column description: Project columns contain cards of work. type: object @@ -56863,7 +56904,7 @@ paths: - created_at - updated_at examples: - default: &425 + default: &428 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -56898,7 +56939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *423 + - *426 requestBody: required: true content: @@ -56923,9 +56964,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: - default: *425 + default: *428 '304': *35 '403': *27 '401': *23 @@ -56950,7 +56991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *423 + - *426 responses: '204': description: Response @@ -56979,7 +57020,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *423 + - *426 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -57000,7 +57041,7 @@ paths: application/json: schema: type: array - items: *421 + items: *424 examples: default: value: @@ -57059,7 +57100,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *423 + - *426 requestBody: required: true content: @@ -57103,9 +57144,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - default: *422 + default: *425 '304': *35 '403': *27 '401': *23 @@ -57115,8 +57156,8 @@ paths: application/json: schema: oneOf: - - *203 - - *204 + - *209 + - *210 '503': description: Response content: @@ -57161,7 +57202,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *423 + - *426 requestBody: required: true content: @@ -57222,15 +57263,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *415 + - *418 responses: '200': description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: &426 + default: &429 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -57287,7 +57328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *415 + - *418 requestBody: required: false content: @@ -57336,9 +57377,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: *426 + default: *429 '404': description: Not Found if the authenticated user does not have access to the project @@ -57359,7 +57400,7 @@ paths: items: type: string '401': *23 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -57382,7 +57423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *415 + - *418 responses: '204': description: Delete Success @@ -57403,7 +57444,7 @@ paths: items: type: string '401': *23 - '410': *427 + '410': *430 '404': *6 x-github: githubCloudOnly: false @@ -57427,7 +57468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *415 + - *418 - 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 @@ -57454,7 +57495,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -57484,8 +57525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *415 - - *248 + - *418 + - *254 requestBody: required: false content: @@ -57539,8 +57580,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *415 - - *248 + - *418 + - *254 responses: '204': description: Response @@ -57571,8 +57612,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: - - *415 - - *248 + - *418 + - *254 responses: '200': description: Response @@ -57642,7 +57683,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *415 + - *418 - *17 - *19 responses: @@ -57652,7 +57693,7 @@ paths: application/json: schema: type: array - items: *424 + items: *427 examples: default: value: @@ -57690,7 +57731,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *415 + - *418 requestBody: required: true content: @@ -57714,7 +57755,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: default: value: @@ -57779,7 +57820,7 @@ paths: resources: type: object properties: - core: &428 + core: &431 title: Rate Limit type: object properties: @@ -57796,21 +57837,21 @@ paths: - remaining - reset - used - graphql: *428 - search: *428 - code_search: *428 - source_import: *428 - integration_manifest: *428 - code_scanning_upload: *428 - actions_runner_registration: *428 - scim: *428 - dependency_snapshots: *428 - dependency_sbom: *428 - code_scanning_autofix: *428 + graphql: *431 + search: *431 + code_search: *431 + source_import: *431 + integration_manifest: *431 + code_scanning_upload: *431 + actions_runner_registration: *431 + scim: *431 + dependency_snapshots: *431 + dependency_sbom: *431 + code_scanning_autofix: *431 required: - core - search - rate: *428 + rate: *431 required: - rate - resources @@ -57915,14 +57956,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *429 + schema: *432 examples: default-response: summary: Default response @@ -58427,7 +58468,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *430 + '301': *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58445,8 +58486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -58704,10 +58745,10 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 - '307': &432 + default: *434 + '307': &435 description: Temporary Redirect content: application/json: @@ -58736,8 +58777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -58759,9 +58800,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': *432 + '307': *435 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58783,11 +58824,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - - &447 + - &450 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -58810,7 +58851,7 @@ paths: type: integer artifacts: type: array - items: &433 + items: &436 title: Artifact description: An artifact type: object @@ -58905,7 +58946,7 @@ paths: - expires_at - updated_at examples: - default: &448 + default: &451 value: total_count: 2 artifacts: @@ -58966,9 +59007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *416 - - *417 - - &434 + - *419 + - *420 + - &437 name: artifact_id description: The unique identifier of the artifact. in: path @@ -58980,7 +59021,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: default: value: @@ -59018,9 +59059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *416 - - *417 - - *434 + - *419 + - *420 + - *437 responses: '204': description: Response @@ -59044,9 +59085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *416 - - *417 - - *434 + - *419 + - *420 + - *437 - name: archive_format in: path required: true @@ -59060,7 +59101,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': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59083,14 +59124,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: default: value: @@ -59116,11 +59157,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: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - - &436 + - &439 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 @@ -59148,13 +59189,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *92 + - *98 responses: '200': description: Response content: application/json: - schema: &437 + schema: &440 title: Repository actions caches description: Repository actions caches type: object @@ -59204,7 +59245,7 @@ paths: - total_count - actions_caches examples: - default: &438 + default: &441 value: total_count: 1 actions_caches: @@ -59236,23 +59277,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: - - *416 - - *417 + - *419 + - *420 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *436 + - *439 responses: '200': description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59272,8 +59313,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: - - *416 - - *417 + - *419 + - *420 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59304,9 +59345,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: - - *416 - - *417 - - &439 + - *419 + - *420 + - &442 name: job_id description: The unique identifier of the job. in: path @@ -59318,7 +59359,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &454 title: Job description: Information of a job execution in a workflow run type: object @@ -59665,9 +59706,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: - - *416 - - *417 - - *439 + - *419 + - *420 + - *442 responses: '302': description: Response @@ -59695,9 +59736,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: - - *416 - - *417 - - *439 + - *419 + - *420 + - *442 requestBody: required: false content: @@ -59719,7 +59760,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -59743,8 +59784,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Status response @@ -59794,8 +59835,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -59829,7 +59870,7 @@ paths: description: Empty response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -59858,8 +59899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -59877,7 +59918,7 @@ paths: type: integer secrets: type: array - items: &453 + items: &456 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -59898,7 +59939,7 @@ paths: - created_at - updated_at examples: - default: &454 + default: &457 value: total_count: 2 secrets: @@ -59931,9 +59972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *416 - - *417 - - *440 + - *419 + - *420 + - *443 - *19 responses: '200': @@ -59950,7 +59991,7 @@ paths: type: integer variables: type: array - items: &457 + items: &460 title: Actions Variable type: object properties: @@ -59984,7 +60025,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &461 value: total_count: 2 variables: @@ -60017,8 +60058,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60027,11 +60068,11 @@ paths: schema: type: object properties: - enabled: &441 + enabled: &444 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *47 - selected_actions_url: *213 + selected_actions_url: *219 sha_pinning_required: *48 required: - enabled @@ -60062,8 +60103,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60074,7 +60115,7 @@ paths: schema: type: object properties: - enabled: *441 + enabled: *444 allowed_actions: *47 sha_pinning_required: *48 required: @@ -60107,14 +60148,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &442 + schema: &445 type: object properties: access_level: @@ -60132,7 +60173,7 @@ paths: required: - access_level examples: - default: &443 + default: &446 value: access_level: organization x-github: @@ -60157,15 +60198,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *442 + schema: *445 examples: - default: *443 + default: *446 responses: '204': description: Response @@ -60189,14 +60230,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *215 + schema: *221 examples: default: value: @@ -60220,8 +60261,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Empty response for successful settings update @@ -60231,7 +60272,7 @@ paths: required: true content: application/json: - schema: *216 + schema: *222 examples: default: summary: Set retention days @@ -60255,8 +60296,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60264,7 +60305,7 @@ paths: application/json: schema: *49 examples: - default: *217 + default: *223 '404': *6 x-github: enabledForGitHubApps: true @@ -60283,8 +60324,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60318,14 +60359,14 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *218 + schema: *224 examples: default: *50 '403': *27 @@ -60347,13 +60388,13 @@ 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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *219 + schema: *225 examples: default: *50 responses: @@ -60379,8 +60420,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60411,8 +60452,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60444,14 +60485,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *222 + schema: *228 examples: default: *56 x-github: @@ -60474,8 +60515,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Success response @@ -60486,7 +60527,7 @@ paths: required: true content: application/json: - schema: *223 + schema: *229 examples: default: *56 x-github: @@ -60515,8 +60556,8 @@ paths: in: query schema: type: string - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -60560,8 +60601,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60569,9 +60610,9 @@ paths: application/json: schema: type: array - items: *227 + items: *233 examples: - default: *228 + default: *234 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60593,8 +60634,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -60637,10 +60678,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *229 + '201': *235 '404': *6 '422': *7 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60668,8 +60709,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -60677,7 +60718,7 @@ paths: application/json: schema: *66 examples: - default: *230 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60705,8 +60746,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -60714,7 +60755,7 @@ paths: application/json: schema: *66 examples: - default: *231 + default: *237 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60736,8 +60777,8 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 responses: '200': @@ -60746,7 +60787,7 @@ paths: application/json: schema: *63 examples: - default: *232 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60767,8 +60808,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 responses: '204': @@ -60795,8 +60836,8 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 responses: '200': *68 @@ -60821,8 +60862,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 requestBody: required: true @@ -60871,8 +60912,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 requestBody: required: true @@ -60922,11 +60963,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: - - *416 - - *417 + - *419 + - *420 - *62 responses: - '200': *233 + '200': *239 '404': *6 x-github: githubCloudOnly: false @@ -60953,10 +60994,10 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 - - *234 + - *240 responses: '200': *68 '404': *6 @@ -60984,9 +61025,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: - - *416 - - *417 - - &461 + - *419 + - *420 + - &464 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. @@ -60994,7 +61035,7 @@ paths: required: false schema: type: string - - &462 + - &465 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61002,7 +61043,7 @@ paths: required: false schema: type: string - - &463 + - &466 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61011,7 +61052,7 @@ paths: required: false schema: type: string - - &464 + - &467 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 @@ -61038,7 +61079,7 @@ paths: - pending - *17 - *19 - - &465 + - &468 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)." @@ -61047,7 +61088,7 @@ paths: schema: type: string format: date-time - - &444 + - &447 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61056,13 +61097,13 @@ paths: schema: type: boolean default: false - - &466 + - &469 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &467 + - &470 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61085,7 +61126,7 @@ paths: type: integer workflow_runs: type: array - items: &445 + items: &448 title: Workflow Run description: An invocation of a workflow type: object @@ -61202,7 +61243,7 @@ paths: type: - array - 'null' - items: &488 + items: &489 title: Pull Request Minimal type: object properties: @@ -61329,7 +61370,7 @@ paths: head_commit: anyOf: - type: 'null' - - &492 + - &493 title: Simple Commit description: A commit. type: object @@ -61403,8 +61444,8 @@ paths: - timestamp - author - committer - repository: *226 - head_repository: *226 + repository: *232 + head_repository: *232 head_repository_id: type: integer examples: @@ -61444,7 +61485,7 @@ paths: - workflow_url - pull_requests examples: - default: &468 + default: &471 value: total_count: 1 workflow_runs: @@ -61680,24 +61721,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *416 - - *417 - - &446 + - *419 + - *420 + - &449 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *444 + - *447 responses: '200': description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: &449 + default: &452 value: id: 30433642 name: Build @@ -61938,9 +61979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '204': description: Response @@ -61963,9 +62004,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -62093,15 +62134,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -62128,12 +62169,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 - *17 - *19 - - *447 + - *450 responses: '200': description: Response @@ -62149,9 +62190,9 @@ paths: type: integer artifacts: type: array - items: *433 + items: *436 examples: - default: *448 + default: *451 headers: Link: *38 x-github: @@ -62175,25 +62216,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *416 - - *417 - - *446 - - &450 + - *419 + - *420 + - *449 + - &453 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *444 + - *447 responses: '200': description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62216,10 +62257,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: - - *416 - - *417 - - *446 - - *450 + - *419 + - *420 + - *449 + - *453 - *17 - *19 responses: @@ -62237,9 +62278,9 @@ paths: type: integer jobs: type: array - items: *451 + items: *454 examples: - default: &452 + default: &455 value: total_count: 1 jobs: @@ -62352,10 +62393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *416 - - *417 - - *446 - - *450 + - *419 + - *420 + - *449 + - *453 responses: '302': description: Response @@ -62383,19 +62424,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '202': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62418,9 +62459,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: true content: @@ -62487,19 +62528,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '202': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62522,9 +62563,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 - 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 @@ -62554,9 +62595,9 @@ paths: type: integer jobs: type: array - items: *451 + items: *454 examples: - default: *452 + default: *455 headers: Link: *38 x-github: @@ -62581,9 +62622,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '302': description: Response @@ -62610,9 +62651,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '204': description: Response @@ -62639,9 +62680,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -62710,7 +62751,7 @@ paths: items: type: object properties: - type: &571 + type: &572 type: string description: The type of reviewer. enum: @@ -62721,7 +62762,7 @@ paths: reviewer: anyOf: - *4 - - *257 + - *260 required: - environment - wait_timer @@ -62796,9 +62837,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: true content: @@ -62848,7 +62889,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -62960,7 +63001,7 @@ paths: - created_at - updated_at examples: - default: &558 + default: &559 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63016,9 +63057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: false content: @@ -63040,7 +63081,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63063,9 +63104,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: false content: @@ -63087,7 +63128,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63120,9 +63161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -63259,8 +63300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -63278,9 +63319,9 @@ paths: type: integer secrets: type: array - items: *453 + items: *456 examples: - default: *454 + default: *457 headers: Link: *38 x-github: @@ -63305,16 +63346,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *455 + schema: *458 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63336,17 +63377,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: &584 + default: &585 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -63372,9 +63413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -63405,7 +63446,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63431,9 +63472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -63458,9 +63499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *416 - - *417 - - *440 + - *419 + - *420 + - *443 - *19 responses: '200': @@ -63477,9 +63518,9 @@ paths: type: integer variables: type: array - items: *457 + items: *460 examples: - default: *458 + default: *461 headers: Link: *38 x-github: @@ -63502,8 +63543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -63530,7 +63571,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63555,17 +63596,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: &585 + default: &586 value: name: USERNAME value: octocat @@ -63591,9 +63632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 requestBody: required: true content: @@ -63635,9 +63676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 responses: '204': description: Response @@ -63662,8 +63703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -63681,7 +63722,7 @@ paths: type: integer workflows: type: array - items: &459 + items: &462 title: Workflow description: A GitHub Actions workflow type: object @@ -63799,9 +63840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *416 - - *417 - - &460 + - *419 + - *420 + - &463 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -63816,7 +63857,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: default: value: @@ -63849,9 +63890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63876,9 +63917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63929,9 +63970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63958,19 +63999,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: - - *416 - - *417 - - *460 - - *461 - - *462 + - *419 + - *420 - *463 - *464 - - *17 - - *19 - *465 - - *444 - *466 - *467 + - *17 + - *19 + - *468 + - *447 + - *469 + - *470 responses: '200': description: Response @@ -63986,9 +64027,9 @@ paths: type: integer workflow_runs: type: array - items: *445 + items: *448 examples: - default: *468 + default: *471 headers: Link: *38 x-github: @@ -64021,9 +64062,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '200': description: Response @@ -64084,12 +64125,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *416 - - *417 - - *92 + - *419 + - *420 + - *98 - *17 - - *90 - - *91 + - *96 + - *97 - name: ref description: |- The Git reference for the activities you want to list. @@ -64253,8 +64294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -64266,7 +64307,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -64291,8 +64332,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: - - *416 - - *417 + - *419 + - *420 - name: assignee in: path required: true @@ -64328,8 +64369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -64441,11 +64482,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *416 - - *417 + - *419 + - *420 - *17 - - *90 - - *91 + - *96 + - *97 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -64496,7 +64537,7 @@ paths: bundle_url: type: string examples: - default: *469 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64516,8 +64557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -64525,7 +64566,7 @@ paths: application/json: schema: type: array - items: &470 + items: &473 title: Autolink reference description: An autolink reference. type: object @@ -64584,8 +64625,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -64624,9 +64665,9 @@ paths: description: response content: application/json: - schema: *470 + schema: *473 examples: - default: &471 + default: &474 value: id: 1 key_prefix: TICKET- @@ -64657,9 +64698,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: - - *416 - - *417 - - &472 + - *419 + - *420 + - &475 name: autolink_id description: The unique identifier of the autolink. in: path @@ -64671,9 +64712,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 + default: *474 '404': *6 x-github: githubCloudOnly: false @@ -64693,9 +64734,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: - - *416 - - *417 - - *472 + - *419 + - *420 + - *475 responses: '204': description: Response @@ -64719,8 +64760,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response if Dependabot is enabled @@ -64770,8 +64811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -64792,8 +64833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -64813,8 +64854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *416 - - *417 + - *419 + - *420 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -64852,7 +64893,7 @@ paths: - url protected: type: boolean - protection: &474 + protection: &477 title: Branch Protection description: Branch Protection type: object @@ -64895,7 +64936,7 @@ paths: required: - contexts - checks - enforce_admins: &477 + enforce_admins: &480 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -64912,7 +64953,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &479 + required_pull_request_reviews: &482 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -64934,7 +64975,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *257 + items: *260 apps: description: The list of apps with review dismissal access. @@ -64966,7 +65007,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *257 + items: *260 apps: description: The list of apps allowed to bypass pull request requirements. @@ -64996,7 +65037,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &476 + restrictions: &479 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -65321,9 +65362,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *416 - - *417 - - &475 + - *419 + - *420 + - &478 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). @@ -65337,14 +65378,14 @@ paths: description: Response content: application/json: - schema: &485 + schema: &488 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &534 + commit: &535 title: Commit description: Commit type: object @@ -65383,7 +65424,7 @@ paths: author: anyOf: - type: 'null' - - &473 + - &476 title: Git User description: Metaproperties for Git author/committer information. @@ -65404,7 +65445,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 message: type: string examples: @@ -65428,7 +65469,7 @@ paths: required: - sha - url - verification: &591 + verification: &592 title: Verification type: object properties: @@ -65464,14 +65505,14 @@ paths: author: oneOf: - *4 - - *237 + - *243 type: - 'null' - object committer: oneOf: - *4 - - *237 + - *243 type: - 'null' - object @@ -65508,7 +65549,7 @@ paths: type: integer files: type: array - items: &545 + items: &546 title: Diff Entry description: Diff Entry type: object @@ -65602,7 +65643,7 @@ paths: - self protected: type: boolean - protection: *474 + protection: *477 protection_url: type: string format: uri @@ -65711,7 +65752,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *430 + '301': *433 '404': *6 x-github: githubCloudOnly: false @@ -65733,15 +65774,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *474 + schema: *477 examples: default: value: @@ -65935,9 +65976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -66197,7 +66238,7 @@ paths: url: type: string format: uri - required_status_checks: &482 + required_status_checks: &485 title: Status Check Policy description: Status Check Policy type: object @@ -66278,7 +66319,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 apps: type: array items: *5 @@ -66296,7 +66337,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 apps: type: array items: *5 @@ -66356,7 +66397,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *476 + restrictions: *479 required_conversation_resolution: type: object properties: @@ -66468,9 +66509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66495,17 +66536,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &478 + default: &481 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -66527,17 +66568,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *478 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66556,9 +66597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66583,17 +66624,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: &480 + default: &483 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -66689,9 +66730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -66789,9 +66830,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: *480 + default: *483 '422': *15 x-github: githubCloudOnly: false @@ -66812,9 +66853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66841,17 +66882,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &481 + default: &484 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -66874,17 +66915,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *481 + default: *484 '404': *6 x-github: githubCloudOnly: false @@ -66904,9 +66945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66931,17 +66972,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: &483 + default: &486 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -66967,9 +67008,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67021,9 +67062,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 '404': *6 '422': *15 x-github: @@ -67045,9 +67086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -67071,9 +67112,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67107,9 +67148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67176,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67242,9 +67283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: content: application/json: @@ -67310,15 +67351,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -67409,9 +67450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -67434,9 +67475,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67446,7 +67487,7 @@ paths: type: array items: *5 examples: - default: &484 + default: &487 value: - id: 1 slug: octoapp @@ -67503,9 +67544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67539,7 +67580,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67560,9 +67601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67596,7 +67637,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67617,9 +67658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67653,7 +67694,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67675,9 +67716,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67685,9 +67726,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '404': *6 x-github: githubCloudOnly: false @@ -67707,9 +67748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67745,9 +67786,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67768,9 +67809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67806,9 +67847,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67829,9 +67870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: content: application/json: @@ -67866,9 +67907,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67890,9 +67931,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67902,7 +67943,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '404': *6 x-github: githubCloudOnly: false @@ -67926,9 +67967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67961,7 +68002,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -67986,9 +68027,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68021,7 +68062,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -68046,9 +68087,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68081,7 +68122,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -68108,9 +68149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68132,7 +68173,7 @@ paths: description: Response content: application/json: - schema: *485 + schema: *488 examples: default: value: @@ -68246,12 +68287,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *252 + - *419 + - *420 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -68261,9 +68302,9 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: - default: *254 + default: *256 '404': *6 '500': *89 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -68283,8 +68324,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68298,7 +68339,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -68357,12 +68398,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *252 + - *419 + - *420 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -68372,9 +68413,9 @@ paths: application/json: schema: type: array - items: *486 + items: *258 examples: - default: *487 + default: *259 '404': *6 '403': *27 '500': *89 @@ -68398,8 +68439,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68411,7 +68452,7 @@ paths: description: A single bypass request. content: application/json: - schema: *486 + schema: *258 examples: default: value: @@ -68469,8 +68510,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68541,8 +68582,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_response_id in: path required: true @@ -68575,8 +68616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -68855,7 +68896,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: CheckRun description: A check performed on the code of a given code change type: object @@ -68990,8 +69031,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *488 - deployment: &808 + items: *489 + deployment: &809 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69278,9 +69319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *416 - - *417 - - &490 + - *419 + - *420 + - &491 name: check_run_id description: The unique identifier of the check run. in: path @@ -69292,9 +69333,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: &491 + default: &492 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -69394,9 +69435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 requestBody: required: true content: @@ -69636,9 +69677,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69658,9 +69699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 - *17 - *19 responses: @@ -69770,15 +69811,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -69816,8 +69857,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -69839,7 +69880,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &493 + schema: &494 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -69921,12 +69962,12 @@ paths: type: - array - 'null' - items: *488 + items: *489 app: anyOf: - type: 'null' - *5 - repository: *226 + repository: *232 created_at: type: - string @@ -69937,7 +69978,7 @@ paths: - string - 'null' format: date-time - head_commit: *492 + head_commit: *493 latest_check_runs_count: type: integer check_runs_url: @@ -69965,7 +70006,7 @@ paths: - check_runs_url - pull_requests examples: - default: &494 + default: &495 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -70256,9 +70297,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70277,8 +70318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -70339,7 +70380,7 @@ paths: required: - app_id - setting - repository: *226 + repository: *232 examples: default: value: @@ -70587,9 +70628,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *416 - - *417 - - &495 + - *419 + - *420 + - &496 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -70601,9 +70642,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70626,17 +70667,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: - - *416 - - *417 - - *495 - - &540 + - *419 + - *420 + - *496 + - &541 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &541 + - &542 name: status description: Returns check runs with the specified `status`. in: query @@ -70675,9 +70716,9 @@ paths: type: integer check_runs: type: array - items: *489 + items: *490 examples: - default: &542 + default: &543 value: total_count: 1 check_runs: @@ -70779,15 +70820,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *416 - - *417 - - *495 + - *419 + - *420 + - *496 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -70814,30 +70855,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: - - *416 - - *417 - - *261 - - *262 + - *419 + - *420 + - *264 + - *265 - *19 - *17 - - &511 + - &512 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: *496 - - &512 + schema: *497 + - &513 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *92 - - *90 - - *91 + - *98 + - *96 + - *97 - name: sort description: The property by which to sort the results. in: query @@ -70853,13 +70894,13 @@ paths: be returned. in: query required: false - schema: *263 + schema: *266 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *497 + schema: *498 responses: '200': description: Response @@ -70870,24 +70911,24 @@ paths: items: type: object properties: - number: *102 - created_at: *109 - updated_at: *110 - url: *107 - html_url: *108 - instances_url: *498 - state: *95 - fixed_at: *112 + number: *108 + created_at: *115 + updated_at: *116 + url: *113 + html_url: *114 + instances_url: *499 + state: *101 + fixed_at: *118 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *111 - dismissed_reason: *499 - dismissed_comment: *500 - rule: *501 - tool: *502 - most_recent_instance: *503 + dismissed_at: *117 + dismissed_reason: *500 + dismissed_comment: *501 + rule: *502 + tool: *503 + most_recent_instance: *504 dismissal_approved_by: anyOf: - type: 'null' @@ -71007,14 +71048,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &504 + '403': &505 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71034,9 +71075,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: - - *416 - - *417 - - &505 + - *419 + - *420 + - &506 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -71044,30 +71085,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *102 + schema: *108 responses: '200': description: Response content: application/json: - schema: &506 + schema: &507 type: object properties: - number: *102 - created_at: *109 - updated_at: *110 - url: *107 - html_url: *108 - instances_url: *498 - state: *95 - fixed_at: *112 + number: *108 + created_at: *115 + updated_at: *116 + url: *113 + html_url: *114 + instances_url: *499 + state: *101 + fixed_at: *118 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *111 - dismissed_reason: *499 - dismissed_comment: *500 + dismissed_at: *117 + dismissed_reason: *500 + dismissed_comment: *501 rule: type: object properties: @@ -71129,8 +71170,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *502 - most_recent_instance: *503 + tool: *503 + most_recent_instance: *504 dismissal_approved_by: anyOf: - type: 'null' @@ -71223,9 +71264,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71243,9 +71284,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: true content: @@ -71260,8 +71301,8 @@ paths: enum: - open - dismissed - dismissed_reason: *499 - dismissed_comment: *500 + dismissed_reason: *500 + dismissed_comment: *501 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -71280,7 +71321,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: default: value: @@ -71356,14 +71397,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &510 + '403': &511 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': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71383,15 +71424,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 responses: '200': description: Response content: application/json: - schema: &507 + schema: &508 type: object properties: status: @@ -71418,13 +71459,13 @@ paths: - description - started_at examples: - default: &508 + default: &509 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &509 + '400': &510 description: Bad Request content: application/json: @@ -71435,9 +71476,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': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71460,29 +71501,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 responses: '200': description: OK content: application/json: - schema: *507 + schema: *508 examples: - default: *508 + default: *509 '202': description: Accepted content: application/json: - schema: *507 + schema: *508 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *509 + '400': *510 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -71492,7 +71533,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71514,9 +71555,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: false content: @@ -71562,12 +71603,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *509 - '403': *510 + '400': *510 + '403': *511 '404': *6 '422': description: Unprocessable Entity - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71587,13 +71628,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 - *19 - *17 - - *511 - *512 + - *513 responses: '200': description: Response @@ -71601,7 +71642,7 @@ paths: application/json: schema: type: array - items: *503 + items: *504 examples: default: value: @@ -71640,9 +71681,9 @@ paths: end_column: 50 classifications: - source - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71674,30 +71715,30 @@ 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: - - *416 - - *417 - - *261 - - *262 + - *419 + - *420 + - *264 + - *265 - *19 - *17 - - *512 + - *513 - 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: *496 + schema: *497 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &515 + schema: &516 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *92 + - *98 - name: sort description: The property by which to sort the results. in: query @@ -71714,23 +71755,23 @@ paths: application/json: schema: type: array - items: &516 + items: &517 type: object properties: - ref: *496 - commit_sha: &524 + ref: *497 + commit_sha: &525 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: *513 + analysis_key: *514 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *514 + category: *515 error: type: string examples: @@ -71755,8 +71796,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *515 - tool: *502 + sarif_id: *516 + tool: *503 deletable: type: boolean warning: @@ -71818,9 +71859,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71854,8 +71895,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: - - *416 - - *417 + - *419 + - *420 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -71868,7 +71909,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: response: summary: application/json response @@ -71922,14 +71963,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *504 + '403': *505 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -72009,8 +72050,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: - - *416 - - *417 + - *419 + - *420 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72066,9 +72107,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': *510 + '403': *511 '404': *6 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -72088,8 +72129,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -72097,7 +72138,7 @@ paths: application/json: schema: type: array - items: &517 + items: &518 title: CodeQL Database description: A CodeQL database. type: object @@ -72209,9 +72250,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': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72238,8 +72279,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: - - *416 - - *417 + - *419 + - *420 - name: language in: path description: The language of the CodeQL database. @@ -72251,7 +72292,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: default: value: @@ -72283,11 +72324,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': &547 + '302': &548 description: Found - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72307,8 +72348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *416 - - *417 + - *419 + - *420 - name: language in: path description: The language of the CodeQL database. @@ -72318,9 +72359,9 @@ paths: responses: '204': description: Response - '403': *510 + '403': *511 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72346,8 +72387,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -72356,7 +72397,7 @@ paths: type: object additionalProperties: false properties: - language: &518 + language: &519 type: string description: The language targeted by the CodeQL query enum: @@ -72435,7 +72476,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &522 + schema: &523 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -72443,9 +72484,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *101 + controller_repo: *107 actor: *4 - query_language: *518 + query_language: *519 query_pack_url: type: string description: The download url for the query pack. @@ -72493,7 +72534,7 @@ paths: items: type: object properties: - repository: &519 + repository: &520 title: Repository Identifier description: Repository Identifier type: object @@ -72535,7 +72576,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &523 + analysis_status: &524 type: string description: The new status of the CodeQL variant analysis repository task. @@ -72567,7 +72608,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &520 + access_mismatch_repos: &521 type: object properties: repository_count: @@ -72582,7 +72623,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: *519 + items: *520 required: - repository_count - repositories @@ -72605,8 +72646,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *520 - over_limit_repos: *520 + no_codeql_db_repos: *521 + over_limit_repos: *521 required: - access_mismatch_repos - not_found_repos @@ -72622,7 +72663,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &521 + value: &522 summary: Default response value: id: 1 @@ -72774,17 +72815,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *521 + value: *522 repository_lists: summary: Response for a successful variant analysis submission - value: *521 + value: *522 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72805,8 +72846,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: - - *416 - - *417 + - *419 + - *420 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -72818,11 +72859,11 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: - default: *521 + default: *522 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72843,7 +72884,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: - - *416 + - *419 - name: repo in: path description: The name of the controller repository. @@ -72877,8 +72918,8 @@ paths: schema: type: object properties: - repository: *101 - analysis_status: *523 + repository: *107 + analysis_status: *524 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -72982,7 +73023,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73003,8 +73044,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73097,9 +73138,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73118,8 +73159,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -73188,7 +73229,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -73213,7 +73254,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *510 + '403': *511 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -73227,7 +73268,7 @@ paths: content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73284,8 +73325,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -73293,7 +73334,7 @@ paths: schema: type: object properties: - commit_sha: *524 + commit_sha: *525 ref: type: string description: |- @@ -73353,7 +73394,7 @@ paths: schema: type: object properties: - id: *515 + id: *516 url: type: string description: The REST API URL for checking the status of the upload. @@ -73367,11 +73408,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': *510 + '403': *511 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -73390,8 +73431,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: - - *416 - - *417 + - *419 + - *420 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -73439,10 +73480,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': *504 + '403': *505 '404': description: Not Found if the sarif id does not match any upload - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -73464,8 +73505,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73489,7 +73530,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *96 + configuration: *102 examples: default: value: @@ -73521,7 +73562,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': *122 + '204': *128 '304': *35 '403': *27 '404': *6 @@ -73546,8 +73587,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *416 - - *417 + - *419 + - *420 - 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 @@ -73675,8 +73716,8 @@ paths: parameters: - *17 - *19 - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73692,7 +73733,7 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: default: value: @@ -73990,8 +74031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -74055,22 +74096,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74094,8 +74135,8 @@ paths: parameters: - *17 - *19 - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -74159,8 +74200,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: - - *416 - - *417 + - *419 + - *420 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -74197,9 +74238,9 @@ paths: type: integer machines: type: array - items: *526 + items: *527 examples: - default: &759 + default: &760 value: total_count: 2 machines: @@ -74239,8 +74280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *416 - - *417 + - *419 + - *420 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -74327,8 +74368,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: - - *416 - - *417 + - *419 + - *420 - 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 @@ -74376,7 +74417,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74397,8 +74438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -74416,7 +74457,7 @@ paths: type: integer secrets: type: array - items: &530 + items: &531 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -74437,7 +74478,7 @@ paths: - created_at - updated_at examples: - default: *527 + default: *528 headers: Link: *38 x-github: @@ -74460,16 +74501,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74489,17 +74530,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74519,9 +74560,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: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -74549,7 +74590,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -74573,9 +74614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -74603,8 +74644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *416 - - *417 + - *419 + - *420 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -74642,7 +74683,7 @@ paths: application/json: schema: type: array - items: &532 + items: &533 title: Collaborator description: Collaborator type: object @@ -74835,9 +74876,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: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '204': description: Response if user is a collaborator @@ -74883,9 +74924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 requestBody: required: false content: @@ -74911,7 +74952,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &604 + schema: &605 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -74923,7 +74964,7 @@ paths: format: int64 examples: - 42 - repository: *226 + repository: *232 invitee: anyOf: - type: 'null' @@ -75099,7 +75140,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *203 + schema: *209 '403': *27 x-github: triggersNotification: true @@ -75139,9 +75180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '204': description: No Content when collaborator was removed from the repository. @@ -75172,9 +75213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '200': description: if user has admin permissions @@ -75194,7 +75235,7 @@ paths: user: anyOf: - type: 'null' - - *532 + - *533 required: - permission - role_name @@ -75248,8 +75289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -75259,7 +75300,7 @@ paths: application/json: schema: type: array - items: &533 + items: &534 title: Commit Comment description: Commit Comment type: object @@ -75300,8 +75341,8 @@ paths: updated_at: type: string format: date-time - author_association: *166 - reactions: *167 + author_association: *172 + reactions: *173 required: - url - html_url @@ -75317,7 +75358,7 @@ paths: - created_at - updated_at examples: - default: &536 + default: &537 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75376,17 +75417,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &537 + default: &538 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75443,9 +75484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -75467,7 +75508,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -75518,9 +75559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -75541,9 +75582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -75569,9 +75610,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -75592,9 +75633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -75626,16 +75667,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -75657,10 +75698,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -75709,8 +75750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *416 - - *417 + - *419 + - *420 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -75766,9 +75807,9 @@ paths: application/json: schema: type: array - items: *534 + items: *535 examples: - default: &651 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75842,7 +75883,7 @@ paths: '500': *89 '400': *14 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75862,9 +75903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *416 - - *417 - - &535 + - *419 + - *420 + - &536 name: commit_sha description: The SHA of the commit. in: path @@ -75911,7 +75952,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75936,9 +75977,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 - *17 - *19 responses: @@ -75948,9 +75989,9 @@ paths: application/json: schema: type: array - items: *533 + items: *534 examples: - default: *536 + default: *537 headers: Link: *38 x-github: @@ -75978,9 +76019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 requestBody: required: true content: @@ -76015,9 +76056,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *537 + default: *538 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76045,9 +76086,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: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 - *17 - *19 responses: @@ -76057,9 +76098,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: &643 + default: &644 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -76539,7 +76580,7 @@ paths: draft: false headers: Link: *38 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76596,11 +76637,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 - - &539 + - &540 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)" @@ -76615,9 +76656,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &631 + default: &632 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76704,8 +76745,8 @@ paths: '422': *15 '404': *6 '500': *89 - '503': *156 - '409': *100 + '503': *162 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76730,11 +76771,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: - - *416 - - *417 - - *539 + - *419 + - *420 - *540 - *541 + - *542 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -76768,9 +76809,9 @@ paths: type: integer check_runs: type: array - items: *489 + items: *490 examples: - default: *542 + default: *543 headers: Link: *38 x-github: @@ -76795,9 +76836,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: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -76805,7 +76846,7 @@ paths: schema: type: integer example: 1 - - *540 + - *541 - *17 - *19 responses: @@ -76823,7 +76864,7 @@ paths: type: integer check_suites: type: array - items: *493 + items: *494 examples: default: value: @@ -77023,9 +77064,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: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - *17 - *19 responses: @@ -77096,7 +77137,7 @@ paths: type: string total_count: type: integer - repository: *226 + repository: *232 commit_url: type: string format: uri @@ -77227,9 +77268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - *17 - *19 responses: @@ -77239,7 +77280,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Status description: The status of a commit. type: object @@ -77320,7 +77361,7 @@ paths: site_admin: false headers: Link: *38 - '301': *430 + '301': *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77348,8 +77389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -77382,11 +77423,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *543 + - *544 code_of_conduct_file: anyOf: - type: 'null' - - &544 + - &545 title: Community Health File type: object properties: @@ -77402,23 +77443,23 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 contributing: anyOf: - type: 'null' - - *544 + - *545 readme: anyOf: - type: 'null' - - *544 + - *545 issue_template: anyOf: - type: 'null' - - *544 + - *545 pull_request_template: anyOf: - type: 'null' - - *544 + - *545 required: - code_of_conduct - code_of_conduct_file @@ -77547,8 +77588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 - name: basehead @@ -77596,8 +77637,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *534 - merge_base_commit: *534 + base_commit: *535 + merge_base_commit: *535 status: type: string enum: @@ -77621,10 +77662,10 @@ paths: - 6 commits: type: array - items: *534 + items: *535 files: type: array - items: *545 + items: *546 required: - url - html_url @@ -77868,7 +77909,7 @@ paths: module Test" '404': *6 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77910,8 +77951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78064,7 +78105,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &546 + response-if-content-is-a-file: &547 summary: Response if content is a file value: type: file @@ -78201,7 +78242,7 @@ paths: - size - type - url - - &656 + - &657 title: Content File description: Content File type: object @@ -78419,7 +78460,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *546 + response-if-content-is-a-file: *547 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -78488,7 +78529,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *547 + '302': *548 '304': *35 x-github: githubCloudOnly: false @@ -78511,8 +78552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78607,7 +78648,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 title: File Commit description: File Commit type: object @@ -78763,7 +78804,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: example-for-creating-a-file: value: @@ -78817,7 +78858,7 @@ paths: schema: oneOf: - *3 - - &586 + - &587 description: Repository rule violation was detected type: object properties: @@ -78838,7 +78879,7 @@ paths: items: type: object properties: - placeholder_id: &696 + placeholder_id: &697 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -78870,8 +78911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78932,7 +78973,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default: value: @@ -78966,8 +79007,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *100 - '503': *156 + '409': *106 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78987,8 +79028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *416 - - *417 + - *419 + - *420 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -79112,23 +79153,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *416 - - *417 - - *278 - - *279 - - *280 + - *419 + - *420 - *281 + - *282 + - *283 + - *284 - 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 - - *282 - - *283 - - *284 - *285 - - *92 + - *286 + - *287 + - *288 + - *98 - name: page description: "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead." @@ -79145,10 +79186,10 @@ paths: schema: type: integer default: 30 - - *90 - - *91 - - *286 - - *287 + - *96 + - *97 + - *289 + - *290 responses: '200': description: Response @@ -79156,11 +79197,11 @@ paths: application/json: schema: type: array - items: &551 + items: &552 type: object description: A Dependabot alert. properties: - number: *102 + number: *108 state: type: string description: The state of the Dependabot alert. @@ -79175,7 +79216,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *103 + package: *109 manifest_path: type: string description: The full path to the dependency manifest file, @@ -79206,13 +79247,13 @@ paths: - direct - transitive - - security_advisory: *549 - security_vulnerability: *106 - url: *107 - html_url: *108 - created_at: *109 - updated_at: *110 - dismissed_at: *111 + security_advisory: *550 + security_vulnerability: *112 + url: *113 + html_url: *114 + created_at: *115 + updated_at: *116 + dismissed_at: *117 dismissed_by: anyOf: - type: 'null' @@ -79236,8 +79277,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *112 - auto_dismissed_at: *550 + fixed_at: *118 + auto_dismissed_at: *551 required: - number - state @@ -79467,9 +79508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *416 - - *417 - - &552 + - *419 + - *420 + - &553 name: alert_number in: path description: |- @@ -79478,13 +79519,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *102 + schema: *108 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -79597,9 +79638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *416 - - *417 - - *552 + - *419 + - *420 + - *553 requestBody: required: true content: @@ -79644,7 +79685,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -79750,7 +79791,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *7 x-github: githubCloudOnly: false @@ -79773,8 +79814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -79792,7 +79833,7 @@ paths: type: integer secrets: type: array - items: &555 + items: &556 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -79846,16 +79887,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79875,15 +79916,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *555 + schema: *556 examples: default: value: @@ -79909,9 +79950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -79939,7 +79980,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -79963,9 +80004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -79987,8 +80028,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: - - *416 - - *417 + - *419 + - *420 - 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 @@ -80162,8 +80203,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -80423,8 +80464,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -80507,7 +80548,7 @@ paths: - version - url additionalProperties: false - metadata: &556 + metadata: &557 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -80546,7 +80587,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *556 + metadata: *557 resolved: type: object description: A collection of resolved package dependencies. @@ -80560,7 +80601,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *556 + metadata: *557 relationship: type: string description: A notation of whether a dependency is requested @@ -80693,8 +80734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *416 - - *417 + - *419 + - *420 - name: sha description: The SHA recorded at creation time. in: query @@ -80735,9 +80776,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *558 + default: *559 headers: Link: *38 x-github: @@ -80803,8 +80844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -80886,7 +80927,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: simple-example: summary: Simple example @@ -80959,9 +81000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *416 - - *417 - - &559 + - *419 + - *420 + - &560 name: deployment_id description: deployment_id parameter in: path @@ -80973,7 +81014,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: default: value: @@ -81038,9 +81079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 responses: '204': description: Response @@ -81062,9 +81103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 - *17 - *19 responses: @@ -81074,7 +81115,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 title: Deployment Status description: The status of a deployment. type: object @@ -81238,9 +81279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 requestBody: required: true content: @@ -81315,9 +81356,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &561 + default: &562 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -81373,9 +81414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 - name: status_id in: path required: true @@ -81386,9 +81427,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *561 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -81415,12 +81456,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 - - *562 + - *419 + - *420 - *563 - *564 - *565 + - *566 - *17 - *19 responses: @@ -81430,9 +81471,9 @@ paths: application/json: schema: type: array - items: *566 + items: *567 examples: - default: *567 + default: *568 '404': *6 '403': *27 '500': *89 @@ -81456,8 +81497,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81469,7 +81510,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *566 + schema: *567 examples: default: value: @@ -81525,8 +81566,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81585,12 +81626,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *568 + - *419 + - *420 + - *91 + - *92 + - *93 + - *569 - *17 - *19 responses: @@ -81600,9 +81641,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '404': *6 '403': *27 '500': *89 @@ -81627,8 +81668,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81640,7 +81681,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -81698,8 +81739,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81768,8 +81809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -81826,8 +81867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -81845,7 +81886,7 @@ paths: - 5 environments: type: array - items: &572 + items: &573 title: Environment description: Details of a deployment environment type: object @@ -81907,7 +81948,7 @@ paths: type: string examples: - wait_timer - wait_timer: &574 + wait_timer: &575 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -81949,11 +81990,11 @@ paths: items: type: object properties: - type: *571 + type: *572 reviewer: anyOf: - *4 - - *257 + - *260 required: - id - node_id @@ -81976,7 +82017,7 @@ paths: - id - node_id - type - deployment_branch_policy: &575 + deployment_branch_policy: &576 type: - object - 'null' @@ -82093,9 +82134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *416 - - *417 - - &573 + - *419 + - *420 + - &574 name: environment_name in: path required: true @@ -82108,9 +82149,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &576 + default: &577 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -82194,9 +82235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: false content: @@ -82206,7 +82247,7 @@ paths: - object - 'null' properties: - wait_timer: *574 + wait_timer: *575 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -82225,14 +82266,14 @@ paths: items: type: object properties: - type: *571 + type: *572 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *575 + deployment_branch_policy: *576 additionalProperties: false examples: default: @@ -82252,9 +82293,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *576 + default: *577 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -82278,9 +82319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 responses: '204': description: Default response @@ -82305,9 +82346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 - *17 - *19 responses: @@ -82326,7 +82367,7 @@ paths: - 2 branch_policies: type: array - items: &577 + items: &578 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -82387,9 +82428,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: true content: @@ -82437,9 +82478,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - example-wildcard: &578 + example-wildcard: &579 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -82481,10 +82522,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - &579 + - *419 + - *420 + - *574 + - &580 name: branch_policy_id in: path required: true @@ -82496,9 +82537,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82517,10 +82558,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - *579 + - *419 + - *420 + - *574 + - *580 requestBody: required: true content: @@ -82549,9 +82590,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82570,10 +82611,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - *579 + - *419 + - *420 + - *574 + - *580 responses: '204': description: Response @@ -82598,9 +82639,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 responses: '200': description: List of deployment protection rules @@ -82617,7 +82658,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &580 + items: &581 title: Deployment protection rule description: Deployment protection rule type: object @@ -82639,7 +82680,7 @@ paths: for the environment. examples: - true - app: &581 + app: &582 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -82742,9 +82783,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 requestBody: content: application/json: @@ -82765,9 +82806,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *580 + schema: *581 examples: - default: &582 + default: &583 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -82802,9 +82843,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 - *19 - *17 responses: @@ -82824,7 +82865,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *581 + items: *582 examples: default: value: @@ -82859,10 +82900,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: - - *416 - - *417 - - *573 - - &583 + - *419 + - *420 + - *574 + - &584 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -82874,9 +82915,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82897,10 +82938,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: - - *573 - - *417 - - *416 - - *583 + - *574 + - *420 + - *419 + - *584 responses: '204': description: Response @@ -82926,9 +82967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 - *17 - *19 responses: @@ -82946,9 +82987,9 @@ paths: type: integer secrets: type: array - items: *453 + items: *456 examples: - default: *454 + default: *457 headers: Link: *38 x-github: @@ -82973,17 +83014,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 responses: '200': description: Response content: application/json: - schema: *455 + schema: *458 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83005,18 +83046,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83038,10 +83079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 requestBody: required: true content: @@ -83072,7 +83113,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -83098,10 +83139,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 responses: '204': description: Default response @@ -83126,10 +83167,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *416 - - *417 - - *573 - - *440 + - *419 + - *420 + - *574 + - *443 - *19 responses: '200': @@ -83146,9 +83187,9 @@ paths: type: integer variables: type: array - items: *457 + items: *460 examples: - default: *458 + default: *461 headers: Link: *38 x-github: @@ -83171,9 +83212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: true content: @@ -83200,7 +83241,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -83225,18 +83266,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *416 - - *417 - - *573 - - *239 + - *419 + - *420 + - *574 + - *245 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *585 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83257,10 +83298,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *416 - - *417 - - *239 - - *573 + - *419 + - *420 + - *245 + - *574 requestBody: required: true content: @@ -83302,10 +83343,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *416 - - *417 - - *239 - - *573 + - *419 + - *420 + - *245 + - *574 responses: '204': description: Response @@ -83327,8 +83368,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -83338,7 +83379,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: 200-response: value: @@ -83405,8 +83446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *416 - - *417 + - *419 + - *420 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -83428,7 +83469,7 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: default: value: @@ -83565,8 +83606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -83599,9 +83640,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 '400': *14 '422': *15 '403': *27 @@ -83622,8 +83663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -83674,7 +83715,7 @@ paths: schema: type: string '404': *6 - '409': *100 + '409': *106 '403': *27 '422': description: Validation failed @@ -83682,8 +83723,8 @@ paths: application/json: schema: oneOf: - - *203 - - *586 + - *209 + - *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83708,8 +83749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *416 - - *417 + - *419 + - *420 - name: file_sha in: path required: true @@ -83761,7 +83802,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83809,8 +83850,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -83919,7 +83960,7 @@ paths: description: Response content: application/json: - schema: &587 + schema: &588 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -84096,7 +84137,7 @@ paths: type: string '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84146,15 +84187,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 responses: '200': description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -84185,7 +84226,7 @@ paths: payload: verified_at: '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84210,9 +84251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *416 - - *417 - - &588 + - *419 + - *420 + - &589 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. @@ -84229,7 +84270,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Git Reference description: Git references within a repository type: object @@ -84284,7 +84325,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *38 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84305,17 +84346,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 responses: '200': description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -84325,7 +84366,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84344,8 +84385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84374,16 +84415,16 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84402,9 +84443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 requestBody: required: true content: @@ -84433,11 +84474,11 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84453,16 +84494,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84510,8 +84551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84578,7 +84619,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Git Tag description: Metadata for a Git tag type: object @@ -84634,7 +84675,7 @@ paths: - sha - type - url - verification: *591 + verification: *592 required: - sha - url @@ -84644,7 +84685,7 @@ paths: - tag - message examples: - default: &593 + default: &594 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -84671,7 +84712,7 @@ paths: schema: type: string '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84717,8 +84758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *416 - - *417 + - *419 + - *420 - name: tag_sha in: path required: true @@ -84729,11 +84770,11 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84755,8 +84796,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84830,7 +84871,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -84909,7 +84950,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84932,8 +84973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *416 - - *417 + - *419 + - *420 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -84956,7 +84997,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: default-response: summary: Default response @@ -84997,7 +85038,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85015,8 +85056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -85026,7 +85067,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 title: Webhook description: Webhooks for repositories. type: object @@ -85089,7 +85130,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &839 + last_response: &840 title: Hook Response type: object properties: @@ -85166,8 +85207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -85220,9 +85261,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: &596 + default: &597 value: type: Repository id: 12345678 @@ -85270,17 +85311,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '404': *6 x-github: githubCloudOnly: false @@ -85300,9 +85341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 requestBody: required: true content: @@ -85347,9 +85388,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '422': *15 '404': *6 x-github: @@ -85370,9 +85411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85396,9 +85437,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '200': description: Response @@ -85425,9 +85466,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 requestBody: required: false content: @@ -85471,11 +85512,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *17 - - *294 + - *297 responses: '200': description: Response @@ -85483,9 +85524,9 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: - default: *296 + default: *299 '400': *14 '422': *15 x-github: @@ -85504,18 +85545,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *16 responses: '200': description: Response content: application/json: - schema: *297 + schema: *300 examples: - default: *298 + default: *301 '400': *14 '422': *15 x-github: @@ -85534,9 +85575,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *16 responses: '202': *37 @@ -85559,9 +85600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85586,9 +85627,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85646,14 +85687,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &597 + schema: &598 title: Import description: A repository import from an external source. type: object @@ -85760,7 +85801,7 @@ paths: - html_url - authors_url examples: - default: &600 + default: &601 value: vcs: subversion use_lfs: true @@ -85776,7 +85817,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': &598 + '503': &599 description: Unavailable due to service under maintenance. content: application/json: @@ -85805,8 +85846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -85854,7 +85895,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: default: value: @@ -85879,7 +85920,7 @@ paths: type: string '422': *15 '404': *6 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85907,8 +85948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -85960,7 +86001,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: example-1: summary: Example 1 @@ -86008,7 +86049,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': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86031,12 +86072,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86062,9 +86103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *416 - - *417 - - &781 + - *419 + - *420 + - &782 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86078,7 +86119,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Porter Author description: Porter Author type: object @@ -86132,7 +86173,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': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86157,8 +86198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *416 - - *417 + - *419 + - *420 - name: author_id in: path required: true @@ -86188,7 +86229,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -86201,7 +86242,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86225,8 +86266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86267,7 +86308,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86295,8 +86336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -86323,11 +86364,11 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *600 + default: *601 '422': *15 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86350,8 +86391,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86359,8 +86400,8 @@ paths: application/json: schema: *20 examples: - default: *601 - '301': *430 + default: *602 + '301': *433 '404': *6 x-github: githubCloudOnly: false @@ -86380,8 +86421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86389,12 +86430,12 @@ paths: application/json: schema: anyOf: - - *311 + - *314 - type: object properties: {} additionalProperties: false examples: - default: &603 + default: &604 value: limit: collaborators_only origin: repository @@ -86419,13 +86460,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *602 + schema: *603 examples: default: summary: Example request body @@ -86437,9 +86478,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *603 + default: *604 '409': description: Response x-github: @@ -86461,8 +86502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -86485,8 +86526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -86496,9 +86537,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: &774 + default: &775 value: - id: 1 repository: @@ -86629,9 +86670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *416 - - *417 - - *315 + - *419 + - *420 + - *318 requestBody: required: false content: @@ -86660,7 +86701,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: default: value: @@ -86791,9 +86832,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *416 - - *417 - - *315 + - *419 + - *420 + - *318 responses: '204': description: Response @@ -86824,8 +86865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *416 - - *417 + - *419 + - *420 - 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 @@ -86873,7 +86914,7 @@ paths: required: false schema: type: string - - *319 + - *322 - name: sort description: What to sort results by. in: query @@ -86885,8 +86926,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -86896,9 +86937,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: &611 + default: &612 value: - id: 1 node_id: MDU6SXNzdWUx @@ -87046,7 +87087,7 @@ paths: state_reason: completed headers: Link: *38 - '301': *430 + '301': *433 '422': *15 '404': *6 x-github: @@ -87075,8 +87116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -87166,9 +87207,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: &608 + default: &609 value: id: 1 node_id: MDU6SXNzdWUx @@ -87322,9 +87363,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *156 + '503': *162 '404': *6 - '410': *427 + '410': *430 x-github: triggersNotification: true githubCloudOnly: false @@ -87352,9 +87393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *416 - - *417 - - *188 + - *419 + - *420 + - *194 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -87364,7 +87405,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -87374,9 +87415,9 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: - default: &610 + default: &611 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87434,17 +87475,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: &606 + default: &607 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87498,9 +87539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -87522,9 +87563,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *606 + default: *607 '422': *15 x-github: githubCloudOnly: false @@ -87542,9 +87583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -87564,9 +87605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -87592,9 +87633,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -87615,9 +87656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -87649,16 +87690,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -87680,10 +87721,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -87703,8 +87744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -87714,7 +87755,7 @@ paths: application/json: schema: type: array - items: &607 + items: &608 title: Issue Event description: Issue Event type: object @@ -87761,7 +87802,7 @@ paths: issue: anyOf: - type: 'null' - - *179 + - *185 label: title: Issue Event Label description: Issue Event Label @@ -87794,7 +87835,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *257 + requested_team: *260 dismissed_review: title: Issue Event Dismissed Review type: object @@ -87861,7 +87902,7 @@ paths: required: - from - to - author_association: *166 + author_association: *172 lock_reason: type: - string @@ -88053,8 +88094,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *416 - - *417 + - *419 + - *420 - name: event_id in: path required: true @@ -88065,7 +88106,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: default: value: @@ -88258,7 +88299,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *427 + '410': *430 '403': *27 x-github: githubCloudOnly: false @@ -88292,9 +88333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *416 - - *417 - - &609 + - *419 + - *420 + - &610 name: issue_number description: The number that identifies the issue. in: path @@ -88306,12 +88347,12 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '404': *6 - '410': *427 + '410': *430 '304': *35 x-github: githubCloudOnly: false @@ -88336,9 +88377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -88457,15 +88498,15 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 '422': *15 - '503': *156 + '503': *162 '403': *27 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88483,9 +88524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -88511,9 +88552,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88529,9 +88570,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: content: application/json: @@ -88556,9 +88597,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88580,9 +88621,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: assignee in: path required: true @@ -88622,10 +88663,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *416 - - *417 - - *609 - - *169 + - *419 + - *420 + - *610 + - *175 - *17 - *19 responses: @@ -88635,13 +88676,13 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: - default: *610 + default: *611 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88670,9 +88711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -88694,16 +88735,16 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *606 + default: *607 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -88731,9 +88772,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88743,14 +88784,14 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88778,9 +88819,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -88802,17 +88843,17 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *430 + '301': *433 '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -88843,9 +88884,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -88857,15 +88898,15 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 x-github: triggersNotification: true githubCloudOnly: false @@ -88891,9 +88932,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88903,14 +88944,14 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88927,9 +88968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88943,7 +88984,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &614 + - &615 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -88992,7 +89033,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &615 + - &616 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -89120,7 +89161,7 @@ paths: - performed_via_github_app - assignee - assigner - - &616 + - &617 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -89166,7 +89207,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &617 + - &618 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -89212,7 +89253,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &618 + - &619 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -89261,7 +89302,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &619 + - &620 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -89290,7 +89331,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *257 + requested_team: *260 requested_reviewer: *4 required: - review_requester @@ -89303,7 +89344,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &620 + - &621 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -89332,7 +89373,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *257 + requested_team: *260 requested_reviewer: *4 required: - review_requester @@ -89345,7 +89386,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &621 + - &622 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -89401,7 +89442,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &622 + - &623 title: Locked Issue Event description: Locked Issue Event type: object @@ -89446,7 +89487,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &623 + - &624 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -89507,7 +89548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &624 + - &625 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -89568,7 +89609,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &625 + - &626 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -89629,7 +89670,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &626 + - &627 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89722,7 +89763,7 @@ paths: color: red headers: Link: *38 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89739,9 +89780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -89751,7 +89792,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -89806,7 +89847,7 @@ paths: - color - default examples: - default: &613 + default: &614 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89824,9 +89865,9 @@ paths: default: false headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89843,9 +89884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -89904,12 +89945,12 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 - '301': *430 + default: *614 + '301': *433 '404': *6 - '410': *427 + '410': *430 '422': *15 x-github: githubCloudOnly: false @@ -89926,9 +89967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -89988,12 +90029,12 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 - '301': *430 + default: *614 + '301': *433 '404': *6 - '410': *427 + '410': *430 '422': *15 x-github: githubCloudOnly: false @@ -90010,15 +90051,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '204': description: Response - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90037,9 +90078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: name in: path required: true @@ -90052,7 +90093,7 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: default: value: @@ -90063,9 +90104,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90085,9 +90126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -90116,7 +90157,7 @@ paths: '204': description: Response '403': *27 - '410': *427 + '410': *430 '404': *6 '422': *15 x-github: @@ -90134,9 +90175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '204': description: Response @@ -90166,20 +90207,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '200': description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90196,9 +90237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - 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. @@ -90224,13 +90265,13 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90248,9 +90289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90282,16 +90323,16 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -90313,10 +90354,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *416 - - *417 - - *609 - - *408 + - *419 + - *420 + - *610 + - *411 responses: '204': description: Response @@ -90345,9 +90386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90369,9 +90410,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -90404,9 +90445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -90416,13 +90457,13 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90450,9 +90491,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90479,16 +90520,16 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -90508,9 +90549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90541,13 +90582,13 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 '403': *27 '404': *6 '422': *7 - '503': *156 + '503': *162 x-github: triggersNotification: true githubCloudOnly: false @@ -90565,9 +90606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -90582,7 +90623,6 @@ paths: description: Timeline Event type: object anyOf: - - *614 - *615 - *616 - *617 @@ -90595,6 +90635,7 @@ paths: - *624 - *625 - *626 + - *627 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -90642,12 +90683,12 @@ paths: issue_url: type: string format: uri - author_association: *166 + author_association: *172 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - event - actor @@ -90678,7 +90719,7 @@ paths: properties: type: type: string - issue: *179 + issue: *185 required: - event - created_at @@ -90900,7 +90941,7 @@ paths: type: string body_text: type: string - author_association: *166 + author_association: *172 required: - event - id @@ -90923,7 +90964,7 @@ paths: type: string comments: type: array - items: &645 + items: &646 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -91028,7 +91069,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *166 + author_association: *172 _links: type: object properties: @@ -91123,7 +91164,7 @@ paths: enum: - line - file - reactions: *167 + reactions: *173 body_html: type: string examples: @@ -91161,7 +91202,7 @@ paths: type: string comments: type: array - items: *533 + items: *534 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -91436,7 +91477,7 @@ paths: headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91453,8 +91494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -91464,7 +91505,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -91532,8 +91573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -91569,9 +91610,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 key: ssh-rsa AAA... @@ -91605,9 +91646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *416 - - *417 - - &629 + - *419 + - *420 + - &630 name: key_id description: The unique identifier of the key. in: path @@ -91619,9 +91660,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -91639,9 +91680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *416 - - *417 - - *629 + - *419 + - *420 + - *630 responses: '204': description: Response @@ -91661,8 +91702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -91672,9 +91713,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 headers: Link: *38 '404': *6 @@ -91695,8 +91736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -91732,9 +91773,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &630 + default: &631 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91766,8 +91807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91778,9 +91819,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *630 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -91797,8 +91838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91837,7 +91878,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -91863,8 +91904,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91890,8 +91931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -91927,8 +91968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '202': *37 '403': @@ -91956,8 +91997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -91983,9 +92024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *416 - - *417 - - *511 + - *419 + - *420 + - *512 responses: '200': description: Response @@ -92051,7 +92092,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 required: - _links - git_url @@ -92132,8 +92173,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92198,8 +92239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92233,9 +92274,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *534 + schema: *535 examples: - default: *631 + default: *632 '204': description: Response when already merged '404': @@ -92260,8 +92301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -92302,7 +92343,7 @@ paths: application/json: schema: type: array - items: *355 + items: *358 examples: default: value: @@ -92358,8 +92399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92399,9 +92440,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &632 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -92460,9 +92501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *416 - - *417 - - &633 + - *419 + - *420 + - &634 name: milestone_number description: The number that identifies the milestone. in: path @@ -92474,9 +92515,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *632 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -92493,9 +92534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 requestBody: required: false content: @@ -92533,9 +92574,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92551,9 +92592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 responses: '204': description: Response @@ -92574,9 +92615,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: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 - *17 - *19 responses: @@ -92586,9 +92627,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 headers: Link: *38 x-github: @@ -92607,12 +92648,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: - - *416 - - *417 - - *634 + - *419 + - *420 - *635 - - *169 - *636 + - *175 + - *637 - *17 - *19 responses: @@ -92622,9 +92663,9 @@ paths: application/json: schema: type: array - items: *191 + items: *197 examples: - default: *637 + default: *638 headers: Link: *38 x-github: @@ -92648,8 +92689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -92707,14 +92748,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &638 + schema: &639 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -92858,7 +92899,7 @@ paths: - custom_404 - public examples: - default: &639 + default: &640 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -92899,8 +92940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92955,11 +92996,11 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *639 + default: *640 '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92980,8 +93021,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -93068,7 +93109,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93089,14 +93130,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93116,8 +93157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -93127,7 +93168,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Page Build description: Page Build type: object @@ -93219,8 +93260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -93267,16 +93308,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: &641 + default: &642 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -93324,8 +93365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *416 - - *417 + - *419 + - *420 - name: build_id in: path required: true @@ -93336,9 +93377,9 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: *641 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93358,8 +93399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -93467,9 +93508,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: - - *416 - - *417 - - &642 + - *419 + - *420 + - &643 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -93527,11 +93568,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *416 - - *417 - - *642 + - *419 + - *420 + - *643 responses: - '204': *122 + '204': *128 '404': *6 x-github: githubCloudOnly: false @@ -93556,8 +93597,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -93825,7 +93866,7 @@ paths: description: Empty response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -93852,8 +93893,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Private vulnerability reporting status @@ -93890,10 +93931,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: - - *416 - - *417 + - *419 + - *420 responses: - '204': *122 + '204': *128 '422': *14 x-github: githubCloudOnly: false @@ -93912,10 +93953,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: - - *416 - - *417 + - *419 + - *420 responses: - '204': *122 + '204': *128 '422': *14 x-github: githubCloudOnly: false @@ -93936,8 +93977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: Indicates the state of the projects to return. in: query @@ -93958,7 +93999,7 @@ paths: application/json: schema: type: array - items: *349 + items: *352 examples: default: value: @@ -93998,7 +94039,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -94021,8 +94062,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94048,13 +94089,13 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: *426 + default: *429 '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -94077,8 +94118,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -94086,7 +94127,7 @@ paths: application/json: schema: type: array - items: *362 + items: *365 examples: default: value: @@ -94117,8 +94158,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94130,7 +94171,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *362 + items: *365 required: - properties examples: @@ -94180,8 +94221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -94241,9 +94282,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: *643 + default: *644 headers: Link: *38 '304': *35 @@ -94275,8 +94316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94343,7 +94384,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &648 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -94472,7 +94513,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 active_lock_reason: type: - string @@ -94527,7 +94568,7 @@ paths: type: - array - 'null' - items: *331 + items: *334 head: type: object properties: @@ -94565,14 +94606,14 @@ paths: _links: type: object properties: - comments: *356 - commits: *356 - statuses: *356 - html: *356 - issue: *356 - review_comments: *356 - review_comment: *356 - self: *356 + comments: *359 + commits: *359 + statuses: *359 + html: *359 + issue: *359 + review_comments: *359 + review_comment: *359 + self: *359 required: - comments - commits @@ -94582,8 +94623,8 @@ paths: - review_comments - review_comment - self - author_association: *166 - auto_merge: *644 + author_association: *172 + auto_merge: *645 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -94685,7 +94726,7 @@ paths: - merged_by - review_comments examples: - default: &648 + default: &649 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -95212,8 +95253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - name: sort in: query required: false @@ -95232,7 +95273,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -95242,9 +95283,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: &650 + default: &651 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95321,17 +95362,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95406,9 +95447,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -95430,9 +95471,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95448,9 +95489,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -95471,9 +95512,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -95499,9 +95540,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -95522,9 +95563,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -95556,16 +95597,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -95587,10 +95628,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -95633,9 +95674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *416 - - *417 - - &649 + - *419 + - *420 + - &650 name: pull_number description: The number that identifies the pull request. in: path @@ -95648,9 +95689,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '304': *35 '404': *6 '406': @@ -95659,7 +95700,7 @@ paths: application/json: schema: *3 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95685,9 +95726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -95729,9 +95770,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '422': *15 '403': *27 x-github: @@ -95753,9 +95794,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -95816,21 +95857,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95856,10 +95897,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: - - *416 - - *417 - - *649 - - *188 + - *419 + - *420 + - *650 + - *194 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -95869,7 +95910,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -95879,9 +95920,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: *650 + default: *651 headers: Link: *38 x-github: @@ -95914,9 +95955,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -96022,7 +96063,7 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: example-for-a-multi-line-comment: value: @@ -96110,10 +96151,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: - - *416 - - *417 - - *649 - - *178 + - *419 + - *420 + - *650 + - *184 requestBody: required: true content: @@ -96135,7 +96176,7 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: default: value: @@ -96221,9 +96262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -96233,9 +96274,9 @@ paths: application/json: schema: type: array - items: *534 + items: *535 examples: - default: *651 + default: *652 headers: Link: *38 x-github: @@ -96265,9 +96306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -96277,7 +96318,7 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: default: value: @@ -96296,7 +96337,7 @@ paths: Link: *38 '422': *15 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96315,9 +96356,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 responses: '204': description: Response if pull request has been merged @@ -96340,9 +96381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -96454,9 +96495,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 responses: '200': description: Response @@ -96472,7 +96513,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 required: - users - teams @@ -96531,9 +96572,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -96570,7 +96611,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -97106,9 +97147,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -97142,7 +97183,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -97647,9 +97688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -97659,7 +97700,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -97733,7 +97774,7 @@ paths: type: string body_text: type: string - author_association: *166 + author_association: *172 required: - id - node_id @@ -97815,9 +97856,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -97907,9 +97948,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &654 + default: &655 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97972,10 +98013,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: - - *416 - - *417 - - *649 - - &653 + - *419 + - *420 + - *650 + - &654 name: review_id description: The unique identifier of the review. in: path @@ -97987,9 +98028,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &655 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98048,10 +98089,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98074,7 +98115,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -98136,18 +98177,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 responses: '200': description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *654 + default: *655 '422': *7 '404': *6 x-github: @@ -98174,10 +98215,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 - *17 - *19 responses: @@ -98271,13 +98312,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *166 + author_association: *172 _links: type: object properties: - self: *356 - html: *356 - pull_request: *356 + self: *359 + html: *359 + pull_request: *359 required: - self - html @@ -98286,7 +98327,7 @@ paths: type: string body_html: type: string - reactions: *167 + reactions: *173 side: description: The side of the first line of the range for a multi-line comment. @@ -98435,10 +98476,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98467,7 +98508,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -98530,10 +98571,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98568,9 +98609,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *655 + default: *656 '404': *6 '422': *7 '403': *27 @@ -98592,9 +98633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -98658,8 +98699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *416 - - *417 + - *419 + - *420 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -98672,9 +98713,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: type: file encoding: base64 @@ -98716,8 +98757,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: - - *416 - - *417 + - *419 + - *420 - name: dir description: The alternate path to look for a README file in: path @@ -98737,9 +98778,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 '422': *15 x-github: @@ -98761,8 +98802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -98772,7 +98813,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Release description: A release. type: object @@ -98854,7 +98895,7 @@ paths: author: *4 assets: type: array - items: &659 + items: &660 title: Release Asset description: Data related to a release. type: object @@ -98929,7 +98970,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *167 + reactions: *173 required: - assets_url - upload_url @@ -99041,8 +99082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -99118,9 +99159,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &662 + default: &663 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -99225,9 +99266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *416 - - *417 - - &660 + - *419 + - *420 + - &661 name: asset_id description: The unique identifier of the asset. in: path @@ -99239,9 +99280,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: &661 + default: &662 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 @@ -99276,7 +99317,7 @@ paths: type: User site_admin: false '404': *6 - '302': *547 + '302': *548 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99292,9 +99333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *416 - - *417 - - *660 + - *419 + - *420 + - *661 requestBody: required: false content: @@ -99323,9 +99364,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *661 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99341,9 +99382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *416 - - *417 - - *660 + - *419 + - *420 + - *661 responses: '204': description: Response @@ -99367,8 +99408,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -99454,16 +99495,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99480,8 +99521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *416 - - *417 + - *419 + - *420 - name: tag description: tag parameter in: path @@ -99494,9 +99535,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -99518,9 +99559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *416 - - *417 - - &663 + - *419 + - *420 + - &664 name: release_id description: The unique identifier of the release. in: path @@ -99534,9 +99575,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: *658 + schema: *659 examples: - default: *662 + default: *663 '401': description: Unauthorized x-github: @@ -99554,9 +99595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 requestBody: required: false content: @@ -99620,9 +99661,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 '404': description: Not Found if the discussion category name is invalid content: @@ -99643,9 +99684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 responses: '204': description: Response @@ -99665,9 +99706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - *17 - *19 responses: @@ -99677,7 +99718,7 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: default: value: @@ -99759,9 +99800,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: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - name: name in: query required: true @@ -99787,7 +99828,7 @@ paths: description: Response for successful upload content: application/json: - schema: *659 + schema: *660 examples: response-for-successful-upload: value: @@ -99842,9 +99883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - 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. @@ -99868,9 +99909,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -99891,9 +99932,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 requestBody: required: true content: @@ -99923,16 +99964,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -99954,10 +99995,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *416 - - *417 - - *663 - - *408 + - *419 + - *420 + - *664 + - *411 responses: '204': description: Response @@ -99981,9 +100022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 - *17 - *19 responses: @@ -99999,8 +100040,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *131 - - &664 + - *137 + - &665 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -100019,66 +100060,66 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *132 - - *664 - - allOf: - - *133 - - *664 - - allOf: - - *134 - - *664 - - allOf: - - *665 - - *664 - - allOf: - - *135 - - *664 - - allOf: - - *136 - - *664 - - allOf: - - *137 - - *664 - allOf: - *138 - - *664 + - *665 - allOf: - *139 - - *664 + - *665 - allOf: - *140 - - *664 + - *665 + - allOf: + - *666 + - *665 - allOf: - *141 - - *664 + - *665 - allOf: - *142 - - *664 + - *665 - allOf: - *143 - - *664 + - *665 - allOf: - *144 - - *664 + - *665 - allOf: - *145 - - *664 + - *665 - allOf: - *146 - - *664 + - *665 - allOf: - *147 - - *664 + - *665 - allOf: - *148 - - *664 + - *665 - allOf: - *149 - - *664 + - *665 - allOf: - *150 - - *664 + - *665 + - allOf: + - *151 + - *665 + - allOf: + - *152 + - *665 + - allOf: + - *153 + - *665 + - allOf: + - *154 + - *665 + - allOf: + - *155 + - *665 + - allOf: + - *156 + - *665 examples: default: value: @@ -100117,8 +100158,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - name: includes_parents @@ -100129,7 +100170,7 @@ paths: schema: type: boolean default: true - - *666 + - *667 responses: '200': description: Response @@ -100137,7 +100178,7 @@ paths: application/json: schema: type: array - items: *151 + items: *157 examples: default: value: @@ -100184,8 +100225,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 requestBody: description: Request body required: true @@ -100205,16 +100246,16 @@ paths: - tag - push default: branch - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *125 + items: *136 + conditions: *131 rules: type: array description: An array of rules within the ruleset. - items: *667 + items: *668 required: - name - enforcement @@ -100245,9 +100286,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: &676 + default: &677 value: id: 42 name: super cool ruleset @@ -100294,12 +100335,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *416 - - *417 - - *668 - - *251 + - *419 + - *420 - *669 + - *93 - *670 + - *671 - *17 - *19 responses: @@ -100307,9 +100348,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '500': *89 x-github: @@ -100330,17 +100371,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *416 - - *417 - - *673 + - *419 + - *420 + - *674 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '500': *89 x-github: @@ -100368,8 +100409,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100389,9 +100430,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *676 + default: *677 '404': *6 '500': *89 put: @@ -100409,8 +100450,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100435,16 +100476,16 @@ paths: - branch - tag - push - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *125 + items: *136 + conditions: *131 rules: description: An array of rules within the ruleset. type: array - items: *667 + items: *668 examples: default: value: @@ -100472,9 +100513,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *676 + default: *677 '404': *6 '500': *89 delete: @@ -100492,8 +100533,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100516,8 +100557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - name: ruleset_id @@ -100533,9 +100574,9 @@ paths: application/json: schema: type: array - items: *155 + items: *161 examples: - default: *369 + default: *372 '404': *6 '500': *89 x-github: @@ -100554,8 +100595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100573,7 +100614,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: default: value: @@ -100628,21 +100669,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: - - *416 - - *417 - - *371 - - *372 - - *373 + - *419 + - *420 - *374 - - *92 - - *19 - - *17 - - *677 - - *678 - *375 - *376 - *377 + - *98 + - *19 + - *17 + - *678 + - *679 - *378 + - *379 + - *380 + - *381 responses: '200': description: Response @@ -100650,24 +100691,24 @@ paths: application/json: schema: type: array - items: &682 + items: &683 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *679 - resolution: *680 + state: *680 + resolution: *681 resolved_at: type: - string @@ -100761,7 +100802,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *681 + - *682 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -100861,7 +100902,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100883,16 +100924,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: - - *416 - - *417 - - *505 - - *378 + - *419 + - *420 + - *506 + - *381 responses: '200': description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -100923,7 +100964,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100944,9 +100985,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: true content: @@ -100954,8 +100995,8 @@ paths: schema: type: object properties: - state: *679 - resolution: *680 + state: *680 + resolution: *681 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100974,7 +101015,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -101027,7 +101068,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -101049,9 +101090,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 - *19 - *17 responses: @@ -101062,7 +101103,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &859 + items: &860 type: object properties: type: @@ -101089,7 +101130,6 @@ paths: - commit details: oneOf: - - *683 - *684 - *685 - *686 @@ -101102,6 +101142,7 @@ paths: - *693 - *694 - *695 + - *696 examples: default: value: @@ -101165,7 +101206,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101187,8 +101228,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101196,14 +101237,14 @@ paths: schema: type: object properties: - reason: &697 + reason: &698 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *696 + placeholder_id: *697 required: - reason - placeholder_id @@ -101220,7 +101261,7 @@ paths: schema: type: object properties: - reason: *697 + reason: *698 expire_at: type: - string @@ -101244,7 +101285,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -101264,13 +101305,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: - - *416 - - *417 + - *419 + - *420 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *156 + '503': *162 '200': description: Response content: @@ -101280,7 +101321,7 @@ paths: properties: incremental_scans: type: array - items: &698 + items: &699 description: Information on a single scan performed by secret scanning on the repository type: object @@ -101308,15 +101349,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *698 + items: *699 backfill_scans: type: array - items: *698 + items: *699 custom_pattern_backfill_scans: type: array items: allOf: - - *698 + - *699 - type: object properties: pattern_name: @@ -101386,9 +101427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *416 - - *417 - - *92 + - *419 + - *420 + - *98 - name: sort description: The property to sort the results by. in: query @@ -101400,8 +101441,8 @@ paths: - updated - published default: created - - *90 - - *91 + - *96 + - *97 - 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)." @@ -101431,9 +101472,9 @@ paths: application/json: schema: type: array - items: *699 + items: *700 examples: - default: *700 + default: *701 '400': *14 '404': *6 x-github: @@ -101456,8 +101497,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101537,7 +101578,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 required: - login - type @@ -101627,9 +101668,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: &702 + default: &703 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101862,8 +101903,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101976,7 +102017,7 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -102123,17 +102164,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '200': description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *702 + default: *703 '403': *27 '404': *6 x-github: @@ -102157,9 +102198,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 requestBody: required: true content: @@ -102239,7 +102280,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 required: - login - type @@ -102330,17 +102371,17 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *702 - add_credit: *702 + default: *703 + add_credit: *703 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *203 + schema: *209 examples: invalid_state_transition: value: @@ -102371,9 +102412,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '202': *37 '400': *14 @@ -102400,17 +102441,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '202': description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 '400': *14 '422': *15 '403': *27 @@ -102436,8 +102477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -102533,8 +102574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -102543,7 +102584,7 @@ paths: application/json: schema: type: array - items: &703 + items: &704 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -102556,7 +102597,7 @@ paths: - 1124 - -435 '202': *37 - '204': *122 + '204': *128 '422': description: Repository contains more than 10,000 commits x-github: @@ -102576,8 +102617,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -102628,7 +102669,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102655,8 +102696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -102728,7 +102769,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102750,8 +102791,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -102905,8 +102946,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -102916,7 +102957,7 @@ paths: application/json: schema: type: array - items: *703 + items: *704 examples: default: value: @@ -102929,7 +102970,7 @@ paths: - - 0 - 2 - 21 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102949,8 +102990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *416 - - *417 + - *419 + - *420 - name: sha in: path required: true @@ -103006,7 +103047,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: default: value: @@ -103060,8 +103101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103073,7 +103114,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -103093,14 +103134,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &705 + schema: &706 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103173,8 +103214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -103200,7 +103241,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: default: value: @@ -103227,8 +103268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -103248,8 +103289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103331,8 +103372,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103340,7 +103381,7 @@ paths: application/json: schema: type: array - items: &706 + items: &707 title: Tag protection description: Tag protection type: object @@ -103397,8 +103438,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -103421,7 +103462,7 @@ paths: description: Response content: application/json: - schema: *706 + schema: *707 examples: default: value: @@ -103452,8 +103493,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: - - *416 - - *417 + - *419 + - *420 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -103490,8 +103531,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *416 - - *417 + - *419 + - *420 - name: ref in: path required: true @@ -103527,8 +103568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103538,9 +103579,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 headers: Link: *38 '404': *6 @@ -103560,8 +103601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 responses: @@ -103569,7 +103610,7 @@ paths: description: Response content: application/json: - schema: &707 + schema: &708 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -103581,7 +103622,7 @@ paths: required: - names examples: - default: &708 + default: &709 value: names: - octocat @@ -103604,8 +103645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -103636,9 +103677,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *708 examples: - default: *708 + default: *709 '404': *6 '422': *7 x-github: @@ -103659,9 +103700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *416 - - *417 - - &709 + - *419 + - *420 + - &710 name: per description: The time frame to display results for. in: query @@ -103692,7 +103733,7 @@ paths: - 128 clones: type: array - items: &710 + items: &711 title: Traffic type: object properties: @@ -103779,8 +103820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103874,8 +103915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103938,9 +103979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *416 - - *417 - - *709 + - *419 + - *420 + - *710 responses: '200': description: Response @@ -103961,7 +104002,7 @@ paths: - 3782 views: type: array - items: *710 + items: *711 required: - uniques - count @@ -104038,8 +104079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -104075,7 +104116,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *232 examples: default: value: @@ -104313,8 +104354,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -104337,8 +104378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -104360,8 +104401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -104387,8 +104428,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *416 - - *417 + - *419 + - *420 - name: ref in: path required: true @@ -104480,9 +104521,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104523,7 +104564,7 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: default: value: @@ -104633,7 +104674,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &718 + - &719 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -104643,7 +104684,7 @@ paths: type: string examples: - members - - &723 + - &724 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -104655,7 +104696,7 @@ paths: format: int32 examples: - 1 - - &724 + - &725 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -104699,7 +104740,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &713 + items: &714 allOf: - type: object required: @@ -104781,7 +104822,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: &725 + meta: &726 type: object description: The metadata associated with the creation/updates to the user. @@ -104846,30 +104887,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &714 + '400': &715 description: Bad request content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '401': *712 - '403': &715 + schema: *712 + '401': *713 + '403': &716 description: Permission denied - '429': &716 + '429': &717 description: Too many requests content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '500': &717 + schema: *712 + '500': &718 description: Internal server error content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 + schema: *712 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -104893,7 +104934,7 @@ paths: required: true content: application/json: - schema: &721 + schema: &722 type: object required: - schemas @@ -104957,9 +104998,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *713 + schema: *714 examples: - group: &719 + group: &720 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -104978,13 +105019,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': *714 - '401': *712 - '403': *715 - '409': &722 + '400': *715 + '401': *713 + '403': *716 + '409': &723 description: Duplicate record detected - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105001,7 +105042,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: - - &720 + - &721 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -105010,22 +105051,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *718 + - *719 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *713 + schema: *714 examples: - default: *719 - '400': *714 - '401': *712 - '403': *715 + default: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105044,13 +105085,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: - - *720 + - *721 - *39 requestBody: required: true content: application/json: - schema: *721 + schema: *722 examples: group: summary: Group @@ -105076,17 +105117,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *713 + schema: *714 examples: - group: *719 - groupWithMembers: *719 - '400': *714 - '401': *712 - '403': *715 + group: *720 + groupWithMembers: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105110,13 +105151,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: - - *720 + - *721 - *39 requestBody: required: true content: application/json: - schema: &732 + schema: &733 type: object required: - Operations @@ -105176,17 +105217,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *713 + schema: *714 examples: - updateGroup: *719 - addMembers: *719 - '400': *714 - '401': *712 - '403': *715 + updateGroup: *720 + addMembers: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105202,17 +105243,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: - - *720 + - *721 - *39 responses: '204': description: Group was deleted, no content - '400': *714 - '401': *712 - '403': *715 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105246,8 +105287,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *723 - *724 + - *725 - *39 responses: '200': @@ -105281,7 +105322,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &727 + items: &728 allOf: - type: object required: @@ -105373,7 +105414,7 @@ paths: address. examples: - true - roles: &726 + roles: &727 type: array description: The roles assigned to the user. items: @@ -105432,7 +105473,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *725 + meta: *726 startIndex: type: integer description: A starting index for the returned page @@ -105471,11 +105512,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *714 - '401': *712 - '403': *715 - '429': *716 - '500': *717 + '400': *715 + '401': *713 + '403': *716 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105499,7 +105540,7 @@ paths: required: true content: application/json: - schema: &730 + schema: &731 type: object required: - schemas @@ -105592,9 +105633,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *726 + roles: *727 examples: - user: &731 + user: &732 summary: User value: schemas: @@ -105641,9 +105682,9 @@ paths: description: User has been created content: application/scim+json: - schema: *727 + schema: *728 examples: - user: &728 + user: &729 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -105669,13 +105710,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: *728 - '400': *714 - '401': *712 - '403': *715 - '409': *722 - '429': *716 - '500': *717 + enterpriseOwner: *729 + '400': *715 + '401': *713 + '403': *716 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105692,7 +105733,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: - - &729 + - &730 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -105705,15 +105746,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *727 + schema: *728 examples: - default: *728 - '400': *714 - '401': *712 - '403': *715 + default: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105735,30 +105776,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: - - *729 + - *730 - *39 requestBody: required: true content: application/json: - schema: *730 + schema: *731 examples: - user: *731 + user: *732 responses: '200': description: User was updated content: application/scim+json: - schema: *727 + schema: *728 examples: - user: *728 - '400': *714 - '401': *712 - '403': *715 + user: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105793,13 +105834,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: - - *729 + - *730 - *39 requestBody: required: true content: application/json: - schema: *732 + schema: *733 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -105839,18 +105880,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *727 + schema: *728 examples: - userMultiValuedProperties: *728 - userSingleValuedProperties: *728 - disableUser: *728 - '400': *714 - '401': *712 - '403': *715 + userMultiValuedProperties: *729 + userSingleValuedProperties: *729 + disableUser: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105870,17 +105911,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: - - *729 + - *730 - *39 responses: '204': description: User was deleted, no content - '400': *714 - '401': *712 - '403': *715 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105971,7 +106012,7 @@ paths: - 1 Resources: type: array - items: &733 + items: &734 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -106218,22 +106259,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &734 + '404': &735 description: Resource not found content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '403': &735 + schema: *712 + '403': &736 description: Forbidden content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '400': *714 - '429': *716 + schema: *712 + '400': *715 + '429': *717 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -106259,9 +106300,9 @@ paths: description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: &736 + default: &737 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -106284,17 +106325,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *734 - '403': *735 - '500': *717 + '404': *735 + '403': *736 + '500': *718 '409': description: Conflict content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '400': *714 + schema: *712 + '400': *715 requestBody: required: true content: @@ -106394,17 +106435,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 - '404': *734 - '403': *735 + default: *737 + '404': *735 + '403': *736 '304': *35 x-github: githubCloudOnly: true @@ -106428,18 +106469,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 + default: *737 '304': *35 - '404': *734 - '403': *735 + '404': *735 + '403': *736 requestBody: required: true content: @@ -106554,19 +106595,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 + default: *737 '304': *35 - '404': *734 - '403': *735 - '400': *714 + '404': *735 + '403': *736 + '400': *715 '429': description: Response content: @@ -106662,12 +106703,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *74 - - *729 + - *730 responses: '204': description: Response - '404': *734 - '403': *735 + '404': *735 + '403': *736 '304': *35 x-github: githubCloudOnly: true @@ -106782,7 +106823,7 @@ paths: html_url: type: string format: uri - repository: *226 + repository: *232 score: type: number file_size: @@ -106801,7 +106842,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &737 + text_matches: &738 title: Search Result Text Matches type: array items: @@ -106916,7 +106957,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *156 + '503': *162 '422': *15 '403': *27 x-github: @@ -106965,7 +107006,7 @@ paths: enum: - author-date - committer-date - - &738 + - &739 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 @@ -107034,7 +107075,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 comment_count: type: integer message: @@ -107053,7 +107094,7 @@ paths: url: type: string format: uri - verification: *591 + verification: *592 required: - author - committer @@ -107068,7 +107109,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 parents: type: array items: @@ -107080,12 +107121,12 @@ paths: type: string sha: type: string - repository: *226 + repository: *232 score: type: number node_id: type: string - text_matches: *737 + text_matches: *738 required: - sha - node_id @@ -107268,7 +107309,7 @@ paths: - interactions - created - updated - - *738 + - *739 - *17 - *19 - name: advanced_search @@ -107365,11 +107406,11 @@ paths: type: - string - 'null' - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: type: string state_reason: @@ -107383,7 +107424,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 comments: type: integer created_at: @@ -107397,7 +107438,7 @@ paths: - string - 'null' format: date-time - text_matches: *737 + text_matches: *738 pull_request: type: object properties: @@ -107435,7 +107476,7 @@ paths: type: string score: type: number - author_association: *166 + author_association: *172 draft: type: boolean repository: *65 @@ -107446,12 +107487,12 @@ paths: timeline_url: type: string format: uri - type: *316 + type: *319 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - assignee - closed_at @@ -107567,7 +107608,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *156 + '503': *162 '422': *15 '304': *35 '403': *27 @@ -107623,7 +107664,7 @@ paths: enum: - created - updated - - *738 + - *739 - *17 - *19 responses: @@ -107668,7 +107709,7 @@ paths: - 'null' score: type: number - text_matches: *737 + text_matches: *738 required: - id - node_id @@ -107754,7 +107795,7 @@ paths: - forks - help-wanted-issues - updated - - *738 + - *739 - *17 - *19 responses: @@ -107973,7 +108014,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 permissions: type: object properties: @@ -107991,7 +108032,7 @@ paths: - admin - pull - push - text_matches: *737 + text_matches: *738 temp_clone_token: type: string allow_merge_commit: @@ -108194,7 +108235,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *156 + '503': *162 '422': *15 '304': *35 x-github: @@ -108300,7 +108341,7 @@ paths: - string - 'null' format: uri - text_matches: *737 + text_matches: *738 related: type: - array @@ -108495,7 +108536,7 @@ paths: - followers - repositories - joined - - *738 + - *739 - *17 - *19 responses: @@ -108605,7 +108646,7 @@ paths: type: - boolean - 'null' - text_matches: *737 + text_matches: *738 blog: type: - string @@ -108667,7 +108708,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *156 + '503': *162 '422': *15 x-github: githubCloudOnly: false @@ -108687,7 +108728,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &742 + - &743 name: team_id description: The unique identifier of the team. in: path @@ -108699,9 +108740,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -108728,7 +108769,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *742 + - *743 requestBody: required: true content: @@ -108792,16 +108833,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '201': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 '422': *15 '403': *27 @@ -108829,7 +108870,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *742 + - *743 responses: '204': description: Response @@ -108860,8 +108901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *742 - - *92 + - *743 + - *98 - *17 - *19 responses: @@ -108871,9 +108912,9 @@ paths: application/json: schema: type: array - items: *399 + items: *402 examples: - default: *743 + default: *744 headers: Link: *38 x-github: @@ -108902,7 +108943,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *742 + - *743 requestBody: required: true content: @@ -108936,9 +108977,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: triggersNotification: true githubCloudOnly: false @@ -108965,16 +109006,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 responses: '200': description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108999,8 +109040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 requestBody: required: false content: @@ -109023,9 +109064,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *744 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109050,8 +109091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 responses: '204': description: Response @@ -109080,9 +109121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *742 - - *401 - - *92 + - *743 + - *404 + - *98 - *17 - *19 responses: @@ -109092,9 +109133,9 @@ paths: application/json: schema: type: array - items: *402 + items: *405 examples: - default: *745 + default: *746 headers: Link: *38 x-github: @@ -109123,8 +109164,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 + - *404 requestBody: required: true content: @@ -109146,9 +109187,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: triggersNotification: true githubCloudOnly: false @@ -109175,17 +109216,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 responses: '200': description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109210,9 +109251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 requestBody: required: true content: @@ -109234,9 +109275,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *746 + default: *747 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109261,9 +109302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 responses: '204': description: Response @@ -109292,9 +109333,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: - - *742 - - *401 + - *743 - *404 + - *407 - 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. @@ -109320,9 +109361,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -109351,9 +109392,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: - - *742 - - *401 + - *743 - *404 + - *407 requestBody: required: true content: @@ -109385,9 +109426,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109413,8 +109454,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: - - *742 - - *401 + - *743 + - *404 - 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. @@ -109440,9 +109481,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -109471,8 +109512,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: - - *742 - - *401 + - *743 + - *404 requestBody: required: true content: @@ -109504,9 +109545,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109530,7 +109571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -109540,9 +109581,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 x-github: @@ -109568,7 +109609,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *742 + - *743 - name: role description: Filters members returned by their role in the team. in: query @@ -109591,7 +109632,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -109619,8 +109660,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: if user is a member @@ -109656,8 +109697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109696,8 +109737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109733,16 +109774,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: - - *742 - - *248 + - *743 + - *254 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-user-is-a-team-maintainer: *747 + response-if-user-is-a-team-maintainer: *748 '404': *6 x-github: githubCloudOnly: false @@ -109775,8 +109816,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: - - *742 - - *248 + - *743 + - *254 requestBody: required: false content: @@ -109801,9 +109842,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-users-membership-with-team-is-now-pending: *748 + response-if-users-membership-with-team-is-now-pending: *749 '403': description: Forbidden if team synchronization is set up '422': @@ -109837,8 +109878,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: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109866,7 +109907,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -109876,9 +109917,9 @@ paths: application/json: schema: type: array - items: *414 + items: *417 examples: - default: *749 + default: *750 headers: Link: *38 '404': *6 @@ -109904,16 +109945,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: - - *742 - - *415 + - *743 + - *418 responses: '200': description: Response content: application/json: - schema: *414 + schema: *417 examples: - default: *750 + default: *751 '404': description: Not Found if project is not managed by this team x-github: @@ -109937,8 +109978,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: - - *742 - - *415 + - *743 + - *418 requestBody: required: false content: @@ -110005,8 +110046,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: - - *742 - - *415 + - *743 + - *418 responses: '204': description: Response @@ -110033,7 +110074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -110043,9 +110084,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '404': *6 @@ -110075,15 +110116,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *751 + schema: *752 examples: alternative-response-with-extra-repository-information: value: @@ -110234,9 +110275,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 requestBody: required: false content: @@ -110286,9 +110327,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 responses: '204': description: Response @@ -110317,15 +110358,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: - - *742 + - *743 responses: '200': description: Response content: application/json: - schema: *418 + schema: *421 examples: - default: *419 + default: *422 '403': *27 '404': *6 x-github: @@ -110352,7 +110393,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: - - *742 + - *743 requestBody: required: true content: @@ -110413,7 +110454,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *421 examples: default: value: @@ -110444,7 +110485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -110454,9 +110495,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - response-if-child-teams-exist: *752 + response-if-child-teams-exist: *753 headers: Link: *38 '404': *6 @@ -110489,7 +110530,7 @@ paths: application/json: schema: oneOf: - - &754 + - &755 title: Private User description: Private User type: object @@ -110739,7 +110780,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *753 + - *754 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -110899,7 +110940,7 @@ paths: description: Response content: application/json: - schema: *754 + schema: *755 examples: default: value: @@ -110978,7 +111019,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '304': *35 '404': *6 '403': *27 @@ -111001,7 +111042,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: - - *248 + - *254 responses: '204': description: If the user is blocked @@ -111029,7 +111070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -111053,7 +111094,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -111102,9 +111143,9 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: - default: *323 + default: *326 '304': *35 '500': *89 '401': *23 @@ -111243,21 +111284,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111297,7 +111338,7 @@ paths: type: integer secrets: type: array - items: &755 + items: &756 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -111339,7 +111380,7 @@ paths: - visibility - selected_repositories_url examples: - default: *527 + default: *528 headers: Link: *38 x-github: @@ -111411,13 +111452,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: - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *755 + schema: *756 examples: default: value: @@ -111447,7 +111488,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: - - *236 + - *242 requestBody: required: true content: @@ -111492,7 +111533,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -111520,7 +111561,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: - - *236 + - *242 responses: '204': description: Response @@ -111545,7 +111586,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: - - *236 + - *242 responses: '200': description: Response @@ -111561,9 +111602,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *756 + default: *757 '401': *23 '403': *27 '404': *6 @@ -111588,7 +111629,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: - - *236 + - *242 requestBody: required: true content: @@ -111642,7 +111683,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: - - *236 + - *242 - name: repository_id in: path required: true @@ -111675,7 +111716,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: - - *236 + - *242 - name: repository_id in: path required: true @@ -111707,15 +111748,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '304': *35 '500': *89 '401': *23 @@ -111741,7 +111782,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: - - *324 + - *327 requestBody: required: false content: @@ -111771,9 +111812,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 @@ -111795,7 +111836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '202': *37 '304': *35 @@ -111824,13 +111865,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: - - *324 + - *327 responses: '202': description: Response content: application/json: - schema: &757 + schema: &758 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -111883,7 +111924,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &758 + default: &759 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -111915,7 +111956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *324 + - *327 - name: export_id in: path required: true @@ -111928,9 +111969,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '404': *6 x-github: githubCloudOnly: false @@ -111951,7 +111992,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *324 + - *327 responses: '200': description: Response @@ -111967,9 +112008,9 @@ paths: type: integer machines: type: array - items: *526 + items: *527 examples: - default: *759 + default: *760 '304': *35 '500': *89 '401': *23 @@ -111998,7 +112039,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: - - *324 + - *327 requestBody: required: true content: @@ -112054,11 +112095,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *429 + repository: *432 machine: anyOf: - type: 'null' - - *526 + - *527 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -112855,15 +112896,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '304': *35 '500': *89 '400': *14 @@ -112875,7 +112916,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112895,15 +112936,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '500': *89 '401': *23 '403': *27 @@ -112933,9 +112974,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: &771 + default: &772 value: - id: 197 name: hello_docker @@ -113036,7 +113077,7 @@ paths: application/json: schema: type: array - items: &760 + items: &761 title: Email description: Email type: object @@ -113106,9 +113147,9 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: - default: &773 + default: &774 value: - email: octocat@github.com verified: true @@ -113185,7 +113226,7 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: default: value: @@ -113297,7 +113338,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '304': *35 @@ -113330,7 +113371,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '304': *35 @@ -113352,7 +113393,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: - - *248 + - *254 responses: '204': description: if the person is followed by the authenticated user @@ -113382,7 +113423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -113407,7 +113448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -113443,7 +113484,7 @@ paths: application/json: schema: type: array - items: &761 + items: &762 title: GPG Key description: A unique encryption key type: object @@ -113588,7 +113629,7 @@ paths: - subkeys - revoked examples: - default: &791 + default: &792 value: - id: 3 name: Octocat's GPG Key @@ -113673,9 +113714,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *762 examples: - default: &762 + default: &763 value: id: 3 name: Octocat's GPG Key @@ -113732,7 +113773,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: - - &763 + - &764 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -113744,9 +113785,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *762 examples: - default: *762 + default: *763 '404': *6 '304': *35 '403': *27 @@ -113769,7 +113810,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: - - *763 + - *764 responses: '204': description: Response @@ -113960,7 +114001,7 @@ paths: type: array items: *65 examples: - default: *221 + default: *227 headers: Link: *38 '404': *6 @@ -113985,7 +114026,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *220 + - *226 responses: '204': description: Response @@ -114011,7 +114052,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *220 + - *226 responses: '204': description: Response @@ -114045,12 +114086,12 @@ paths: application/json: schema: anyOf: - - *311 + - *314 - type: object properties: {} additionalProperties: false examples: - default: *312 + default: *315 '204': description: Response when there are no restrictions x-github: @@ -114074,7 +114115,7 @@ paths: required: true content: application/json: - schema: *602 + schema: *603 examples: default: value: @@ -114085,7 +114126,7 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: default: value: @@ -114166,7 +114207,7 @@ paths: - closed - all default: open - - *319 + - *322 - name: sort description: What to sort results by. in: query @@ -114178,8 +114219,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -114189,9 +114230,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *320 + default: *323 headers: Link: *38 '404': *6 @@ -114224,7 +114265,7 @@ paths: application/json: schema: type: array - items: &764 + items: &765 title: Key description: Key type: object @@ -114327,9 +114368,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: &765 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114362,15 +114403,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: - - *629 + - *630 responses: '200': description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: *765 + default: *766 '404': *6 '304': *35 '403': *27 @@ -114393,7 +114434,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: - - *629 + - *630 responses: '204': description: Response @@ -114426,7 +114467,7 @@ paths: application/json: schema: type: array - items: &766 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -114494,7 +114535,7 @@ paths: - id - type - login - plan: *182 + plan: *188 required: - billing_cycle - next_billing_date @@ -114505,7 +114546,7 @@ paths: - account - plan examples: - default: &767 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -114567,9 +114608,9 @@ paths: application/json: schema: type: array - items: *766 + items: *767 examples: - default: *767 + default: *768 headers: Link: *38 '304': *35 @@ -114609,7 +114650,7 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: default: value: @@ -114717,7 +114758,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: default: value: @@ -114800,7 +114841,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: default: value: @@ -114868,7 +114909,7 @@ paths: application/json: schema: type: array - items: *327 + items: *330 examples: default: value: @@ -115130,7 +115171,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -115310,7 +115351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *328 + - *331 - name: exclude in: query required: false @@ -115323,7 +115364,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -115517,7 +115558,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *328 + - *331 responses: '302': description: Response @@ -115543,7 +115584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *328 + - *331 responses: '204': description: Response @@ -115572,8 +115613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *328 - - *768 + - *331 + - *769 responses: '204': description: Response @@ -115597,7 +115638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *328 + - *331 - *17 - *19 responses: @@ -115607,9 +115648,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '404': *6 @@ -115646,7 +115687,7 @@ paths: type: array items: *60 examples: - default: *769 + default: *770 headers: Link: *38 '304': *35 @@ -115688,7 +115729,7 @@ paths: - docker - nuget - container - - *770 + - *771 - *19 - *17 responses: @@ -115698,10 +115739,10 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 - '400': *772 + default: *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115721,16 +115762,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: - - *335 - - *336 + - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: &792 + default: &793 value: id: 40201 name: octo-name @@ -115843,8 +115884,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: - - *335 - - *336 + - *338 + - *339 responses: '204': description: Response @@ -115874,8 +115915,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: - - *335 - - *336 + - *338 + - *339 - name: token description: package token schema: @@ -115907,8 +115948,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: - - *335 - - *336 + - *338 + - *339 - *19 - *17 - name: state @@ -115928,7 +115969,7 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: default: value: @@ -115977,15 +116018,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -116021,9 +116062,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '204': description: Response @@ -116053,9 +116094,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '204': description: Response @@ -116113,7 +116154,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: default: value: @@ -116185,9 +116226,9 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: - default: *773 + default: *774 headers: Link: *38 '304': *35 @@ -116300,7 +116341,7 @@ paths: type: array items: *65 examples: - default: &780 + default: &781 summary: Default response value: - id: 1296269 @@ -116618,9 +116659,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -116658,9 +116699,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: *774 + default: *775 headers: Link: *38 '304': *35 @@ -116683,12 +116724,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *315 + - *318 responses: '204': description: Response '403': *27 - '409': *100 + '409': *106 '404': *6 '304': *35 x-github: @@ -116706,11 +116747,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *315 + - *318 responses: '204': description: Response - '409': *100 + '409': *106 '304': *35 '404': *6 '403': *27 @@ -116739,7 +116780,7 @@ paths: application/json: schema: type: array - items: &775 + items: &776 title: Social account description: Social media account type: object @@ -116756,7 +116797,7 @@ paths: - provider - url examples: - default: &776 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -116819,9 +116860,9 @@ paths: application/json: schema: type: array - items: *775 + items: *776 examples: - default: *776 + default: *777 '422': *15 '304': *35 '404': *6 @@ -116909,7 +116950,7 @@ paths: application/json: schema: type: array - items: &777 + items: &778 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -116929,7 +116970,7 @@ paths: - title - created_at examples: - default: &793 + default: &794 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116996,9 +117037,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &778 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -117029,7 +117070,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: - - &779 + - &780 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -117041,9 +117082,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *778 + default: *779 '404': *6 '304': *35 '403': *27 @@ -117066,7 +117107,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: - - *779 + - *780 responses: '204': description: Response @@ -117095,7 +117136,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: - - &794 + - &795 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 @@ -117108,7 +117149,7 @@ paths: - created - updated default: created - - *92 + - *98 - *17 - *19 responses: @@ -117120,11 +117161,11 @@ paths: type: array items: *65 examples: - default-response: *780 + default-response: *781 application/vnd.github.v3.star+json: schema: type: array - items: &795 + items: &796 title: Starred Repository description: Starred Repository type: object @@ -117280,8 +117321,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response if this repository is starred by you @@ -117309,8 +117350,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -117334,8 +117375,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -117368,9 +117409,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '304': *35 @@ -117407,7 +117448,7 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: default: value: @@ -117485,7 +117526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *184 + - *190 responses: '200': description: Response @@ -117493,10 +117534,10 @@ paths: application/json: schema: oneOf: + - *755 - *754 - - *753 examples: - default-response: &786 + default-response: &787 summary: Default response value: login: octocat @@ -117531,7 +117572,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &787 + response-with-git-hub-plan-information: &788 summary: Response with GitHub plan information value: login: octocat @@ -117591,7 +117632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *781 + - *782 - *17 responses: '200': @@ -117602,7 +117643,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: example: ; rel="next" @@ -117625,8 +117666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *352 - - &782 + - *355 + - &783 name: user_id description: The unique identifier of the user. in: path @@ -117638,9 +117679,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -117662,11 +117703,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *352 - - *782 + - *355 + - *783 - *17 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -117674,9 +117715,9 @@ paths: application/json: schema: type: array - items: *353 + items: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -117698,17 +117739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *352 + - *355 + - *784 - *783 - - *782 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -117731,10 +117772,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: - - *352 - - *782 - - *90 - - *91 + - *355 + - *783 + - *96 + - *97 - *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) @@ -117762,9 +117803,9 @@ paths: application/json: schema: type: array - items: *358 + items: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -117785,8 +117826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *782 - - *352 + - *783 + - *355 requestBody: required: true description: Details of the item to add to the project. @@ -117823,9 +117864,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '304': *35 '403': *27 '401': *23 @@ -117845,9 +117886,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: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -117865,9 +117906,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -117888,9 +117929,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -117963,9 +118004,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '401': *23 '403': *27 '404': *6 @@ -117985,9 +118026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 responses: '204': description: Response @@ -118016,7 +118057,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *248 + - *254 responses: '200': description: Response @@ -118024,11 +118065,11 @@ paths: application/json: schema: oneOf: + - *755 - *754 - - *753 examples: - default-response: *786 - response-with-git-hub-plan-information: *787 + default-response: *787 + response-with-git-hub-plan-information: *788 '404': *6 x-github: githubCloudOnly: false @@ -118052,9 +118093,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *90 - - *91 - - *248 + - *96 + - *97 + - *254 requestBody: required: true content: @@ -118077,8 +118118,8 @@ paths: required: - subject_digests examples: - default: *788 - withPredicateType: *789 + default: *789 + withPredicateType: *790 responses: '200': description: Response @@ -118132,7 +118173,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *790 + default: *791 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118150,7 +118191,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *248 + - *254 requestBody: required: true content: @@ -118215,7 +118256,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *248 + - *254 - name: subject_digest description: Subject Digest in: path @@ -118246,7 +118287,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *248 + - *254 - name: attestation_id description: Attestation ID in: path @@ -118282,9 +118323,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *90 - - *91 - - *248 + - *96 + - *97 + - *254 - name: subject_digest description: Subject Digest in: path @@ -118334,12 +118375,12 @@ paths: bundle_url: type: string examples: - default: *469 + default: *472 '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -118365,7 +118406,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: - - *248 + - *254 responses: '200': description: Response @@ -118373,9 +118414,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 + default: *772 '403': *27 '401': *23 x-github: @@ -118398,7 +118439,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118408,7 +118449,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118479,7 +118520,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *248 + - *254 - *74 - *17 - *19 @@ -118490,7 +118531,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118569,7 +118610,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118579,7 +118620,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118646,7 +118687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118658,7 +118699,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -118677,7 +118718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118689,7 +118730,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -118708,7 +118749,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: - - *248 + - *254 - name: target_user in: path required: true @@ -118735,8 +118776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *248 - - *169 + - *254 + - *175 - *17 - *19 responses: @@ -118746,9 +118787,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '422': *15 @@ -118769,7 +118810,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: - - *248 + - *254 - *17 - *19 responses: @@ -118779,9 +118820,9 @@ paths: application/json: schema: type: array - items: *761 + items: *762 examples: - default: *791 + default: *792 headers: Link: *38 x-github: @@ -118805,7 +118846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *248 + - *254 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -118877,7 +118918,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: - - *248 + - *254 responses: '200': description: Response @@ -118885,7 +118926,7 @@ paths: application/json: schema: *20 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118903,7 +118944,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118959,7 +119000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118971,7 +119012,7 @@ paths: type: array items: *60 examples: - default: *769 + default: *770 headers: Link: *38 x-github: @@ -119010,8 +119051,8 @@ paths: - docker - nuget - container - - *770 - - *248 + - *771 + - *254 - *19 - *17 responses: @@ -119021,12 +119062,12 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 + default: *772 '403': *27 '401': *23 - '400': *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119046,17 +119087,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *792 + default: *793 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119077,9 +119118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '204': description: Response @@ -119111,9 +119152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 - name: token description: package token schema: @@ -119145,9 +119186,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: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '200': description: Response @@ -119155,7 +119196,7 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: default: value: @@ -119213,16 +119254,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: - - *335 - - *336 - *338 - - *248 + - *339 + - *341 + - *254 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -119257,10 +119298,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *335 - - *336 - - *248 - *338 + - *339 + - *254 + - *341 responses: '204': description: Response @@ -119292,10 +119333,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *335 - - *336 - - *248 - *338 + - *339 + - *254 + - *341 responses: '204': description: Response @@ -119321,7 +119362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-user-projects parameters: - - *248 + - *254 - name: state description: Indicates the state of the projects to return. in: query @@ -119342,7 +119383,7 @@ paths: application/json: schema: type: array - items: *349 + items: *352 examples: default: value: @@ -119400,15 +119441,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *248 + - *254 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -119417,9 +119458,9 @@ paths: application/json: schema: type: array - items: *350 + items: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -119446,7 +119487,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: - - *248 + - *254 - *17 - *19 responses: @@ -119456,7 +119497,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -119535,7 +119576,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: - - *248 + - *254 - *17 - *19 responses: @@ -119545,7 +119586,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -119622,7 +119663,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *248 + - *254 - name: type description: Limit results to repositories of the specified type. in: query @@ -119665,9 +119706,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -119691,15 +119732,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119721,15 +119762,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119751,15 +119792,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *391 + schema: *394 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119779,11 +119820,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: - - *248 - - *195 - - *196 - - *197 - - *198 + - *254 + - *201 + - *202 + - *203 + - *204 responses: '200': description: Response when getting a billing usage report @@ -119854,7 +119895,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -119872,7 +119913,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: - - *248 + - *254 - *17 - *19 responses: @@ -119882,9 +119923,9 @@ paths: application/json: schema: type: array - items: *775 + items: *776 examples: - default: *776 + default: *777 headers: Link: *38 x-github: @@ -119904,7 +119945,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: - - *248 + - *254 - *17 - *19 responses: @@ -119914,9 +119955,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *793 + default: *794 headers: Link: *38 x-github: @@ -119940,9 +119981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *248 - - *794 - - *92 + - *254 + - *795 + - *98 - *17 - *19 responses: @@ -119953,11 +119994,11 @@ paths: schema: anyOf: - type: array - items: *795 + items: *796 - type: array items: *65 examples: - default-response: *780 + default-response: *781 headers: Link: *38 x-github: @@ -119976,7 +120017,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -119986,9 +120027,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -120117,7 +120158,7 @@ webhooks: type: string enum: - disabled - enterprise: &796 + enterprise: &797 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120186,7 +120227,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &797 + installation: &798 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120207,7 +120248,7 @@ webhooks: required: - id - node_id - organization: &798 + organization: &799 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120280,7 +120321,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &799 + repository: &800 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -120309,7 +120350,7 @@ webhooks: license: anyOf: - type: 'null' - - *180 + - *186 organization: anyOf: - type: 'null' @@ -121193,10 +121234,10 @@ webhooks: type: string enum: - enabled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -121272,11 +121313,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: &800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: &801 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) @@ -121499,11 +121540,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: *800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: *801 sender: *4 required: - action @@ -121691,11 +121732,11 @@ webhooks: - everyone required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: *800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: *801 sender: *4 required: - action @@ -121766,7 +121807,7 @@ webhooks: required: true content: application/json: - schema: &803 + schema: &804 title: Exemption request cancellation event type: object properties: @@ -121774,11 +121815,11 @@ webhooks: type: string enum: - cancelled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: &801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: &802 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -122016,7 +122057,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &802 + items: &803 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -122126,7 +122167,7 @@ webhooks: required: true content: application/json: - schema: &804 + schema: &805 title: Exemption request completed event type: object properties: @@ -122134,11 +122175,11 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 sender: *4 required: - action @@ -122208,7 +122249,7 @@ webhooks: required: true content: application/json: - schema: &805 + schema: &806 title: Exemption request created event type: object properties: @@ -122216,11 +122257,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 sender: *4 required: - action @@ -122290,7 +122331,7 @@ webhooks: required: true content: application/json: - schema: &806 + schema: &807 title: Exemption response dismissed event type: object properties: @@ -122298,12 +122339,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 - exemption_response: *802 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 + exemption_response: *803 sender: *4 required: - action @@ -122375,7 +122416,7 @@ webhooks: required: true content: application/json: - schema: &807 + schema: &808 title: Exemption response submitted event type: object properties: @@ -122383,12 +122424,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 - exemption_response: *802 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 + exemption_response: *803 sender: *4 required: - action @@ -122461,7 +122502,7 @@ webhooks: required: true content: application/json: - schema: *803 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122528,7 +122569,7 @@ webhooks: required: true content: application/json: - schema: *804 + schema: *805 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122595,7 +122636,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122662,7 +122703,7 @@ webhooks: required: true content: application/json: - schema: *806 + schema: *807 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122730,7 +122771,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122808,7 +122849,7 @@ webhooks: type: string enum: - completed - check_run: &809 + check_run: &810 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122873,8 +122914,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *488 - repository: *226 + items: *489 + repository: *232 status: type: string enum: @@ -122918,7 +122959,7 @@ webhooks: - examples: - neutral - deployment: *808 + deployment: *809 details_url: type: string examples: @@ -122978,7 +123019,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *488 + items: *489 started_at: type: string format: date-time @@ -123016,10 +123057,10 @@ webhooks: - output - app - pull_requests - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -123412,11 +123453,11 @@ webhooks: type: string enum: - created - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -123812,11 +123853,11 @@ webhooks: type: string enum: - requested_action - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 requested_action: description: The action requested by the user. type: object @@ -124221,11 +124262,11 @@ webhooks: type: string enum: - rerequested - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -125217,10 +125258,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -125905,10 +125946,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -126587,10 +126628,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -126756,7 +126797,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126908,20 +126949,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &810 + commit_oid: &811 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: *796 - installation: *797 - organization: *798 - ref: &811 + enterprise: *797 + installation: *798 + organization: *799 + ref: &812 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: *799 + repository: *800 sender: *4 required: - action @@ -127085,7 +127126,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127326,12 +127367,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -127429,7 +127470,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127611,12 +127652,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -127782,7 +127823,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127959,12 +128000,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -128064,7 +128105,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128244,9 +128285,9 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -128254,7 +128295,7 @@ webhooks: type: - string - 'null' - repository: *799 + repository: *800 sender: *4 required: - action @@ -128350,7 +128391,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128497,12 +128538,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -128764,10 +128805,10 @@ webhooks: - updated_at - author_association - body - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -128848,18 +128889,18 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *798 - pusher_type: &812 + organization: *799 + pusher_type: &813 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &813 + ref: &814 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -128869,7 +128910,7 @@ webhooks: enum: - tag - branch - repository: *799 + repository: *800 sender: *4 required: - ref @@ -128951,10 +128992,10 @@ webhooks: type: string enum: - created - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129039,9 +129080,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129118,10 +129159,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129198,10 +129239,10 @@ webhooks: type: string enum: - updated - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129278,19 +129319,19 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - repository: *799 - organization: *798 + enterprise: *797 + installation: *798 + repository: *800 + organization: *799 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *362 + items: *365 old_property_values: type: array description: The old custom property values for the repository. - items: *362 + items: *365 required: - action - repository @@ -129366,18 +129407,18 @@ webhooks: title: delete event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - pusher_type: *812 - ref: *813 + enterprise: *797 + installation: *798 + organization: *799 + pusher_type: *813 + ref: *814 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *799 + repository: *800 sender: *4 required: - ref @@ -129461,11 +129502,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129549,11 +129590,11 @@ webhooks: type: string enum: - auto_reopened - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129637,11 +129678,11 @@ webhooks: type: string enum: - created - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129723,11 +129764,11 @@ webhooks: type: string enum: - dismissed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129809,11 +129850,11 @@ webhooks: type: string enum: - fixed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129896,11 +129937,11 @@ webhooks: type: string enum: - reintroduced - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129982,11 +130023,11 @@ webhooks: type: string enum: - reopened - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -130063,9 +130104,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - key: &814 + enterprise: *797 + installation: *798 + key: &815 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130103,8 +130144,8 @@ webhooks: - verified - created_at - read_only - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -130181,11 +130222,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - key: *814 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + key: *815 + organization: *799 + repository: *800 sender: *4 required: - action @@ -130757,12 +130798,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: &818 + workflow: &819 title: Workflow type: - object @@ -131500,13 +131541,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *557 + deployment: *558 pull_requests: type: array - items: *647 - repository: *799 - organization: *798 - installation: *797 + items: *648 + repository: *800 + organization: *799 + installation: *798 sender: *4 responses: '200': @@ -131577,7 +131618,7 @@ webhooks: type: string enum: - approved - approver: &815 + approver: &816 type: object properties: avatar_url: @@ -131620,11 +131661,11 @@ webhooks: type: string comment: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - reviewers: &816 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + reviewers: &817 type: array items: type: object @@ -131705,7 +131746,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &817 + workflow_job_run: &818 type: object properties: conclusion: @@ -132451,18 +132492,18 @@ webhooks: type: string enum: - rejected - approver: *815 + approver: *816 comment: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - reviewers: *816 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + reviewers: *817 sender: *4 since: type: string - workflow_job_run: *817 + workflow_job_run: *818 workflow_job_runs: type: array items: @@ -133179,13 +133220,13 @@ webhooks: type: string enum: - requested - enterprise: *796 + enterprise: *797 environment: type: string - installation: *797 - organization: *798 - repository: *799 - requestor: &823 + installation: *798 + organization: *799 + repository: *800 + requestor: &824 title: User type: - object @@ -135128,12 +135169,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Deployment Workflow Run type: @@ -135824,7 +135865,7 @@ webhooks: type: string enum: - answered - answer: &821 + answer: &822 type: object properties: author_association: @@ -135984,7 +136025,7 @@ webhooks: - created_at - updated_at - body - discussion: &819 + discussion: &820 title: Discussion description: A Discussion in a repository. type: object @@ -136280,7 +136321,7 @@ webhooks: - id labels: type: array - items: *612 + items: *613 required: - repository_url - category @@ -136302,10 +136343,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136432,11 +136473,11 @@ webhooks: - from required: - category - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136519,11 +136560,11 @@ webhooks: type: string enum: - closed - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136605,7 +136646,7 @@ webhooks: type: string enum: - created - comment: &820 + comment: &821 type: object properties: author_association: @@ -136765,11 +136806,11 @@ webhooks: - updated_at - body - reactions - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136852,12 +136893,12 @@ webhooks: type: string enum: - deleted - comment: *820 - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + comment: *821 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136952,12 +136993,12 @@ webhooks: - from required: - body - comment: *820 - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + comment: *821 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137041,11 +137082,11 @@ webhooks: type: string enum: - created - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137127,11 +137168,11 @@ webhooks: type: string enum: - deleted - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137231,11 +137272,11 @@ webhooks: type: string required: - from - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137317,10 +137358,10 @@ webhooks: type: string enum: - labeled - discussion: *819 - enterprise: *796 - installation: *797 - label: &822 + discussion: *820 + enterprise: *797 + installation: *798 + label: &823 title: Label type: object properties: @@ -137353,8 +137394,8 @@ webhooks: - color - default - description - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137437,11 +137478,11 @@ webhooks: type: string enum: - locked - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137523,11 +137564,11 @@ webhooks: type: string enum: - pinned - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137609,11 +137650,11 @@ webhooks: type: string enum: - reopened - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137698,16 +137739,16 @@ webhooks: changes: type: object properties: - new_discussion: *819 - new_repository: *799 + new_discussion: *820 + new_repository: *800 required: - new_discussion - new_repository - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137790,10 +137831,10 @@ webhooks: type: string enum: - unanswered - discussion: *819 - old_answer: *821 - organization: *798 - repository: *799 + discussion: *820 + old_answer: *822 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137875,12 +137916,12 @@ webhooks: type: string enum: - unlabeled - discussion: *819 - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137963,11 +138004,11 @@ webhooks: type: string enum: - unlocked - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -138049,11 +138090,11 @@ webhooks: type: string enum: - unpinned - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -138122,7 +138163,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138185,7 +138226,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138251,7 +138292,7 @@ webhooks: required: true content: application/json: - schema: *803 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138317,7 +138358,7 @@ webhooks: required: true content: application/json: - schema: *804 + schema: *805 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138383,7 +138424,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138449,7 +138490,7 @@ webhooks: required: true content: application/json: - schema: *806 + schema: *807 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138515,7 +138556,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138582,7 +138623,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *796 + enterprise: *797 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -139260,9 +139301,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - forkee @@ -139408,9 +139449,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pages: description: The pages that were updated. type: array @@ -139448,7 +139489,7 @@ webhooks: - action - sha - html_url - repository: *799 + repository: *800 sender: *4 required: - pages @@ -139524,10 +139565,10 @@ webhooks: type: string enum: - created - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: &824 + organization: *799 + repositories: &825 description: An array of repository objects that the installation can access. type: array @@ -139553,8 +139594,8 @@ webhooks: - name - full_name - private - repository: *799 - requester: *823 + repository: *800 + requester: *824 sender: *4 required: - action @@ -139629,11 +139670,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -139710,11 +139751,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -139791,10 +139832,10 @@ webhooks: type: string enum: - added - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories_added: &825 + organization: *799 + repositories_added: &826 description: An array of repository objects, which were added to the installation. type: array @@ -139840,15 +139881,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *799 - repository_selection: &826 + repository: *800 + repository_selection: &827 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *823 + requester: *824 sender: *4 required: - action @@ -139927,10 +139968,10 @@ webhooks: type: string enum: - removed - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories_added: *825 + organization: *799 + repositories_added: *826 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139957,9 +139998,9 @@ webhooks: - name - full_name - private - repository: *799 - repository_selection: *826 - requester: *823 + repository: *800 + repository_selection: *827 + requester: *824 sender: *4 required: - action @@ -140038,11 +140079,11 @@ webhooks: type: string enum: - suspend - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -140225,10 +140266,10 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 target_type: type: string @@ -140307,11 +140348,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -140559,8 +140600,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -141377,8 +141418,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141395,7 +141436,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -141739,8 +141780,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -141820,7 +141861,7 @@ webhooks: type: string enum: - deleted - comment: &827 + comment: &828 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -141987,8 +142028,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -142801,8 +142842,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142819,7 +142860,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -143165,8 +143206,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -143246,7 +143287,7 @@ webhooks: type: string enum: - edited - changes: &851 + changes: &852 description: The changes to the comment. type: object properties: @@ -143258,9 +143299,9 @@ webhooks: type: string required: - from - comment: *827 - enterprise: *796 - installation: *797 + comment: *828 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144076,8 +144117,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144094,7 +144135,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -144438,8 +144479,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144523,15 +144564,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 + blocking_issue: *185 blocking_issue_repo: *65 - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144619,15 +144660,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 + blocking_issue: *185 blocking_issue_repo: *65 - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144714,15 +144755,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocked_issue_repo: *65 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 - installation: *797 - organization: *798 - repository: *799 + blocking_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144810,15 +144851,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocked_issue_repo: *65 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 - installation: *797 - organization: *798 - repository: *799 + blocking_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144903,10 +144944,10 @@ webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *796 - installation: *797 - issue: &830 + assignee: *824 + enterprise: *797 + installation: *798 + issue: &831 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -145718,11 +145759,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145739,7 +145780,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -145842,8 +145883,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -145923,8 +145964,8 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -146741,11 +146782,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146762,7 +146803,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -147008,8 +147049,8 @@ webhooks: required: - state - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -147088,8 +147129,8 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147897,11 +147938,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147918,7 +147959,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -148020,8 +148061,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -148100,8 +148141,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148932,11 +148973,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148953,7 +148994,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -149034,7 +149075,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &828 + milestone: &829 title: Milestone description: A collection of related issues and pull requests. type: object @@ -149177,8 +149218,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -149277,8 +149318,8 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -150090,11 +150131,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150108,7 +150149,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -150214,9 +150255,9 @@ webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *798 - repository: *799 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -150296,8 +150337,8 @@ webhooks: type: string enum: - labeled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151108,11 +151149,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151126,7 +151167,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -151232,9 +151273,9 @@ webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *798 - repository: *799 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -151314,8 +151355,8 @@ webhooks: type: string enum: - locked - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152151,11 +152192,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152169,7 +152210,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -152252,8 +152293,8 @@ webhooks: format: uri user_view_type: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -152332,8 +152373,8 @@ webhooks: type: string enum: - milestoned - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153163,11 +153204,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153184,7 +153225,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -153264,9 +153305,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *828 - organization: *798 - repository: *799 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -154158,11 +154199,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154258,7 +154299,7 @@ webhooks: required: - login - id - type: *316 + type: *319 required: - id - number @@ -154739,8 +154780,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155552,11 +155593,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155573,7 +155614,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -155675,8 +155716,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -155756,9 +155797,9 @@ webhooks: type: string enum: - pinned - enterprise: *796 - installation: *797 - issue: &829 + enterprise: *797 + installation: *798 + issue: &830 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -156564,11 +156605,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156585,7 +156626,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -156687,8 +156728,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -156767,8 +156808,8 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157602,11 +157643,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157703,9 +157744,9 @@ webhooks: format: uri user_view_type: type: string - type: *316 - organization: *798 - repository: *799 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -158594,11 +158635,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158615,7 +158656,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -159197,11 +159238,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *796 - installation: *797 - issue: *829 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *830 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159281,12 +159322,12 @@ webhooks: type: string enum: - typed - enterprise: *796 - installation: *797 - issue: *830 - type: *316 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159367,7 +159408,7 @@ webhooks: type: string enum: - unassigned - assignee: &854 + assignee: &855 title: User type: - object @@ -159439,11 +159480,11 @@ webhooks: required: - login - id - enterprise: *796 - installation: *797 - issue: *830 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159522,12 +159563,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *796 - installation: *797 - issue: *830 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159607,8 +159648,8 @@ webhooks: type: string enum: - unlocked - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160442,11 +160483,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160463,7 +160504,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -160543,8 +160584,8 @@ webhooks: format: uri user_view_type: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160624,11 +160665,11 @@ webhooks: type: string enum: - unpinned - enterprise: *796 - installation: *797 - issue: *829 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *830 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160707,12 +160748,12 @@ webhooks: type: string enum: - untyped - enterprise: *796 - installation: *797 - issue: *830 - type: *316 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160792,11 +160833,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160874,11 +160915,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160988,11 +161029,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -161074,9 +161115,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: &831 + enterprise: *797 + installation: *798 + marketplace_purchase: &832 title: Marketplace Purchase type: object required: @@ -161164,8 +161205,8 @@ webhooks: type: integer unit_count: type: integer - organization: *798 - previous_marketplace_purchase: &832 + organization: *799 + previous_marketplace_purchase: &833 title: Marketplace Purchase type: object properties: @@ -161249,7 +161290,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161329,10 +161370,10 @@ webhooks: - changed effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -161420,7 +161461,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161502,10 +161543,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -161591,7 +161632,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161672,8 +161713,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 marketplace_purchase: title: Marketplace Purchase type: object @@ -161759,9 +161800,9 @@ webhooks: type: integer unit_count: type: integer - organization: *798 - previous_marketplace_purchase: *832 - repository: *799 + organization: *799 + previous_marketplace_purchase: *833 + repository: *800 sender: *4 required: - action @@ -161841,12 +161882,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 - previous_marketplace_purchase: *832 - repository: *799 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 + previous_marketplace_purchase: *833 + repository: *800 sender: *4 required: - action @@ -161948,11 +161989,11 @@ webhooks: type: string required: - to - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162054,11 +162095,11 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162137,11 +162178,11 @@ webhooks: type: string enum: - removed - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162219,11 +162260,11 @@ webhooks: type: string enum: - added - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 scope: description: The scope of the membership. Currently, can only be `team`. @@ -162301,7 +162342,7 @@ webhooks: required: - login - id - team: &833 + team: &834 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -162494,11 +162535,11 @@ webhooks: type: string enum: - removed - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 scope: description: The scope of the membership. Currently, can only be `team`. @@ -162577,7 +162618,7 @@ webhooks: required: - login - id - team: *833 + team: *834 required: - action - scope @@ -162659,8 +162700,8 @@ webhooks: type: string enum: - checks_requested - installation: *797 - merge_group: &834 + installation: *798 + merge_group: &835 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -162679,15 +162720,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *492 + head_commit: *493 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162773,10 +162814,10 @@ webhooks: - merged - invalidated - dequeued - installation: *797 - merge_group: *834 - organization: *798 - repository: *799 + installation: *798 + merge_group: *835 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162849,7 +162890,7 @@ webhooks: type: string enum: - deleted - enterprise: *796 + enterprise: *797 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -162958,12 +162999,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *797 - organization: *798 + installation: *798 + organization: *799 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -163043,11 +163084,11 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163126,9 +163167,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - milestone: &835 + enterprise: *797 + installation: *798 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -163270,8 +163311,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163350,11 +163391,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163464,11 +163505,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163548,11 +163589,11 @@ webhooks: type: string enum: - opened - enterprise: *796 - installation: *797 - milestone: *835 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *836 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163631,11 +163672,11 @@ webhooks: type: string enum: - blocked - blocked_user: *823 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + blocked_user: *824 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163714,11 +163755,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *823 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + blocked_user: *824 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163797,9 +163838,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - membership: &836 + enterprise: *797 + installation: *798 + membership: &837 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -163909,8 +163950,8 @@ webhooks: - role - organization_url - user - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163988,11 +164029,11 @@ webhooks: type: string enum: - member_added - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164071,8 +164112,8 @@ webhooks: type: string enum: - member_invited - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -164194,10 +164235,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 - user: *823 + user: *824 required: - action - invitation @@ -164275,11 +164316,11 @@ webhooks: type: string enum: - member_removed - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164366,11 +164407,11 @@ webhooks: properties: from: type: string - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164446,9 +164487,9 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 package: description: Information about the package. type: object @@ -164971,7 +165012,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &837 + items: &838 title: Ruby Gems metadata type: object properties: @@ -165068,7 +165109,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -165144,9 +165185,9 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 package: description: Information about the package. type: object @@ -165508,7 +165549,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 source_url: type: string format: uri @@ -165579,7 +165620,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -165760,12 +165801,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *796 + enterprise: *797 id: type: integer - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - id @@ -165842,7 +165883,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &838 + personal_access_token_request: &839 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -165992,10 +166033,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *796 - organization: *798 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166072,11 +166113,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *838 - enterprise: *796 - organization: *798 + personal_access_token_request: *839 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166152,11 +166193,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *838 - enterprise: *796 - organization: *798 + personal_access_token_request: *839 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166231,11 +166272,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *838 - organization: *798 - enterprise: *796 + personal_access_token_request: *839 + organization: *799 + enterprise: *797 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166340,7 +166381,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *839 + last_response: *840 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -166372,8 +166413,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 zen: description: Random string of GitHub zen. @@ -166618,10 +166659,10 @@ webhooks: - from required: - note - enterprise: *796 - installation: *797 - organization: *798 - project_card: &840 + enterprise: *797 + installation: *798 + organization: *799 + project_card: &841 title: Project Card type: object properties: @@ -166744,7 +166785,7 @@ webhooks: - creator - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -166825,11 +166866,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project_card: *840 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_card: *841 + repository: *800 sender: *4 required: - action @@ -166909,9 +166950,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 project_card: title: Project Card type: object @@ -167041,7 +167082,7 @@ webhooks: repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -167135,11 +167176,11 @@ webhooks: - from required: - note - enterprise: *796 - installation: *797 - organization: *798 - project_card: *840 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_card: *841 + repository: *800 sender: *4 required: - action @@ -167233,9 +167274,9 @@ webhooks: - from required: - column_id - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 project_card: allOf: - title: Project Card @@ -167432,7 +167473,7 @@ webhooks: type: string required: - after_id - repository: *799 + repository: *800 sender: *4 required: - action @@ -167512,10 +167553,10 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - organization: *798 - project: &842 + enterprise: *797 + installation: *798 + organization: *799 + project: &843 title: Project type: object properties: @@ -167642,7 +167683,7 @@ webhooks: - creator - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -167722,10 +167763,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project_column: &841 + enterprise: *797 + installation: *798 + organization: *799 + project_column: &842 title: Project Column type: object properties: @@ -167765,7 +167806,7 @@ webhooks: - name - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -167844,14 +167885,14 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -167940,11 +167981,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 + repository: *800 sender: *4 required: - action @@ -168024,11 +168065,11 @@ webhooks: type: string enum: - moved - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 + repository: *800 sender: *4 required: - action @@ -168108,11 +168149,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168192,14 +168233,14 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - project: *842 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -168300,11 +168341,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168383,11 +168424,11 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168468,9 +168509,9 @@ webhooks: type: string enum: - closed - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168551,9 +168592,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168634,9 +168675,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168757,9 +168798,9 @@ webhooks: type: string to: type: string - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168842,7 +168883,7 @@ webhooks: type: string enum: - archived - changes: &846 + changes: &847 type: object properties: archived_at: @@ -168858,9 +168899,9 @@ webhooks: - string - 'null' format: date-time - installation: *797 - organization: *798 - projects_v2_item: &843 + installation: *798 + organization: *799 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -168878,7 +168919,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *357 + content_type: *360 creator: *4 created_at: type: string @@ -169000,9 +169041,9 @@ webhooks: - 'null' to: type: string - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169084,9 +169125,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169167,9 +169208,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169274,7 +169315,7 @@ webhooks: oneOf: - type: string - type: integer - - &844 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -169298,7 +169339,7 @@ webhooks: required: - id - name - - &845 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -169338,8 +169379,8 @@ webhooks: oneOf: - type: string - type: integer - - *844 - *845 + - *846 type: - 'null' - string @@ -169362,9 +169403,9 @@ webhooks: - 'null' required: - body - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169461,9 +169502,9 @@ webhooks: type: - string - 'null' - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169546,10 +169587,10 @@ webhooks: type: string enum: - restored - changes: *846 - installation: *797 - organization: *798 - projects_v2_item: *843 + changes: *847 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169631,9 +169672,9 @@ webhooks: type: string enum: - reopened - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -169714,9 +169755,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -169797,9 +169838,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -169945,9 +169986,9 @@ webhooks: - string - 'null' format: date - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -170018,10 +170059,10 @@ webhooks: title: public event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - repository @@ -170098,13 +170139,13 @@ webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *796 - installation: *797 - number: &848 + assignee: *824 + enterprise: *797 + installation: *798 + number: &849 description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -172453,7 +172494,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -172535,11 +172576,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -174881,7 +174922,7 @@ webhooks: - draft reason: type: string - repository: *799 + repository: *800 sender: *4 required: - action @@ -174963,11 +175004,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -177309,7 +177350,7 @@ webhooks: - draft reason: type: string - repository: *799 + repository: *800 sender: *4 required: - action @@ -177391,13 +177432,13 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: &849 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: &850 allOf: - - *647 + - *648 - type: object properties: allow_auto_merge: @@ -177459,7 +177500,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *799 + repository: *800 sender: *4 required: - action @@ -177540,12 +177581,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -177625,11 +177666,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *796 - milestone: *355 - number: *848 - organization: *798 - pull_request: &850 + enterprise: *797 + milestone: *358 + number: *849 + organization: *799 + pull_request: &851 title: Pull Request type: object properties: @@ -179956,7 +179997,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -180035,11 +180076,11 @@ webhooks: type: string enum: - dequeued - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -182385,7 +182426,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *799 + repository: *800 sender: *4 required: - action @@ -182509,12 +182550,12 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -182594,11 +182635,11 @@ webhooks: type: string enum: - enqueued - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -184929,7 +184970,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -185009,11 +185050,11 @@ webhooks: type: string enum: - labeled - enterprise: *796 - installation: *797 - label: *822 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + label: *823 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -187361,7 +187402,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -187442,10 +187483,10 @@ webhooks: type: string enum: - locked - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -189791,7 +189832,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -189871,12 +189912,12 @@ webhooks: type: string enum: - milestoned - enterprise: *796 - milestone: *355 - number: *848 - organization: *798 - pull_request: *850 - repository: *799 + enterprise: *797 + milestone: *358 + number: *849 + organization: *799 + pull_request: *851 + repository: *800 sender: *4 required: - action @@ -189955,12 +189996,12 @@ webhooks: type: string enum: - opened - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190041,12 +190082,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190126,12 +190167,12 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190506,9 +190547,9 @@ webhooks: - start_side - side - reactions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -192738,7 +192779,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -192818,7 +192859,7 @@ webhooks: type: string enum: - deleted - comment: &852 + comment: &853 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. @@ -193111,9 +193152,9 @@ webhooks: - start_side - side - reactions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -195331,7 +195372,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -195411,11 +195452,11 @@ webhooks: type: string enum: - edited - changes: *851 - comment: *852 - enterprise: *796 - installation: *797 - organization: *798 + changes: *852 + comment: *853 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -197636,7 +197677,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -197717,9 +197758,9 @@ webhooks: type: string enum: - dismissed - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -199952,7 +199993,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 review: description: The review that was affected. type: object @@ -200203,9 +200244,9 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -202319,8 +202360,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 - review: &853 + repository: *800 + review: &854 description: The review that was affected. type: object properties: @@ -202558,12 +202599,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -204910,7 +204951,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_reviewer: title: User type: @@ -204996,12 +205037,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -207355,7 +207396,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207550,12 +207591,12 @@ webhooks: type: string enum: - review_requested - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -209904,7 +209945,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_reviewer: title: User type: @@ -209991,12 +210032,12 @@ webhooks: type: string enum: - review_requested - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -212336,7 +212377,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212520,9 +212561,9 @@ webhooks: type: string enum: - submitted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -214758,8 +214799,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 - review: *853 + repository: *800 + review: *854 sender: *4 required: - action @@ -214839,9 +214880,9 @@ webhooks: type: string enum: - resolved - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -216972,7 +217013,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 sender: *4 thread: type: object @@ -217369,9 +217410,9 @@ webhooks: type: string enum: - unresolved - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -219485,7 +219526,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 sender: *4 thread: type: object @@ -219884,10 +219925,10 @@ webhooks: type: string before: type: string - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -222222,7 +222263,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -222304,11 +222345,11 @@ webhooks: type: string enum: - unassigned - assignee: *854 - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + assignee: *855 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -224658,7 +224699,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -224737,11 +224778,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *796 - installation: *797 - label: *822 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + label: *823 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -227080,7 +227121,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -227161,10 +227202,10 @@ webhooks: type: string enum: - unlocked - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -229493,7 +229534,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -229696,7 +229737,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *796 + enterprise: *797 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -229791,8 +229832,8 @@ webhooks: - url - author - committer - installation: *797 - organization: *798 + installation: *798 + organization: *799 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -230380,9 +230421,9 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 registry_package: type: object properties: @@ -230859,7 +230900,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -230915,7 +230956,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -230993,9 +231034,9 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 registry_package: type: object properties: @@ -231307,7 +231348,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -231357,7 +231398,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -231434,10 +231475,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - release: &855 + enterprise: *797 + installation: *798 + organization: *799 + release: &856 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -231768,7 +231809,7 @@ webhooks: - updated_at - zipball_url - body - repository: *799 + repository: *800 sender: *4 required: - action @@ -231845,11 +231886,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -231966,11 +232007,11 @@ webhooks: type: boolean required: - to - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -232048,9 +232089,9 @@ webhooks: type: string enum: - prereleased - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -232386,7 +232427,7 @@ webhooks: - string - 'null' format: uri - repository: *799 + repository: *800 sender: *4 required: - action @@ -232462,10 +232503,10 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - release: &856 + enterprise: *797 + installation: *798 + organization: *799 + release: &857 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -232798,7 +232839,7 @@ webhooks: - string - 'null' format: uri - repository: *799 + repository: *800 sender: *4 required: - action @@ -232874,11 +232915,11 @@ webhooks: type: string enum: - released - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -232954,11 +232995,11 @@ webhooks: type: string enum: - unpublished - enterprise: *796 - installation: *797 - organization: *798 - release: *856 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *857 + repository: *800 sender: *4 required: - action @@ -233034,11 +233075,11 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_advisory: *699 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_advisory: *700 sender: *4 required: - action @@ -233114,11 +233155,11 @@ webhooks: type: string enum: - reported - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_advisory: *699 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_advisory: *700 sender: *4 required: - action @@ -233194,10 +233235,10 @@ webhooks: type: string enum: - archived - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233274,10 +233315,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233355,10 +233396,10 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233443,10 +233484,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233561,10 +233602,10 @@ webhooks: - 'null' items: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233636,10 +233677,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 status: type: string @@ -233720,10 +233761,10 @@ webhooks: type: string enum: - privatized - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233800,10 +233841,10 @@ webhooks: type: string enum: - publicized - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233897,10 +233938,10 @@ webhooks: - name required: - repository - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233980,11 +234021,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 sender: *4 required: - action @@ -234062,11 +234103,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 sender: *4 required: - action @@ -234144,11 +234185,11 @@ webhooks: type: string enum: - edited - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 changes: type: object properties: @@ -234167,16 +234208,16 @@ webhooks: properties: added: type: array - items: *125 + items: *131 deleted: type: array - items: *125 + items: *131 updated: type: array items: type: object properties: - condition: *125 + condition: *131 changes: type: object properties: @@ -234209,16 +234250,16 @@ webhooks: properties: added: type: array - items: *667 + items: *668 deleted: type: array - items: *667 + items: *668 updated: type: array items: type: object properties: - rule: *667 + rule: *668 changes: type: object properties: @@ -234455,10 +234496,10 @@ webhooks: - from required: - owner - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234536,10 +234577,10 @@ webhooks: type: string enum: - unarchived - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234617,7 +234658,7 @@ webhooks: type: string enum: - create - alert: &857 + alert: &858 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -234741,10 +234782,10 @@ webhooks: type: string enum: - open - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234954,10 +234995,10 @@ webhooks: type: string enum: - dismissed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235035,11 +235076,11 @@ webhooks: type: string enum: - reopen - alert: *857 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *858 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235241,10 +235282,10 @@ webhooks: enum: - fixed - open - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235322,17 +235363,17 @@ webhooks: type: string enum: - created - alert: &858 + alert: &859 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri @@ -235432,10 +235473,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235516,11 +235557,11 @@ webhooks: type: string enum: - created - alert: *858 - installation: *797 - location: *859 - organization: *798 - repository: *799 + alert: *859 + installation: *798 + location: *860 + organization: *799 + repository: *800 sender: *4 required: - location @@ -235758,11 +235799,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235840,11 +235881,11 @@ webhooks: type: string enum: - reopened - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235922,11 +235963,11 @@ webhooks: type: string enum: - resolved - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -236004,11 +236045,11 @@ webhooks: type: string enum: - validated - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -236138,10 +236179,10 @@ webhooks: - organization - enterprise - - repository: *799 - enterprise: *796 - installation: *797 - organization: *798 + repository: *800 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -236219,11 +236260,11 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - security_advisory: &860 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + security_advisory: &861 description: The details of the security advisory, including summary, description, and severity. type: object @@ -236240,7 +236281,7 @@ webhooks: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: array items: @@ -236409,11 +236450,11 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - security_advisory: *860 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + security_advisory: *861 sender: *4 required: - action @@ -236486,10 +236527,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -236507,7 +236548,7 @@ webhooks: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: array items: @@ -236675,11 +236716,11 @@ webhooks: from: type: object properties: - security_and_analysis: *363 - enterprise: *796 - installation: *797 - organization: *798 - repository: *429 + security_and_analysis: *366 + enterprise: *797 + installation: *798 + organization: *799 + repository: *432 sender: *4 required: - changes @@ -236757,12 +236798,12 @@ webhooks: type: string enum: - cancelled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: &861 + sponsorship: &862 type: object properties: created_at: @@ -237067,12 +237108,12 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - sponsorship @@ -237160,12 +237201,12 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237242,17 +237283,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &862 + effective_date: &863 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: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - sponsorship @@ -237326,7 +237367,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &863 + changes: &864 type: object properties: tier: @@ -237370,13 +237411,13 @@ webhooks: - from required: - tier - effective_date: *862 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + effective_date: *863 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237453,13 +237494,13 @@ webhooks: type: string enum: - tier_changed - changes: *863 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + changes: *864 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237533,10 +237574,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -237620,10 +237661,10 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -238057,15 +238098,15 @@ webhooks: type: - string - 'null' - enterprise: *796 + enterprise: *797 id: description: The unique identifier of the status. type: integer - installation: *797 + installation: *798 name: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 sha: description: The Commit SHA. @@ -238175,15 +238216,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 + parent_issue: *185 parent_issue_repo: *65 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 - installation: *797 - organization: *798 - repository: *799 + sub_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238267,15 +238308,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 + parent_issue: *185 parent_issue_repo: *65 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 - installation: *797 - organization: *798 - repository: *799 + sub_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238359,15 +238400,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 + sub_issue: *185 sub_issue_repo: *65 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 - installation: *797 - organization: *798 - repository: *799 + parent_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238451,15 +238492,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 + sub_issue: *185 sub_issue_repo: *65 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 - installation: *797 - organization: *798 - repository: *799 + parent_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238536,12 +238577,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - team: &864 + team: &865 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -238734,9 +238775,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -239206,7 +239247,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -239282,9 +239323,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -239754,7 +239795,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -239831,9 +239872,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -240303,7 +240344,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -240447,9 +240488,9 @@ webhooks: - from required: - permissions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -240919,7 +240960,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - changes @@ -240997,9 +241038,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -241469,7 +241510,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -241545,10 +241586,10 @@ webhooks: type: string enum: - started - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -241621,17 +241662,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *796 + enterprise: *797 inputs: type: - object - 'null' additionalProperties: true - installation: *797 - organization: *798 + installation: *798 + organization: *799 ref: type: string - repository: *799 + repository: *800 sender: *4 workflow: type: string @@ -241713,10 +241754,10 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: allOf: @@ -241972,7 +242013,7 @@ webhooks: type: string required: - conclusion - deployment: *557 + deployment: *558 required: - action - repository @@ -242051,10 +242092,10 @@ webhooks: type: string enum: - in_progress - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: allOf: @@ -242336,7 +242377,7 @@ webhooks: required: - status - steps - deployment: *557 + deployment: *558 required: - action - repository @@ -242415,10 +242456,10 @@ webhooks: type: string enum: - queued - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: type: object @@ -242564,7 +242605,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *557 + deployment: *558 required: - action - repository @@ -242643,10 +242684,10 @@ webhooks: type: string enum: - waiting - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: type: object @@ -242793,7 +242834,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *557 + deployment: *558 required: - action - repository @@ -242873,12 +242914,12 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -243897,12 +243938,12 @@ webhooks: type: string enum: - in_progress - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -244906,12 +244947,12 @@ webhooks: type: string enum: - requested - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index b1be856f2..2d8ad7ad8 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -35262,6 +35262,471 @@ } } }, + "/enterprises/{enterprise}/bypass-requests/secret-scanning": { + "get": { + "summary": "List bypass requests for secret scanning for an enterprise", + "description": "List requests to bypass secret scanning push protection in an enterprise.\n\nDelegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/list-enterprise-bypass-requests", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "secret-scanning", + "subcategory": "delegated-bypass" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "organization_name", + "description": "The name of the organization to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the bypass request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "deleted", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. 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).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Secret scanning bypass request", + "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the bypass request." + }, + "number": { + "type": "integer", + "description": "The number uniquely identifying the bypass request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the repository the bypass request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the bypass request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the bypass request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the bypass.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who requested the bypass." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the bypass." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the push rules that are being requested to be bypassed.", + "items": { + "type": "object", + "properties": { + "secret_type": { + "type": "string", + "description": "The type of secret that secret scanning detected." + }, + "bypass_reason": { + "type": "string", + "enum": [ + "used_in_tests", + "false_positive", + "fix_later" + ], + "description": "The reason the bypass was requested." + }, + "path": { + "type": "string", + "description": "The path in the repo where the secret was located during the request." + }, + "branch": { + "type": "string", + "description": "The branch in the repo where the secret was located during the request." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", + "examples": [ + "827efc6d56897b048c772eb4087f854f46256132" + ] + }, + "status": { + "type": "string", + "description": "The status of the bypass request.", + "enum": [ + "pending", + "denied", + "approved", + "cancelled", + "completed", + "expired", + "open" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the bypass request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the bypass request.", + "items": { + "title": "Bypass response", + "description": "A response made by a delegated bypasser to a bypass request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the response to the bypass request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the bypass request.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who reviewed the bypass request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the bypass request." + } + } + }, + "status": { + "type": "string", + "description": "The response status to the bypass request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the bypass request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the bypass request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/exemptions/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "used_in_tests", + "path": "/tests/README.md:16:0", + "branch": "refs/heads/main" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", + "status": "denied", + "requester_comment": "Test token used in the readme as an example", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", + "html_url": "https://github.com/octo-org/smile/exemptions/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "fix_later", + "path": "README.md:17:0", + "branch": "refs/heads/my-branch" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", + "status": "denied", + "requester_comment": "Token is already revoked, I'll remove it later", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "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": { + "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" + } + } + } + } + } + } + } + } + }, "/enterprises/{enterprise}/code-scanning/alerts": { "get": { "summary": "List code scanning alerts for an enterprise", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 85fb350c7..86af34709 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/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 - - &90 + - &96 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 - - &91 + - &97 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 - - &92 + - &98 name: direction description: The direction to sort the results by. in: query @@ -701,7 +701,7 @@ paths: required: - vector_string - score - cvss_severities: &104 + cvss_severities: &110 type: - object - 'null' @@ -748,7 +748,7 @@ paths: required: - vector_string - score - epss: &105 + epss: &111 type: - object - 'null' @@ -911,7 +911,7 @@ paths: - subscriptions_url - type - url - type: &383 + type: &386 type: string description: The type of credit the user is receiving. enum: @@ -1044,7 +1044,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &204 + schema: &210 title: Validation Error Simple description: Validation Error Simple type: object @@ -1077,7 +1077,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: - - &701 + - &702 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1662,7 +1662,7 @@ paths: schema: type: integer default: 30 - - &294 + - &297 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 @@ -1678,7 +1678,7 @@ paths: application/json: schema: type: array - items: &295 + items: &298 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1774,7 +1774,7 @@ paths: - installation_id - repository_id examples: - default: &296 + default: &299 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1806,7 +1806,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &711 + schema: &712 title: Scim Error description: Scim Error type: object @@ -1837,7 +1837,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &203 + schema: &209 title: Validation Error description: Validation Error type: object @@ -1909,7 +1909,7 @@ paths: description: Response content: application/json: - schema: &297 + schema: &300 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2044,7 +2044,7 @@ paths: - request - response examples: - default: &298 + default: &301 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2248,7 +2248,7 @@ paths: parameters: - *17 - *19 - - &169 + - &175 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) @@ -3033,7 +3033,7 @@ paths: license: anyOf: - type: 'null' - - &180 + - &186 title: License Simple description: License Simple type: object @@ -7696,7 +7696,7 @@ paths: description: Response content: application/json: - schema: &205 + schema: &211 type: object properties: total_active_caches_count: @@ -7711,7 +7711,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &206 + default: &212 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7916,7 +7916,7 @@ paths: - public_ip_enabled - platform examples: - default: &207 + default: &213 value: total_count: 2 runners: @@ -8206,7 +8206,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &214 type: object properties: public_ips: @@ -8233,7 +8233,7 @@ paths: required: - public_ips examples: - default: &209 + default: &215 value: public_ips: current_usage: 17 @@ -8273,7 +8273,7 @@ paths: type: array items: *43 examples: - default: &210 + default: &216 value: id: 4-core cpu_cores: 4 @@ -8531,7 +8531,7 @@ paths: - all - local_only - selected - selected_actions_url: &213 + selected_actions_url: &219 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` @@ -8611,7 +8611,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &215 + schema: &221 type: object properties: days: @@ -8629,7 +8629,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &712 + '401': &713 description: Authorization failure '404': *6 x-github: @@ -8657,7 +8657,7 @@ paths: required: true content: application/json: - schema: &216 + schema: &222 type: object properties: days: @@ -8706,7 +8706,7 @@ paths: required: - approval_policy examples: - default: &217 + default: &223 value: approval_policy: first_time_contributors '404': *6 @@ -8764,7 +8764,7 @@ paths: description: Response content: application/json: - schema: &218 + schema: &224 type: object required: - run_workflows_from_fork_pull_requests @@ -8818,7 +8818,7 @@ paths: required: true content: application/json: - schema: &219 + schema: &225 type: object required: - run_workflows_from_fork_pull_requests @@ -9254,7 +9254,7 @@ paths: description: Success response content: application/json: - schema: &222 + schema: &228 type: object properties: default_workflow_permissions: &54 @@ -9302,7 +9302,7 @@ paths: required: true content: application/json: - schema: &223 + schema: &229 type: object properties: default_workflow_permissions: *54 @@ -10147,7 +10147,7 @@ paths: application/json: schema: type: array - items: &227 + items: &233 title: Runner Application description: Runner Application type: object @@ -10172,7 +10172,7 @@ paths: - download_url - filename examples: - default: &228 + default: &234 value: - os: osx architecture: x64 @@ -10256,7 +10256,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &229 + '201': &235 description: Response content: application/json: @@ -10295,7 +10295,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &100 + '409': &106 description: Conflict content: application/json: @@ -10375,7 +10375,7 @@ paths: - token - expires_at examples: - default: &230 + default: &236 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10415,7 +10415,7 @@ paths: application/json: schema: *66 examples: - default: &231 + default: &237 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10447,7 +10447,7 @@ paths: application/json: schema: *63 examples: - default: &232 + default: &238 value: id: 23 name: MBP @@ -10663,7 +10663,7 @@ paths: - *39 - *62 responses: - '200': &233 + '200': &239 description: Response content: application/json: @@ -10719,7 +10719,7 @@ paths: parameters: - *39 - *62 - - &234 + - &240 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10816,7 +10816,7 @@ paths: required: true content: application/json: - schema: &241 + schema: &247 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -11467,7 +11467,7 @@ paths: required: false schema: type: string - - &242 + - &248 name: include description: |- The event types to include: @@ -11485,7 +11485,7 @@ paths: - web - git - all - - &243 + - &249 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. @@ -11493,7 +11493,7 @@ paths: required: false schema: type: string - - &244 + - &250 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. @@ -11501,7 +11501,7 @@ paths: required: false schema: type: string - - &245 + - &251 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11523,7 +11523,7 @@ paths: application/json: schema: type: array - items: &246 + items: &252 type: object properties: "@timestamp": @@ -11645,7 +11645,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &247 + default: &253 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12248,12 +12248,13 @@ paths: subcategory: bypass-requests parameters: - *39 - - name: organization_name + - &90 + name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &249 + - &91 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12261,7 +12262,7 @@ paths: required: false schema: type: string - - &250 + - &92 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12269,7 +12270,7 @@ paths: required: false schema: type: string - - &251 + - &93 name: time_period description: |- The time period to filter by. @@ -12285,7 +12286,7 @@ paths: - week - month default: day - - &252 + - &94 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12312,7 +12313,7 @@ paths: application/json: schema: type: array - items: &253 + items: &255 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12438,7 +12439,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: &256 + items: &95 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12484,7 +12485,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &254 + default: &256 value: - id: 21 number: 42 @@ -12554,6 +12555,240 @@ paths: html_url: https://github.com/octo-org/smile/exemptions/2 '404': *6 '500': *89 + "/enterprises/{enterprise}/bypass-requests/secret-scanning": + get: + summary: List bypass requests for secret scanning for an enterprise + description: |- + List requests to bypass secret scanning push protection in an enterprise. + + Delegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-enterprise-bypass-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: secret-scanning + subcategory: delegated-bypass + parameters: + - *39 + - *90 + - *91 + - *92 + - *93 + - *94 + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: &258 + title: Secret scanning bypass request + description: A bypass request made by a user asking to be exempted + from push protection in this repository. + type: object + properties: + id: + type: integer + description: The unique identifier of the bypass request. + number: + type: integer + description: The number uniquely identifying the bypass request + within its repository. + repository: + type: object + description: The repository the bypass request is for. + properties: + id: + type: integer + description: The ID of the repository the bypass request + is for. + name: + type: string + description: The name of the repository the bypass request + is for. + full_name: + type: string + description: The full name of the repository the bypass + request is for. + organization: + type: object + description: The organization associated with the repository + the bypass request is for. + properties: + id: + type: integer + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the bypass. + properties: + actor_id: + type: integer + description: The ID of the GitHub user who requested the + bypass. + actor_name: + type: string + description: The name of the GitHub user who requested the + bypass. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the push rules that are being requested + to be bypassed. + items: + type: object + properties: + secret_type: + type: string + description: The type of secret that secret scanning detected. + bypass_reason: + type: string + enum: + - used_in_tests + - false_positive + - fix_later + description: The reason the bypass was requested. + path: + type: string + description: The path in the repo where the secret was + located during the request. + branch: + type: string + description: The branch in the repo where the secret was + located during the request. + resource_identifier: + type: string + description: The unique identifier for the request type of the + bypass request. For example, a commit SHA. + examples: + - 827efc6d56897b048c772eb4087f854f46256132 + status: + type: string + description: The status of the bypass request. + enum: + - pending + - denied + - approved + - cancelled + - completed + - expired + - open + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the bypass request. + expires_at: + type: string + format: date-time + description: The date and time the bypass request will expire. + created_at: + type: string + format: date-time + description: The date and time the bypass request was created. + responses: + type: + - array + - 'null' + description: The responses to the bypass request. + items: *95 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: + type: string + description: The URL to view the bypass request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/exemptions/1 + examples: + default: &259 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: used_in_tests + path: "/tests/README.md:16:0" + branch: refs/heads/main + resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 + status: denied + requester_comment: Test token used in the readme as an example + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: https://github.com/octo-org/smile/exemptions/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: fix_later + path: README.md:17:0 + branch: refs/heads/my-branch + resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 + status: denied + requester_comment: Token is already revoked, I'll remove it later + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + 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': *89 "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -12571,17 +12806,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &261 + - &264 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: &93 + schema: &99 type: string description: The name of the tool used to generate the code scanning analysis. - - &262 + - &265 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 @@ -12589,23 +12824,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &94 + schema: &100 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *90 - - *91 + - *96 + - *97 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &263 + schema: &266 type: string description: State of a code scanning alert. enum: @@ -12630,42 +12865,42 @@ paths: application/json: schema: type: array - items: &264 + items: &267 type: object properties: - number: &102 + number: &108 type: integer description: The security alert number. readOnly: true - created_at: &109 + created_at: &115 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: &110 + updated_at: &116 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: &107 + url: &113 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &108 + html_url: &114 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &498 + instances_url: &499 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &95 + state: &101 type: - string - 'null' @@ -12675,7 +12910,7 @@ paths: - dismissed - fixed - - fixed_at: &112 + fixed_at: &118 type: - string - 'null' @@ -12687,7 +12922,7 @@ paths: anyOf: - type: 'null' - *4 - dismissed_at: &111 + dismissed_at: &117 type: - string - 'null' @@ -12695,7 +12930,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &499 + dismissed_reason: &500 type: - string - 'null' @@ -12706,14 +12941,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &500 + dismissed_comment: &501 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &501 + rule: &502 type: object properties: id: @@ -12774,26 +13009,26 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &502 + tool: &503 type: object properties: - name: *93 + name: *99 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *94 - most_recent_instance: &503 + guid: *100 + most_recent_instance: &504 type: object properties: - ref: &496 + ref: &497 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &513 + analysis_key: &514 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12804,13 +13039,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &514 + category: &515 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: *95 + state: *101 commit_sha: type: string message: @@ -12851,7 +13086,7 @@ paths: - test - library - - repository: &101 + repository: &107 title: Simple Repository description: A GitHub repository. type: object @@ -13192,7 +13427,7 @@ paths: - most_recent_instance - repository examples: - default: &265 + default: &268 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13423,7 +13658,7 @@ paths: headers: Link: *38 '404': *6 - '503': &156 + '503': &162 description: Service unavailable content: application/json: @@ -13467,8 +13702,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -13476,7 +13711,7 @@ paths: application/json: schema: type: array - items: &96 + items: &102 type: object description: A code security configuration properties: @@ -13851,7 +14086,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &266 + code_scanning_options: &269 type: - object - 'null' @@ -13870,7 +14105,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &99 + code_scanning_default_setup_options: &105 type: - object - 'null' @@ -13989,9 +14224,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *96 + schema: *102 examples: - default: &97 + default: &103 value: id: 1325 target_type: enterprise @@ -14049,7 +14284,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 type: array description: A list of default code security configurations items: @@ -14063,9 +14298,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *96 + configuration: *102 examples: - default: &269 + default: &272 value: - default_for_new_repos: public configuration: @@ -14154,7 +14389,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *39 - - &98 + - &104 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -14166,9 +14401,9 @@ paths: description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *97 + default: *103 '304': *35 '403': *27 '404': *6 @@ -14193,7 +14428,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14272,7 +14507,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14360,13 +14595,13 @@ paths: description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *97 + default: *103 '304': *35 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14390,14 +14625,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *39 - - *98 + - *104 responses: - '204': &122 + '204': &128 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14422,7 +14657,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14449,7 +14684,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14474,7 +14709,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: - *39 - - *98 + - *104 requestBody: required: true content: @@ -14514,12 +14749,12 @@ paths: - none - private_and_internal - public - configuration: *96 + configuration: *102 examples: default: value: default_for_new_repos: all - configuration: &267 + configuration: &270 value: id: 1325 target_type: organization @@ -14576,7 +14811,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *39 - - *98 + - *104 - 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)." @@ -14585,8 +14820,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -14604,7 +14839,7 @@ paths: application/json: schema: type: array - items: &270 + items: &273 type: object description: Repositories associated with a code security configuration and attachment status @@ -14622,13 +14857,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *101 + repository: *107 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &271 + repository: &274 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15111,7 +15346,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &113 + items: &119 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -15129,7 +15364,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &257 + - &260 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15188,7 +15423,7 @@ paths: parent: anyOf: - type: 'null' - - &331 + - &334 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -15403,7 +15638,7 @@ paths: - created_at additionalProperties: false examples: - default: &114 + default: &120 value: total_seats: 2 seats: @@ -15855,7 +16090,7 @@ paths: application/json: schema: type: array - items: &162 + items: &168 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -16170,7 +16405,7 @@ paths: - date additionalProperties: true examples: - default: &163 + default: &169 value: - date: '2024-06-24' total_active_users: 24 @@ -16272,7 +16507,7 @@ paths: '500': *89 '403': *27 '404': *6 - '422': &164 + '422': &170 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -16302,7 +16537,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &278 + - &281 name: state in: query description: |- @@ -16311,7 +16546,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &279 + - &282 name: severity in: query description: |- @@ -16320,7 +16555,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &280 + - &283 name: ecosystem in: query description: |- @@ -16329,14 +16564,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &281 + - &284 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 - - &282 + - &285 name: epss_percentage in: query description: |- @@ -16348,7 +16583,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 - - &283 + - &286 name: has in: query description: |- @@ -16362,7 +16597,7 @@ paths: type: string enum: - patch - - &284 + - &287 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -16372,7 +16607,7 @@ paths: enum: - development - runtime - - &285 + - &288 name: sort in: query description: |- @@ -16387,10 +16622,10 @@ paths: - updated - epss_percentage default: created - - *92 - - *90 - - *91 - - &286 + - *98 + - *96 + - *97 + - &289 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -16403,7 +16638,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &287 + - &290 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -16423,11 +16658,11 @@ paths: application/json: schema: type: array - items: &288 + items: &291 type: object description: A Dependabot alert. properties: - number: *102 + number: *108 state: type: string description: The state of the Dependabot alert. @@ -16442,7 +16677,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &103 + package: &109 type: object description: Details for the vulnerable package. readOnly: true @@ -16490,7 +16725,7 @@ paths: - direct - transitive - - security_advisory: &549 + security_advisory: &550 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -16521,13 +16756,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &106 + items: &112 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *103 + package: *109 severity: type: string description: The severity of the vulnerability. @@ -16595,8 +16830,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *104 - epss: *105 + cvss_severities: *110 + epss: *111 cwes: type: array description: Details for the advisory pertaining to Common @@ -16696,12 +16931,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *106 - url: *107 - html_url: *108 - created_at: *109 - updated_at: *110 - dismissed_at: *111 + security_vulnerability: *112 + url: *113 + html_url: *114 + created_at: *115 + updated_at: *116 + dismissed_at: *117 dismissed_by: anyOf: - type: 'null' @@ -16725,8 +16960,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *112 - auto_dismissed_at: &550 + fixed_at: *118 + auto_dismissed_at: &551 type: - string - 'null' @@ -16734,7 +16969,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - repository: *101 + repository: *107 required: - number - state @@ -16753,7 +16988,7 @@ paths: - repository additionalProperties: false examples: - default: &289 + default: &292 value: - number: 2 state: dismissed @@ -17170,7 +17405,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: - *39 - - &248 + - &254 name: username description: The handle for the GitHub user account. in: path @@ -17192,9 +17427,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *113 + items: *119 examples: - default: *114 + default: *120 '500': *89 '401': *23 '403': *27 @@ -17237,7 +17472,7 @@ paths: type: integer network_configurations: type: array - items: &115 + items: &121 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -17282,7 +17517,7 @@ paths: - name - created_on examples: - default: &393 + default: &396 value: total_count: 2 network_configurations: @@ -17360,9 +17595,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: &116 + default: &122 value: id: 123456789ABCDEF name: My network configuration @@ -17389,7 +17624,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: - *39 - - &117 + - &123 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -17401,9 +17636,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 headers: Link: *38 x-github: @@ -17423,7 +17658,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: - *39 - - *117 + - *123 requestBody: required: true content: @@ -17462,9 +17697,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -17482,7 +17717,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: - *39 - - *117 + - *123 responses: '204': description: Response @@ -17505,7 +17740,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: - *39 - - &394 + - &397 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17517,7 +17752,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &398 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17556,7 +17791,7 @@ paths: - subnet_id - region examples: - default: &396 + default: &399 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -17591,7 +17826,7 @@ paths: application/json: schema: type: array - items: &118 + items: &124 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -17667,7 +17902,7 @@ paths: - property_name - value_type examples: - default: &119 + default: &125 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17724,7 +17959,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *118 + items: *124 minItems: 1 maxItems: 100 required: @@ -17754,9 +17989,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -17780,7 +18015,7 @@ paths: parameters: - *39 - *74 - - &120 + - &126 name: custom_property_name description: The custom property name in: path @@ -17792,9 +18027,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: &121 + default: &127 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -17827,15 +18062,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *39 - - *120 + - *126 responses: '200': description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -17857,12 +18092,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: - *39 - - *120 + - *126 requestBody: required: true content: application/json: - schema: &361 + schema: &364 title: Custom Property Set Payload description: Custom property set payload type: object @@ -17935,9 +18170,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -17959,9 +18194,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *39 - - *120 + - *126 responses: - '204': *122 + '204': *128 '403': *27 '404': *6 x-github: @@ -18001,7 +18236,7 @@ paths: - push - repository default: branch - enforcement: &129 + enforcement: &135 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -18014,7 +18249,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &130 + items: &136 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -18053,7 +18288,7 @@ paths: - always - pull_request default: always - conditions: &153 + conditions: &159 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -18067,7 +18302,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &123 + - &129 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -18093,7 +18328,7 @@ paths: type: string required: - organization_name - - &126 + - &132 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -18122,7 +18357,7 @@ paths: is prevented. required: - repository_name - - &125 + - &131 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -18150,8 +18385,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *123 - - &128 + - *129 + - &134 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -18164,7 +18399,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &124 + items: &130 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -18195,16 +18430,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *124 + items: *130 required: - repository_property - - *125 + - *131 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &127 + - &133 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -18221,25 +18456,25 @@ paths: type: integer required: - organization_id - - *126 - - *125 + - *132 + - *131 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: - - *127 - - *128 - - *125 + - *133 + - *134 + - *131 rules: type: array description: An array of rules within the ruleset. - items: &154 + items: &160 title: Repository Rule type: object description: A repository rule. oneOf: - - &131 + - &137 title: creation description: Only allow users with bypass permission to create matching refs. @@ -18251,7 +18486,7 @@ paths: type: string enum: - creation - - &132 + - &138 title: update description: Only allow users with bypass permission to update matching refs. @@ -18272,7 +18507,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &133 + - &139 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -18284,7 +18519,7 @@ paths: type: string enum: - deletion - - &134 + - &140 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -18296,7 +18531,7 @@ paths: type: string enum: - required_linear_history - - &135 + - &141 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -18320,7 +18555,7 @@ paths: type: string required: - required_deployment_environments - - &136 + - &142 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -18332,7 +18567,7 @@ paths: type: string enum: - required_signatures - - &137 + - &143 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. @@ -18392,7 +18627,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &138 + - &144 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -18439,7 +18674,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &139 + - &145 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -18451,7 +18686,7 @@ paths: type: string enum: - non_fast_forward - - &140 + - &146 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -18487,7 +18722,7 @@ paths: required: - operator - pattern - - &141 + - &147 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -18523,7 +18758,7 @@ paths: required: - operator - pattern - - &142 + - &148 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -18559,7 +18794,7 @@ paths: required: - operator - pattern - - &143 + - &149 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -18595,7 +18830,7 @@ paths: required: - operator - pattern - - &144 + - &150 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -18631,7 +18866,7 @@ paths: required: - operator - pattern - - &145 + - &151 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -18655,7 +18890,7 @@ paths: type: string required: - restricted_file_paths - - &146 + - &152 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -18679,7 +18914,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &147 + - &153 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -18702,7 +18937,7 @@ paths: type: string required: - restricted_file_extensions - - &148 + - &154 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -18726,7 +18961,7 @@ paths: maximum: 100 required: - max_file_size - - &149 + - &155 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -18775,7 +19010,7 @@ paths: - repository_id required: - workflows - - &150 + - &156 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -18861,7 +19096,7 @@ paths: description: Response content: application/json: - schema: &151 + schema: &157 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -18896,11 +19131,11 @@ paths: source: type: string description: The name of the source - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 + items: *136 current_user_can_bypass: type: string description: |- @@ -18931,8 +19166,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *125 - - &366 + - *131 + - &369 title: Organization ruleset conditions type: object description: |- @@ -18946,14 +19181,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *125 - - *126 + - *131 + - *132 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *125 + - *131 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -18975,23 +19210,23 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *125 - - *128 + - *131 + - *134 type: - 'null' - object rules: type: array - items: &667 + items: &668 title: Repository Rule type: object description: A repository rule. oneOf: - - *131 - - *132 - - *133 - - *134 - - &665 + - *137 + - *138 + - *139 + - *140 + - &666 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -19069,12 +19304,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *135 - - *136 - - *137 - - *138 - - *139 - - *140 - *141 - *142 - *143 @@ -19085,6 +19314,12 @@ paths: - *148 - *149 - *150 + - *151 + - *152 + - *153 + - *154 + - *155 + - *156 created_at: type: string format: date-time @@ -19092,7 +19327,7 @@ paths: type: string format: date-time examples: - default: &152 + default: &158 value: id: 21 name: super cool ruleset @@ -19151,9 +19386,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *152 + default: *158 '404': *6 '500': *89 x-github: @@ -19197,16 +19432,16 @@ paths: - tag - push - repository - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *153 + items: *136 + conditions: *159 rules: description: An array of rules within the ruleset. type: array - items: *154 + items: *160 examples: default: value: @@ -19230,9 +19465,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *152 + default: *158 '404': *6 '500': *89 x-github: @@ -19294,7 +19529,7 @@ paths: application/json: schema: type: array - items: &155 + items: &161 title: Ruleset version type: object description: The historical version of a ruleset @@ -19318,7 +19553,7 @@ paths: type: string format: date-time examples: - default: &369 + default: &372 value: - version_id: 3 actor: @@ -19371,9 +19606,9 @@ paths: description: Response content: application/json: - schema: &370 + schema: &373 allOf: - - *155 + - *161 - type: object required: - state @@ -19426,7 +19661,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &371 + - &374 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19437,7 +19672,7 @@ paths: enum: - open - resolved - - &372 + - &375 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19447,7 +19682,7 @@ paths: required: false schema: type: string - - &373 + - &376 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19456,7 +19691,7 @@ paths: required: false schema: type: string - - &374 + - &377 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. @@ -19468,11 +19703,11 @@ paths: - created - updated default: created - - *92 + - *98 - *17 - - *90 - - *91 - - &375 + - *96 + - *97 + - &378 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19481,7 +19716,7 @@ paths: required: false schema: type: string - - &376 + - &379 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19490,7 +19725,7 @@ paths: schema: type: boolean default: false - - &377 + - &380 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19499,7 +19734,7 @@ paths: schema: type: boolean default: false - - &378 + - &381 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19515,30 +19750,30 @@ paths: application/json: schema: type: array - items: &379 + items: &382 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &679 + state: &680 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: &680 + resolution: &681 type: - string - 'null' @@ -19572,7 +19807,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *101 + repository: *107 push_protection_bypassed: type: - boolean @@ -19645,14 +19880,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &681 + - &682 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &683 + - &684 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -19709,7 +19944,7 @@ paths: - blob_url - commit_sha - commit_url - - &684 + - &685 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. @@ -19770,7 +20005,7 @@ paths: - page_url - commit_sha - commit_url - - &685 + - &686 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -19785,7 +20020,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &686 + - &687 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -19800,7 +20035,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &687 + - &688 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -19815,7 +20050,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &688 + - &689 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -19830,7 +20065,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &689 + - &690 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -19845,7 +20080,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &690 + - &691 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -19860,7 +20095,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &691 + - &692 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. @@ -19875,7 +20110,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &692 + - &693 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. @@ -19890,7 +20125,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &693 + - &694 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. @@ -19905,7 +20140,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &694 + - &695 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. @@ -19920,7 +20155,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &695 + - &696 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 @@ -19941,7 +20176,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &380 + default: &383 value: number: 2 created_at: '2020-11-06T18:48:51Z' @@ -20100,7 +20335,7 @@ paths: headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20131,13 +20366,13 @@ paths: description: Response content: application/json: - schema: &381 + schema: &384 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: &158 + pattern_config_version: &164 type: - string - 'null' @@ -20147,7 +20382,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &157 + items: &163 type: object properties: token_type: @@ -20216,9 +20451,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *157 + items: *163 examples: - default: &382 + default: &385 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -20273,7 +20508,7 @@ paths: schema: type: object properties: - pattern_config_version: *158 + pattern_config_version: *164 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -20299,7 +20534,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *158 + custom_pattern_version: *164 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -20335,7 +20570,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 "/enterprises/{enterprise}/settings/billing/actions": get: @@ -20362,7 +20597,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &387 type: object properties: total_minutes_used: @@ -20432,7 +20667,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &385 + default: &388 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20463,7 +20698,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &386 + - &389 name: advanced_security_product in: query description: | @@ -20483,7 +20718,7 @@ paths: description: Success content: application/json: - schema: &387 + schema: &390 type: object properties: total_advanced_security_committers: @@ -20546,7 +20781,7 @@ paths: required: - repositories examples: - default: &388 + default: &391 value: total_advanced_security_committers: 2 total_count: 2 @@ -20657,7 +20892,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20787,7 +21022,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *39 - - &161 + - &167 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -20799,7 +21034,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &159 + schema: &165 type: object properties: id: @@ -20839,7 +21074,7 @@ paths: - name - resources examples: - default: &160 + default: &166 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -20853,7 +21088,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20903,15 +21138,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *159 + schema: *165 examples: - default: *160 + default: *166 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20929,7 +21164,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *39 - - *161 + - *167 responses: '200': description: Response when deleting a cost center @@ -20968,7 +21203,7 @@ paths: '404': *6 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -20989,7 +21224,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *39 - - *161 + - *167 requestBody: required: true content: @@ -21060,9 +21295,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *27 - '409': *100 + '409': *106 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21082,7 +21317,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *39 - - *161 + - *167 requestBody: required: true content: @@ -21129,7 +21364,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21160,7 +21395,7 @@ paths: description: Response content: application/json: - schema: &389 + schema: &392 type: object properties: total_gigabytes_bandwidth_used: @@ -21178,7 +21413,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &390 + default: &393 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -21213,7 +21448,7 @@ paths: description: Response content: application/json: - schema: &391 + schema: &394 type: object properties: days_left_in_billing_cycle: @@ -21231,7 +21466,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &392 + default: &395 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -21256,7 +21491,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *39 - - &195 + - &201 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, @@ -21265,7 +21500,7 @@ paths: required: false schema: type: integer - - &196 + - &202 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 @@ -21274,7 +21509,7 @@ paths: required: false schema: type: integer - - &197 + - &203 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 @@ -21283,7 +21518,7 @@ paths: required: false schema: type: integer - - &198 + - &204 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 @@ -21304,7 +21539,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &199 + schema: &205 type: object properties: usageItems: @@ -21357,7 +21592,7 @@ paths: - netAmount - organizationName examples: - default: &200 + default: &206 value: usageItems: - date: '2023-08-01' @@ -21374,7 +21609,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -21445,13 +21680,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -21540,7 +21775,7 @@ paths: application/json: schema: type: array - items: &190 + items: &196 title: Event description: Event type: object @@ -21551,7 +21786,7 @@ paths: type: - string - 'null' - actor: &165 + actor: &171 title: Actor description: Actor type: object @@ -21592,13 +21827,13 @@ paths: - id - name - url - org: *165 + org: *171 payload: type: object properties: action: type: string - issue: &179 + issue: &185 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -21719,7 +21954,7 @@ paths: milestone: anyOf: - type: 'null' - - &355 + - &358 title: Milestone description: A collection of related issues and pull requests. @@ -21891,7 +22126,7 @@ paths: timeline_url: type: string format: uri - type: &316 + type: &319 title: Issue Type description: The type of issue. type: @@ -21949,7 +22184,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &166 + author_association: &172 title: author_association type: string description: How the author is associated with the repository. @@ -21964,7 +22199,7 @@ paths: - OWNER examples: - OWNER - reactions: &167 + reactions: &173 title: Reaction Rollup type: object properties: @@ -22000,7 +22235,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &739 + sub_issues_summary: &740 title: Sub-issues Summary type: object properties: @@ -22021,7 +22256,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &740 + issue_dependencies_summary: &741 title: Issue Dependencies Summary type: object properties: @@ -22040,7 +22275,7 @@ paths: - total_blocking issue_field_values: type: array - items: &741 + items: &742 title: Issue Field Value description: A value assigned to an issue field type: object @@ -22135,7 +22370,7 @@ paths: - user - created_at - updated_at - comment: &605 + comment: &606 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -22185,12 +22420,12 @@ paths: issue_url: type: string format: uri - author_association: *166 + author_association: *172 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - id - node_id @@ -22287,7 +22522,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22377,7 +22612,7 @@ paths: _links: type: object properties: - timeline: &168 + timeline: &174 title: Link With Type description: Hypermedia Link with Type type: object @@ -22389,17 +22624,17 @@ paths: required: - href - type - user: *168 - security_advisories: *168 - current_user: *168 - current_user_public: *168 - current_user_actor: *168 - current_user_organization: *168 + user: *174 + security_advisories: *174 + current_user: *174 + current_user_public: *174 + current_user_actor: *174 + current_user_organization: *174 current_user_organizations: type: array - items: *168 - repository_discussions: *168 - repository_discussions_category: *168 + items: *174 + repository_discussions: *174 + repository_discussions_category: *174 required: - timeline - user @@ -22461,7 +22696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *169 + - *175 - *17 - *19 responses: @@ -22471,7 +22706,7 @@ paths: application/json: schema: type: array - items: &170 + items: &176 title: Base Gist description: Base Gist type: object @@ -22568,7 +22803,7 @@ paths: - created_at - updated_at examples: - default: &171 + default: &177 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -22692,7 +22927,7 @@ paths: description: Response content: application/json: - schema: &172 + schema: &178 title: Gist Simple description: Gist Simple type: object @@ -22710,7 +22945,7 @@ paths: url: type: string format: uri - user: &753 + user: &754 title: Public User description: Public User type: object @@ -23084,7 +23319,7 @@ paths: truncated: type: boolean examples: - default: &173 + default: &179 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -23188,7 +23423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *169 + - *175 - *17 - *19 responses: @@ -23198,9 +23433,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '422': *15 @@ -23222,7 +23457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *169 + - *175 - *17 - *19 responses: @@ -23232,9 +23467,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '401': *23 @@ -23262,7 +23497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &174 + - &180 name: gist_id description: The unique identifier of the gist. in: path @@ -23274,10 +23509,10 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - default: *173 - '403': &177 + default: *179 + '403': &183 description: Forbidden Gist content: application/json: @@ -23326,7 +23561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *174 + - *180 requestBody: required: true content: @@ -23390,9 +23625,9 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - updateGist: *173 + updateGist: *179 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -23550,7 +23785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -23579,7 +23814,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *174 + - *180 - *17 - *19 responses: @@ -23589,7 +23824,7 @@ paths: application/json: schema: type: array - items: &175 + items: &181 title: Gist Comment description: A comment made to a gist. type: object @@ -23627,7 +23862,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *166 + author_association: *172 required: - url - id @@ -23692,7 +23927,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *174 + - *180 requestBody: required: true content: @@ -23718,9 +23953,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: &176 + default: &182 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -23778,8 +24013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *174 - - &178 + - *180 + - &184 name: comment_id description: The unique identifier of the comment. in: path @@ -23792,12 +24027,12 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: *176 + default: *182 '304': *35 '404': *6 - '403': *177 + '403': *183 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -23819,8 +24054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *174 - - *178 + - *180 + - *184 requestBody: required: true content: @@ -23846,9 +24081,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *181 examples: - default: *176 + default: *182 '404': *6 x-github: githubCloudOnly: false @@ -23865,8 +24100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *174 - - *178 + - *180 + - *184 responses: '204': description: Response @@ -23889,7 +24124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *174 + - *180 - *17 - *19 responses: @@ -23990,7 +24225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *174 + - *180 - *17 - *19 responses: @@ -24000,7 +24235,7 @@ paths: application/json: schema: type: array - items: *172 + items: *178 examples: default: value: @@ -24065,13 +24300,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *174 + - *180 responses: '201': description: Response content: application/json: - schema: *170 + schema: *176 examples: default: value: @@ -24142,7 +24377,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *174 + - *180 responses: '204': description: Response if gist is starred @@ -24172,7 +24407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -24194,7 +24429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *174 + - *180 responses: '204': description: Response @@ -24223,7 +24458,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *174 + - *180 - name: sha in: path required: true @@ -24234,9 +24469,9 @@ paths: description: Response content: application/json: - schema: *172 + schema: *178 examples: - default: *173 + default: *179 '422': *15 '404': *6 '403': *27 @@ -24605,7 +24840,7 @@ paths: - closed - all default: open - - &319 + - &322 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24623,8 +24858,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - name: collab in: query required: false @@ -24654,9 +24889,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: &320 + default: &323 value: - id: 1 node_id: MDU6SXNzdWUx @@ -24936,7 +25171,7 @@ paths: application/json: schema: type: array - items: *180 + items: *186 examples: default: value: @@ -25234,7 +25469,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &181 + X-CommonMarker-Version: &187 example: 0.17.4 schema: type: string @@ -25289,7 +25524,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *181 + X-CommonMarker-Version: *187 content: text/html: schema: @@ -25318,7 +25553,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: - - &184 + - &190 name: account_id description: account_id parameter in: path @@ -25330,7 +25565,7 @@ paths: description: Response content: application/json: - schema: &183 + schema: &189 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -25364,7 +25599,7 @@ paths: - 'null' id: type: integer - plan: &182 + plan: &188 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -25467,7 +25702,7 @@ paths: - 'null' updated_at: type: string - plan: *182 + plan: *188 required: - url - id @@ -25475,7 +25710,7 @@ paths: - login - marketplace_purchase examples: - default: &185 + default: &191 value: url: https://api.github.com/orgs/github type: Organization @@ -25560,9 +25795,9 @@ paths: application/json: schema: type: array - items: *182 + items: *188 examples: - default: &186 + default: &192 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -25602,14 +25837,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &187 + - &193 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &188 + - &194 name: sort description: The property to sort the results by. in: query @@ -25639,9 +25874,9 @@ paths: application/json: schema: type: array - items: *183 + items: *189 examples: - default: &189 + default: &195 value: - url: https://api.github.com/orgs/github type: Organization @@ -25715,15 +25950,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: - - *184 + - *190 responses: '200': description: Response content: application/json: - schema: *183 + schema: *189 examples: - default: *185 + default: *191 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -25755,9 +25990,9 @@ paths: application/json: schema: type: array - items: *182 + items: *188 examples: - default: *186 + default: *192 headers: Link: *38 '401': *23 @@ -25780,8 +26015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *187 - - *188 + - *193 + - *194 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -25801,9 +26036,9 @@ paths: application/json: schema: type: array - items: *183 + items: *189 examples: - default: *189 + default: *195 headers: Link: *38 '401': *23 @@ -26068,14 +26303,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: - - &416 + - &419 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &417 + - &420 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -26092,7 +26327,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -26146,7 +26381,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &430 + '301': &433 description: Moved permanently content: application/json: @@ -26168,7 +26403,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &634 + - &635 name: all description: If `true`, show notifications marked as read. in: query @@ -26176,7 +26411,7 @@ paths: schema: type: boolean default: false - - &635 + - &636 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -26185,8 +26420,8 @@ paths: schema: type: boolean default: false - - *169 - - &636 + - *175 + - &637 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: @@ -26211,14 +26446,14 @@ paths: application/json: schema: type: array - items: &191 + items: &197 title: Thread description: Thread type: object properties: id: type: string - repository: &226 + repository: &232 title: Minimal Repository description: Minimal Repository type: object @@ -26557,7 +26792,7 @@ paths: type: boolean examples: - false - security_and_analysis: &363 + security_and_analysis: &366 type: - object - 'null' @@ -26730,7 +26965,7 @@ paths: - url - subscription_url examples: - default: &637 + default: &638 value: - id: '1' repository: @@ -26896,7 +27131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &192 + - &198 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 @@ -26910,7 +27145,7 @@ paths: description: Response content: application/json: - schema: *191 + schema: *197 examples: default: value: @@ -27013,7 +27248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *192 + - *198 responses: '205': description: Reset Content @@ -27036,7 +27271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *192 + - *198 responses: '204': description: No content @@ -27059,13 +27294,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: - - *192 + - *198 responses: '200': description: Response content: application/json: - schema: &193 + schema: &199 title: Thread Subscription description: Thread Subscription type: object @@ -27109,7 +27344,7 @@ paths: - url - subscribed examples: - default: &194 + default: &200 value: subscribed: true ignored: false @@ -27140,7 +27375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *192 + - *198 requestBody: required: false content: @@ -27161,9 +27396,9 @@ paths: description: Response content: application/json: - schema: *193 + schema: *199 examples: - default: *194 + default: *200 '304': *35 '403': *27 '401': *23 @@ -27186,7 +27421,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *192 + - *198 responses: '204': description: Response @@ -27283,7 +27518,7 @@ paths: type: array items: *60 examples: - default: &769 + default: &770 value: - login: github id: 1 @@ -27348,7 +27583,7 @@ paths: - 3 custom_roles: type: array - items: &273 + items: &276 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -27397,7 +27632,7 @@ paths: - created_at - updated_at examples: - default: &274 + default: &277 value: id: 8030 name: Security Engineer @@ -27490,7 +27725,7 @@ paths: items: anyOf: - type: 'null' - - *101 + - *107 additionalProperties: false examples: default: @@ -27710,22 +27945,22 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *74 - - *195 - - *196 - - *197 - - *198 + - *201 + - *202 + - *203 + - *204 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *199 + schema: *205 examples: - default: *200 + default: *206 '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27757,7 +27992,7 @@ paths: description: Response content: application/json: - schema: &201 + schema: &207 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -28167,7 +28402,7 @@ paths: - updated_at - archived_at examples: - default-response: &202 + default-response: &208 value: login: github id: 1 @@ -28493,18 +28728,18 @@ paths: description: Response content: application/json: - schema: *201 + schema: *207 examples: - default: *202 + default: *208 '422': description: Validation failed content: application/json: schema: oneOf: - - *203 - - *204 - '409': *100 + - *209 + - *210 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28558,9 +28793,9 @@ paths: description: Response content: application/json: - schema: *205 + schema: *211 examples: - default: *206 + default: *212 headers: Link: *38 x-github: @@ -28601,7 +28836,7 @@ paths: type: integer repository_cache_usages: type: array - items: &435 + items: &438 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -28679,7 +28914,7 @@ paths: type: array items: *40 examples: - default: *207 + default: *213 headers: Link: *38 x-github: @@ -28863,9 +29098,9 @@ paths: description: Response content: application/json: - schema: *208 + schema: *214 examples: - default: *209 + default: *215 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28901,7 +29136,7 @@ paths: type: array items: *43 examples: - default: *210 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29084,7 +29319,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &211 + schema: &217 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -29098,7 +29333,7 @@ paths: required: - include_claim_keys examples: - default: &212 + default: &218 value: include_claim_keys: - repo @@ -29125,15 +29360,15 @@ paths: required: true content: application/json: - schema: *211 + schema: *217 examples: - default: *212 + default: *218 responses: '201': description: Empty response content: application/json: - schema: &237 + schema: &243 title: Empty Object description: An object without any properties. type: object @@ -29172,7 +29407,7 @@ paths: schema: type: object properties: - enabled_repositories: &214 + enabled_repositories: &220 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -29186,7 +29421,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *47 - selected_actions_url: *213 + selected_actions_url: *219 sha_pinning_required: *48 required: - enabled_repositories @@ -29228,7 +29463,7 @@ paths: schema: type: object properties: - enabled_repositories: *214 + enabled_repositories: *220 allowed_actions: *47 sha_pinning_required: *48 required: @@ -29264,7 +29499,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *221 examples: response: summary: Example response @@ -29295,7 +29530,7 @@ paths: required: true content: application/json: - schema: *216 + schema: *222 examples: application/json: value: @@ -29305,7 +29540,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29333,7 +29568,7 @@ paths: application/json: schema: *49 examples: - default: *217 + default: *223 '404': *6 x-github: enabledForGitHubApps: true @@ -29390,7 +29625,7 @@ paths: description: Response content: application/json: - schema: *218 + schema: *224 examples: default: *50 '403': *27 @@ -29415,7 +29650,7 @@ paths: required: true content: application/json: - schema: *219 + schema: *225 examples: default: *50 responses: @@ -29467,7 +29702,7 @@ paths: type: array items: *65 examples: - default: &221 + default: &227 value: total_count: 1 repositories: @@ -29652,7 +29887,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - &220 + - &226 name: repository_id description: The unique identifier of the repository. in: path @@ -29681,7 +29916,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *74 - - *220 + - *226 responses: '204': description: Response @@ -29840,7 +30075,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29877,7 +30112,7 @@ paths: type: array items: *65 examples: - default: *221 + default: *227 '403': *27 '404': *6 x-github: @@ -29946,13 +30181,13 @@ paths: 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: - *74 - - *220 + - *226 responses: '204': description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -29973,13 +30208,13 @@ paths: 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: - *74 - - *220 + - *226 responses: '204': description: No content '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 x-github: enabledForGitHubApps: true @@ -30007,7 +30242,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *228 examples: default: *56 x-github: @@ -30041,7 +30276,7 @@ paths: required: false content: application/json: - schema: *223 + schema: *229 examples: default: *56 x-github: @@ -30088,7 +30323,7 @@ paths: type: number runner_groups: type: array - items: &224 + items: &230 type: object properties: id: @@ -30278,9 +30513,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: - default: &225 + default: &231 value: id: 2 name: octo-runner-group @@ -30322,7 +30557,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: default: value: @@ -30415,9 +30650,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *230 examples: - default: *225 + default: *231 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -30481,7 +30716,7 @@ paths: type: array items: *40 examples: - default: *207 + default: *213 headers: Link: *38 x-github: @@ -30522,9 +30757,9 @@ paths: type: number repositories: type: array - items: *226 + items: *232 examples: - default: &756 + default: &757 value: total_count: 1 repositories: @@ -30823,7 +31058,7 @@ paths: parameters: - *74 - *59 - - *220 + - *226 responses: '204': description: Response @@ -30847,7 +31082,7 @@ paths: parameters: - *74 - *59 - - *220 + - *226 responses: '204': description: Response @@ -31065,9 +31300,9 @@ paths: application/json: schema: type: array - items: *227 + items: *233 examples: - default: *228 + default: *234 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31132,10 +31367,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *229 + '201': *235 '404': *6 '422': *7 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31171,7 +31406,7 @@ paths: application/json: schema: *66 examples: - default: *230 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31207,7 +31442,7 @@ paths: application/json: schema: *66 examples: - default: *231 + default: *237 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31238,7 +31473,7 @@ paths: application/json: schema: *63 examples: - default: *232 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31413,7 +31648,7 @@ paths: - *74 - *62 responses: - '200': *233 + '200': *239 '404': *6 x-github: githubCloudOnly: false @@ -31442,7 +31677,7 @@ paths: parameters: - *74 - *62 - - *234 + - *240 responses: '200': *68 '404': *6 @@ -31487,7 +31722,7 @@ paths: type: integer secrets: type: array - items: &235 + items: &241 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -31568,7 +31803,7 @@ paths: description: Response content: application/json: - schema: &455 + schema: &458 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -31603,7 +31838,7 @@ paths: - key_id - key examples: - default: &456 + default: &459 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31629,7 +31864,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - *74 - - &236 + - &242 name: secret_name description: The name of the secret. in: path @@ -31641,7 +31876,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *241 examples: default: value: @@ -31672,7 +31907,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -31729,7 +31964,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -31756,7 +31991,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -31783,7 +32018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -31801,9 +32036,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: &240 + default: &246 value: total_count: 1 repositories: @@ -31896,7 +32131,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -31949,7 +32184,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -31983,7 +32218,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -32016,7 +32251,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *74 - - &440 + - &443 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)." @@ -32040,7 +32275,7 @@ paths: type: integer variables: type: array - items: &238 + items: &244 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -32178,7 +32413,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -32204,7 +32439,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - *74 - - &239 + - &245 name: name description: The name of the variable. in: path @@ -32216,7 +32451,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *244 examples: default: value: @@ -32247,7 +32482,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - *74 - - *239 + - *245 requestBody: required: true content: @@ -32310,7 +32545,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - *74 - - *239 + - *245 responses: '204': description: Response @@ -32337,7 +32572,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *74 - - *239 + - *245 - *19 - *17 responses: @@ -32355,9 +32590,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 '409': description: Response when the visibility of the variable is not set to `selected` @@ -32384,7 +32619,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *74 - - *239 + - *245 requestBody: required: true content: @@ -32434,7 +32669,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *74 - - *239 + - *245 - name: repository_id in: path required: true @@ -32469,7 +32704,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *74 - - *239 + - *245 - name: repository_id in: path required: true @@ -32527,7 +32762,7 @@ paths: required: true content: application/json: - schema: *241 + schema: *247 examples: default: *72 parameters: @@ -32800,8 +33035,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations-by-bulk-subject-digests parameters: - *17 - - *90 - - *91 + - *96 + - *97 - *74 requestBody: required: true @@ -32825,12 +33060,12 @@ paths: required: - subject_digests examples: - default: &788 + default: &789 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &789 + withPredicateType: &790 value: subject_digests: - sha256:abc123 @@ -32889,7 +33124,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &790 + default: &791 value: attestations_subject_digests: - sha256:abc: @@ -33130,8 +33365,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestations parameters: - *17 - - *90 - - *91 + - *96 + - *97 - *74 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 @@ -33183,7 +33418,7 @@ paths: bundle_url: type: string examples: - default: &469 + default: &472 value: attestations: - bundle: @@ -33309,10 +33544,10 @@ paths: required: false schema: type: string - - *242 - - *243 - - *244 - - *245 + - *248 + - *249 + - *250 + - *251 - *17 responses: '200': @@ -33321,9 +33556,9 @@ paths: application/json: schema: type: array - items: *246 + items: *252 examples: - default: *247 + default: *253 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -33352,7 +33587,7 @@ paths: type: array items: *4 examples: - default: &321 + default: &324 value: - login: octocat id: 1 @@ -33391,7 +33626,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: If the user is blocked @@ -33417,7 +33652,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -33438,7 +33673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -33465,16 +33700,16 @@ paths: subcategory: bypass-requests parameters: - *74 - - &255 + - &257 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *249 - - *250 - - *251 - - *252 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -33484,9 +33719,9 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: - default: *254 + default: *256 '404': *6 '500': *89 "/orgs/{org}/bypass-requests/secret-scanning": @@ -33510,11 +33745,11 @@ paths: subcategory: delegated-bypass parameters: - *74 - - *255 - - *249 - - *250 - - *251 - - *252 + - *257 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -33524,203 +33759,9 @@ paths: application/json: schema: type: array - items: &486 - title: Secret scanning bypass request - description: A bypass request made by a user asking to be exempted - from push protection in this repository. - type: object - properties: - id: - type: integer - description: The unique identifier of the bypass request. - number: - type: integer - description: The number uniquely identifying the bypass request - within its repository. - repository: - type: object - description: The repository the bypass request is for. - properties: - id: - type: integer - description: The ID of the repository the bypass request - is for. - name: - type: string - description: The name of the repository the bypass request - is for. - full_name: - type: string - description: The full name of the repository the bypass - request is for. - organization: - type: object - description: The organization associated with the repository - the bypass request is for. - properties: - id: - type: integer - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the bypass. - properties: - actor_id: - type: integer - description: The ID of the GitHub user who requested the - bypass. - actor_name: - type: string - description: The name of the GitHub user who requested the - bypass. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the push rules that are being requested - to be bypassed. - items: - type: object - properties: - secret_type: - type: string - description: The type of secret that secret scanning detected. - bypass_reason: - type: string - enum: - - used_in_tests - - false_positive - - fix_later - description: The reason the bypass was requested. - path: - type: string - description: The path in the repo where the secret was - located during the request. - branch: - type: string - description: The branch in the repo where the secret was - located during the request. - resource_identifier: - type: string - description: The unique identifier for the request type of the - bypass request. For example, a commit SHA. - examples: - - 827efc6d56897b048c772eb4087f854f46256132 - status: - type: string - description: The status of the bypass request. - enum: - - pending - - denied - - approved - - cancelled - - completed - - expired - - open - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the bypass request. - expires_at: - type: string - format: date-time - description: The date and time the bypass request will expire. - created_at: - type: string - format: date-time - description: The date and time the bypass request was created. - responses: - type: - - array - - 'null' - description: The responses to the bypass request. - items: *256 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: - type: string - description: The URL to view the bypass request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/exemptions/1 + items: *258 examples: - default: &487 - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: used_in_tests - path: "/tests/README.md:16:0" - branch: refs/heads/main - resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 - status: denied - requester_comment: Test token used in the readme as an example - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: https://github.com/octo-org/smile/exemptions/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: fix_later - path: README.md:17:0 - branch: refs/heads/my-branch - resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 - status: denied - requester_comment: Token is already revoked, I'll remove it later - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 - html_url: https://github.com/octo-org/smile/exemptions/2 + default: *259 '404': *6 '500': *89 "/orgs/{org}/campaigns": @@ -33742,12 +33783,12 @@ paths: - *74 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &258 + schema: &261 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -33773,7 +33814,7 @@ paths: application/json: schema: type: array - items: &259 + items: &262 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -33804,7 +33845,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *257 + items: *260 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -33823,7 +33864,7 @@ paths: - string - 'null' format: date-time - state: *258 + state: *261 contact_link: description: The contact link of the campaign. type: @@ -33921,7 +33962,7 @@ paths: headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34040,9 +34081,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: &260 + default: &263 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -34091,7 +34132,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34125,16 +34166,16 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: *260 + default: *263 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34205,7 +34246,7 @@ paths: - string - 'null' format: uri - state: *258 + state: *261 examples: default: value: @@ -34215,9 +34256,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - default: *260 + default: *263 '400': description: Bad Request content: @@ -34229,7 +34270,7 @@ paths: content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34261,7 +34302,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34284,19 +34325,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *74 - - *261 - - *262 - - *90 - - *91 + - *264 + - *265 + - *96 + - *97 - *19 - *17 - - *92 + - *98 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *263 + schema: *266 - name: sort description: The property by which to sort the results. in: query @@ -34312,7 +34353,7 @@ paths: be returned. in: query required: false - schema: &497 + schema: &498 type: string description: Severity of a code scanning alert. enum: @@ -34330,13 +34371,13 @@ paths: application/json: schema: type: array - items: *264 + items: *267 examples: - default: *265 + default: *268 headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34377,8 +34418,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -34386,7 +34427,7 @@ paths: application/json: schema: type: array - items: *96 + items: *102 examples: default: value: @@ -34547,7 +34588,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *266 + code_scanning_options: *269 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -34556,7 +34597,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -34688,9 +34729,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *96 + schema: *102 examples: - default: *267 + default: *270 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34718,9 +34759,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '304': *35 '403': *27 '404': *6 @@ -34772,11 +34813,11 @@ paths: - 32 - 91 responses: - '204': *122 + '204': *128 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34799,15 +34840,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - *74 - - *98 + - *104 responses: '200': description: Response content: application/json: - schema: *96 + schema: *102 examples: - default: *267 + default: *270 '304': *35 '403': *27 '404': *6 @@ -34832,7 +34873,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -34911,7 +34952,7 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *99 + code_scanning_default_setup_options: *105 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -35029,7 +35070,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *96 + schema: *102 examples: default: value: @@ -35089,13 +35130,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - *74 - - *98 + - *104 responses: - '204': *122 + '204': *128 '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35120,7 +35161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -35184,7 +35225,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - *74 - - *98 + - *104 requestBody: required: true content: @@ -35224,12 +35265,12 @@ paths: - none - private_and_internal - public - configuration: *96 + configuration: *102 examples: default: value: default_for_new_repos: all - configuration: *267 + configuration: *270 '403': *27 '404': *6 x-github: @@ -35254,7 +35295,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - *74 - - *98 + - *104 - 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)." @@ -35263,8 +35304,8 @@ paths: schema: type: integer default: 30 - - *90 - - *91 + - *96 + - *97 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -35282,13 +35323,13 @@ paths: application/json: schema: type: array - items: *270 + items: *273 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *271 + repository: *274 '403': *27 '404': *6 x-github: @@ -35328,7 +35369,7 @@ paths: type: integer codespaces: type: array - items: &322 + items: &325 type: object title: Codespace description: A codespace. @@ -35359,11 +35400,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *226 + repository: *232 machine: anyOf: - type: 'null' - - &526 + - &527 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -35650,7 +35691,7 @@ paths: - pulls_url - recent_folders examples: - default: &323 + default: &326 value: total_count: 3 codespaces: @@ -36274,7 +36315,7 @@ paths: type: integer secrets: type: array - items: &272 + items: &275 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -36315,7 +36356,7 @@ paths: - updated_at - visibility examples: - default: &527 + default: &528 value: total_count: 2 secrets: @@ -36353,7 +36394,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -36388,7 +36429,7 @@ paths: - key_id - key examples: - default: &529 + default: &530 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -36412,15 +36453,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &531 + default: &532 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -36448,7 +36489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -36503,7 +36544,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -36530,7 +36571,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -36556,7 +36597,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -36574,9 +36615,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -36599,7 +36640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -36650,7 +36691,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -36684,7 +36725,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -36887,9 +36928,9 @@ paths: currently being billed. seats: type: array - items: *113 + items: *119 examples: - default: *114 + default: *120 headers: Link: *38 '500': *89 @@ -37273,13 +37314,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37507,7 +37548,7 @@ paths: - 3 custom_roles: type: array - items: *273 + items: *276 examples: default: value: @@ -37599,7 +37640,7 @@ paths: required: true content: application/json: - schema: &276 + schema: &279 type: object properties: name: @@ -37641,9 +37682,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37668,7 +37709,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - *74 - - &275 + - &278 name: role_id description: The unique identifier of the role. in: path @@ -37680,9 +37721,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '404': *6 x-github: githubCloudOnly: true @@ -37705,12 +37746,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: application/json: - schema: &277 + schema: &280 type: object properties: name: @@ -37749,9 +37790,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37776,7 +37817,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -37809,7 +37850,7 @@ paths: required: true content: application/json: - schema: *276 + schema: *279 examples: default: value: @@ -37823,9 +37864,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37856,15 +37897,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - *74 - - *275 + - *278 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '404': *6 x-github: githubCloudOnly: true @@ -37893,12 +37934,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -37913,9 +37954,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 '422': *15 '404': *6 x-github: @@ -37946,7 +37987,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -37975,11 +38016,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *74 - - *278 - - *279 - - *280 - *281 - *282 + - *283 + - *284 + - *285 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -37995,14 +38036,14 @@ paths: Can be: `jfrog-artifactory` schema: type: string - - *283 - - *284 - - *285 - - *92 - - *90 - - *91 - *286 - *287 + - *288 + - *98 + - *96 + - *97 + - *289 + - *290 - *17 responses: '200': @@ -38011,9 +38052,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *289 + default: *292 '304': *35 '400': *14 '403': *27 @@ -38057,7 +38098,7 @@ paths: type: integer secrets: type: array - items: &290 + items: &293 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38136,7 +38177,7 @@ paths: description: Response content: application/json: - schema: &553 + schema: &554 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38155,7 +38196,7 @@ paths: - key_id - key examples: - default: &554 + default: &555 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38179,13 +38220,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: default: value: @@ -38214,7 +38255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -38269,7 +38310,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -38294,7 +38335,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -38319,7 +38360,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 - *19 - *17 responses: @@ -38337,9 +38378,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *240 + default: *246 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38361,7 +38402,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -38412,7 +38453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -38444,7 +38485,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *74 - - *236 + - *242 - name: repository_id in: path required: true @@ -38481,7 +38522,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *74 - - &562 + - &563 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -38489,7 +38530,7 @@ paths: required: false schema: type: string - - &563 + - &564 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -38497,7 +38538,7 @@ paths: required: false schema: type: string - - &564 + - &565 name: time_period description: |- The time period to filter by. @@ -38513,7 +38554,7 @@ paths: - week - month default: month - - &565 + - &566 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -38528,7 +38569,7 @@ paths: - denied - all default: all - - *255 + - *257 - *17 - *19 responses: @@ -38538,7 +38579,7 @@ paths: application/json: schema: type: array - items: &566 + items: &567 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -38701,7 +38742,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &567 + default: &568 value: - id: 21 number: 42 @@ -38788,11 +38829,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *74 - - *255 - - *249 - - *250 - - *251 - - &568 + - *257 + - *91 + - *92 + - *93 + - &569 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -38818,7 +38859,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -38932,7 +38973,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *256 + items: *95 url: type: string format: uri @@ -38945,7 +38986,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &570 + default: &571 value: - id: 21 number: 42 @@ -39033,7 +39074,7 @@ paths: application/json: schema: type: array - items: &333 + items: &336 title: Package description: A software package type: object @@ -39086,7 +39127,7 @@ paths: repository: anyOf: - type: 'null' - - *226 + - *232 created_at: type: string format: date-time @@ -39104,7 +39145,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &337 value: - id: 197 name: hello_docker @@ -39192,7 +39233,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: 200-response: value: @@ -39288,7 +39329,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &414 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -39378,7 +39419,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &412 + default: &415 value: group_id: '123' group_name: Octocat admins @@ -39433,7 +39474,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -39473,7 +39514,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &410 + default: &413 value: groups: - group_id: '123' @@ -39517,7 +39558,7 @@ paths: application/json: schema: type: array - items: &313 + items: &316 title: Organization Invitation description: Organization Invitation type: object @@ -39571,7 +39612,7 @@ paths: - invitation_teams_url - node_id examples: - default: &314 + default: &317 value: - id: 1 login: monalisa @@ -39638,7 +39679,7 @@ paths: application/json: schema: type: array - items: &364 + items: &367 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -39652,7 +39693,7 @@ paths: - name - description examples: - default: &365 + default: &368 value: - name: add_assignee description: Assign or remove a user @@ -39693,7 +39734,7 @@ paths: application/json: schema: type: array - items: &291 + items: &294 title: Org Hook description: Org Hook type: object @@ -39876,9 +39917,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: - default: &292 + default: &295 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39923,7 +39964,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *74 - - &293 + - &296 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. @@ -39936,9 +39977,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: - default: *292 + default: *295 '404': *6 x-github: githubCloudOnly: false @@ -39960,7 +40001,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *74 - - *293 + - *296 requestBody: required: false content: @@ -40006,7 +40047,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *294 examples: default: value: @@ -40046,7 +40087,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *74 - - *293 + - *296 responses: '204': description: Response @@ -40072,7 +40113,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *74 - - *293 + - *296 responses: '200': description: Response @@ -40101,7 +40142,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *74 - - *293 + - *296 requestBody: required: false content: @@ -40150,9 +40191,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *17 - - *294 + - *297 responses: '200': description: Response @@ -40160,9 +40201,9 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: - default: *296 + default: *299 '400': *14 '422': *15 x-github: @@ -40186,16 +40227,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *16 responses: '200': description: Response content: application/json: - schema: *297 + schema: *300 examples: - default: *298 + default: *301 '400': *14 '422': *15 x-github: @@ -40219,7 +40260,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *74 - - *293 + - *296 - *16 responses: '202': *37 @@ -40246,7 +40287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *74 - - *293 + - *296 responses: '204': description: Response @@ -40269,7 +40310,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *74 - - &303 + - &306 name: actor_type in: path description: The type of the actor @@ -40282,14 +40323,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &304 + - &307 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &299 + - &302 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`.' @@ -40297,7 +40338,7 @@ paths: required: true schema: type: string - - &300 + - &303 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) @@ -40308,7 +40349,7 @@ paths: type: string - *19 - *17 - - *92 + - *98 - name: sort description: The property to sort the results by. in: query @@ -40392,12 +40433,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *74 - - *299 - - *300 + - *302 + - *303 - *19 - *17 - - *92 - - &309 + - *98 + - &312 name: sort description: The property to sort the results by. in: query @@ -40477,14 +40518,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *74 - - *299 - - *300 + - *302 + - *303 responses: '200': description: Response content: application/json: - schema: &301 + schema: &304 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40500,7 +40541,7 @@ paths: type: integer format: int64 examples: - default: &302 + default: &305 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40521,23 +40562,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *74 - - &305 + - &308 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *299 - - *300 + - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *301 + schema: *304 examples: - default: *302 + default: *305 x-github: enabledForGitHubApps: true category: orgs @@ -40556,18 +40597,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *74 - - *299 - - *300 + - *302 - *303 - - *304 + - *306 + - *307 responses: '200': description: Response content: application/json: - schema: *301 + schema: *304 examples: - default: *302 + default: *305 x-github: enabledForGitHubApps: true category: orgs @@ -40585,9 +40626,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *74 - - *299 - - *300 - - &306 + - *302 + - *303 + - &309 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40600,7 +40641,7 @@ paths: description: Response content: application/json: - schema: &307 + schema: &310 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40616,7 +40657,7 @@ paths: type: integer format: int64 examples: - default: &308 + default: &311 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40653,18 +40694,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *74 - - *305 - - *299 - - *300 - - *306 + - *308 + - *302 + - *303 + - *309 responses: '200': description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 x-github: enabledForGitHubApps: true category: orgs @@ -40682,19 +40723,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *74 - - *303 - - *304 - - *299 - - *300 - *306 + - *307 + - *302 + - *303 + - *309 responses: '200': description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 x-github: enabledForGitHubApps: true category: orgs @@ -40712,13 +40753,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *74 - - *305 - - *299 - - *300 + - *308 + - *302 + - *303 - *19 - *17 - - *92 - - *309 + - *98 + - *312 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40802,7 +40843,7 @@ paths: application/json: schema: *20 examples: - default: &601 + default: &602 value: id: 1 account: @@ -40968,12 +41009,12 @@ paths: application/json: schema: anyOf: - - &311 + - &314 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &310 + limit: &313 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -41001,7 +41042,7 @@ paths: properties: {} additionalProperties: false examples: - default: &312 + default: &315 value: limit: collaborators_only origin: organization @@ -41030,13 +41071,13 @@ paths: required: true content: application/json: - schema: &602 + schema: &603 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *310 + limit: *313 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -41061,9 +41102,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '422': *15 x-github: githubCloudOnly: false @@ -41141,9 +41182,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 '404': *6 @@ -41221,7 +41262,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *316 examples: default: value: @@ -41278,7 +41319,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *74 - - &315 + - &318 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41312,7 +41353,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *74 - - *315 + - *318 - *17 - *19 responses: @@ -41322,9 +41363,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: &332 + default: &335 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41367,7 +41408,7 @@ paths: application/json: schema: type: array - items: *316 + items: *319 examples: default: value: @@ -41455,9 +41496,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: &317 + default: &320 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41490,7 +41531,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *74 - - &318 + - &321 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41546,9 +41587,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 '422': *7 x-github: @@ -41573,7 +41614,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *74 - - *318 + - *321 responses: '204': description: Response @@ -41636,7 +41677,7 @@ paths: - closed - all default: open - - *319 + - *322 - name: type description: Can be the name of an issue type. in: query @@ -41654,8 +41695,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -41665,9 +41706,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *320 + default: *323 headers: Link: *38 '404': *6 @@ -41727,7 +41768,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '422': *15 @@ -41748,7 +41789,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response if requester is an organization member and user is @@ -41783,7 +41824,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -41810,7 +41851,7 @@ paths: - *17 - *19 - *74 - - *248 + - *254 responses: '200': description: Response @@ -41826,9 +41867,9 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: - default: *323 + default: *326 '304': *35 '500': *89 '401': *23 @@ -41854,8 +41895,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - *74 - - *248 - - &324 + - *254 + - &327 name: codespace_name in: path required: true @@ -41889,16 +41930,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - *74 - - *248 - - *324 + - *254 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &525 + default: &526 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42072,13 +42113,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - *74 - - *248 + - *254 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *113 + schema: *119 examples: default: value: @@ -42148,13 +42189,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: &325 + schema: &328 title: Org Membership description: Org Membership type: object @@ -42223,7 +42264,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &326 + response-if-user-has-an-active-admin-membership-with-organization: &329 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42292,7 +42333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 requestBody: required: false content: @@ -42320,9 +42361,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: - response-if-user-already-had-membership-with-organization: *326 + response-if-user-already-had-membership-with-organization: *329 '422': *15 '403': *27 x-github: @@ -42347,7 +42388,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -42394,7 +42435,7 @@ paths: application/json: schema: type: array - items: &327 + items: &330 title: Migration description: A migration. type: object @@ -42732,7 +42773,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -42911,7 +42952,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *74 - - &328 + - &331 name: migration_id description: The unique identifier of the migration. in: path @@ -42939,7 +42980,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -43109,7 +43150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *74 - - *328 + - *331 responses: '302': description: Response @@ -43131,7 +43172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *74 - - *328 + - *331 responses: '204': description: Response @@ -43155,8 +43196,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *74 - - *328 - - &768 + - *331 + - &769 name: repo_name description: repo_name parameter in: path @@ -43184,7 +43225,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *74 - - *328 + - *331 - *17 - *19 responses: @@ -43194,9 +43235,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: &339 + default: &342 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43405,7 +43446,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &329 + items: &332 title: Organization Role description: Organization roles type: object @@ -43614,7 +43655,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43643,7 +43684,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43666,7 +43707,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *74 - - &330 + - &333 name: team_slug description: The slug of the team name. in: path @@ -43698,8 +43739,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *74 - - *330 - - *275 + - *333 + - *278 responses: '204': description: Response @@ -43729,8 +43770,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *74 - - *330 - - *275 + - *333 + - *278 responses: '204': description: Response @@ -43756,7 +43797,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -43782,8 +43823,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - *74 - - *248 - - *275 + - *254 + - *278 responses: '204': description: Response @@ -43814,8 +43855,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - *74 - - *248 - - *275 + - *254 + - *278 responses: '204': description: Response @@ -43844,13 +43885,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - *74 - - *275 + - *278 responses: '200': description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43908,7 +43949,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - *74 - - *275 + - *278 requestBody: required: true content: @@ -43947,7 +43988,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43975,7 +44016,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *100 + '409': *106 '404': *6 x-github: githubCloudOnly: true @@ -44001,7 +44042,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - *74 - - *275 + - *278 responses: '204': description: Response @@ -44027,7 +44068,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *74 - - *275 + - *278 - *17 - *19 responses: @@ -44106,7 +44147,7 @@ paths: parent: anyOf: - type: 'null' - - *331 + - *334 required: - id - node_id @@ -44120,7 +44161,7 @@ paths: - slug - parent examples: - default: *332 + default: *335 headers: Link: *38 '404': @@ -44150,7 +44191,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *74 - - *275 + - *278 - *17 - *19 responses: @@ -44179,7 +44220,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *331 + items: *334 name: type: - string @@ -44296,7 +44337,7 @@ paths: - type - url examples: - default: *321 + default: *324 headers: Link: *38 '404': @@ -44347,7 +44388,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -44373,7 +44414,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - *74 - - *248 + - *254 requestBody: required: false content: @@ -44431,7 +44472,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -44489,7 +44530,7 @@ paths: - nuget - container - *74 - - &770 + - &771 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44525,12 +44566,12 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *334 + default: *337 '403': *27 '401': *23 - '400': &772 + '400': &773 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44552,7 +44593,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &335 + - &338 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 @@ -44570,7 +44611,7 @@ paths: - docker - nuget - container - - &336 + - &339 name: package_name description: The name of the package. in: path @@ -44583,7 +44624,7 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: default: value: @@ -44635,8 +44676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 responses: '204': @@ -44669,8 +44710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 - name: token description: package token @@ -44703,8 +44744,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-an-organization parameters: - - *335 - - *336 + - *338 + - *339 - *74 - *19 - *17 @@ -44725,7 +44766,7 @@ paths: application/json: schema: type: array - items: &337 + items: &340 title: Package Version description: A version of a software package type: object @@ -44860,10 +44901,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: - - *335 - - *336 + - *338 + - *339 - *74 - - &338 + - &341 name: package_version_id description: Unique identifier of the package version. in: path @@ -44875,7 +44916,7 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -44911,10 +44952,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *335 - - *336 - - *74 - *338 + - *339 + - *74 + - *341 responses: '204': description: Response @@ -44946,10 +44987,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *335 - - *336 - - *74 - *338 + - *339 + - *74 + - *341 responses: '204': description: Response @@ -44979,7 +45020,7 @@ paths: - *74 - *17 - *19 - - &340 + - &343 name: sort description: The property by which to sort the results. in: query @@ -44989,8 +45030,8 @@ paths: enum: - created_at default: created_at - - *92 - - &341 + - *98 + - &344 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -45002,7 +45043,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &342 + - &345 name: repository description: The name of the repository to use to filter the results. in: query @@ -45011,7 +45052,7 @@ paths: type: string examples: - Hello-World - - &343 + - &346 name: permission description: The permission to use to filter the results. in: query @@ -45020,7 +45061,7 @@ paths: type: string examples: - issues_read - - &344 + - &347 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) @@ -45030,7 +45071,7 @@ paths: schema: type: string format: date-time - - &345 + - &348 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) @@ -45040,7 +45081,7 @@ paths: schema: type: string format: date-time - - &346 + - &349 name: token_id description: The ID of the token in: query @@ -45316,7 +45357,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45357,9 +45398,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -45385,14 +45426,14 @@ paths: - *74 - *17 - *19 - - *340 - - *92 - - *341 - - *342 - *343 + - *98 - *344 - *345 - *346 + - *347 + - *348 + - *349 responses: '500': *89 '422': *15 @@ -45633,7 +45674,7 @@ paths: responses: '500': *89 '404': *6 - '204': *122 + '204': *128 '403': *27 '422': *15 x-github: @@ -45674,9 +45715,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -45718,7 +45759,7 @@ paths: type: integer configurations: type: array - items: &347 + items: &350 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45977,7 +46018,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &348 + org-private-registry-with-selected-visibility: &351 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46069,15 +46110,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 '404': *6 x-github: githubCloudOnly: false @@ -46099,7 +46140,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 requestBody: required: true content: @@ -46196,7 +46237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *74 - - *236 + - *242 responses: '204': description: Response @@ -46242,7 +46283,7 @@ paths: application/json: schema: type: array - items: &349 + items: &352 title: Project description: Projects are a way to organize columns and cards of work. @@ -46424,7 +46465,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: default: value: @@ -46462,7 +46503,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &427 + '410': &430 description: Gone content: application/json: @@ -46495,8 +46536,8 @@ paths: required: false schema: type: string - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -46505,7 +46546,7 @@ paths: application/json: schema: type: array - items: &350 + items: &353 title: Projects v2 Project description: A projects v2 project type: object @@ -46579,7 +46620,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &847 + - &848 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46664,7 +46705,7 @@ paths: - deleted_at - deleted_by examples: - default: &351 + default: &354 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46767,7 +46808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &352 + - &355 name: project_number description: The project's number. in: path @@ -46780,9 +46821,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -46804,11 +46845,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *352 + - *355 - *74 - *17 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -46816,7 +46857,7 @@ paths: application/json: schema: type: array - items: &353 + items: &356 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46966,7 +47007,7 @@ paths: - updated_at - project_url examples: - default: &354 + default: &357 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47009,8 +47050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *352 - - &783 + - *355 + - &784 name: field_id description: The unique identifier of the field. in: path @@ -47023,9 +47064,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -47048,7 +47089,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *352 + - *355 - *74 - 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) @@ -47069,8 +47110,8 @@ paths: type: string examples: - fields[]=123,fields[]=456,fields[]=789 - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -47079,7 +47120,7 @@ paths: application/json: schema: type: array - items: &358 + items: &361 title: Projects v2 Item description: An item belonging to a project type: object @@ -47096,7 +47137,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &357 + content_type: &360 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47153,7 +47194,7 @@ paths: - updated_at - archived_at examples: - default: &359 + default: &362 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -47848,7 +47889,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *74 - - *352 + - *355 requestBody: required: true description: Details of the item to add to the project. @@ -47885,7 +47926,7 @@ paths: description: Response content: application/json: - schema: &784 + schema: &785 title: Projects v2 Item description: An item belonging to a project type: object @@ -47898,8 +47939,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *179 - - &538 + - *185 + - &539 title: Pull Request Simple description: Pull Request Simple type: object @@ -48019,7 +48060,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 active_lock_reason: type: - string @@ -48074,7 +48115,7 @@ paths: type: - array - 'null' - items: *257 + items: *260 head: type: object properties: @@ -48118,7 +48159,7 @@ paths: _links: type: object properties: - comments: &356 + comments: &359 title: Link description: Hypermedia Link type: object @@ -48127,13 +48168,13 @@ paths: type: string required: - href - commits: *356 - statuses: *356 - html: *356 - issue: *356 - review_comments: *356 - review_comment: *356 - self: *356 + commits: *359 + statuses: *359 + html: *359 + issue: *359 + review_comments: *359 + review_comment: *359 + self: *359 required: - comments - commits @@ -48143,8 +48184,8 @@ paths: - review_comments - review_comment - self - author_association: *166 - auto_merge: &644 + author_association: *172 + auto_merge: &645 title: Auto merge description: The status of auto merging a pull request. type: @@ -48246,7 +48287,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *357 + content_type: *360 creator: *4 created_at: type: string @@ -48283,7 +48324,7 @@ paths: - updated_at - archived_at examples: - default: &785 + default: &786 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -48357,9 +48398,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: - - *352 + - *355 - *74 - - &360 + - &363 name: item_id description: The unique identifier of the project item. in: path @@ -48383,9 +48424,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -48406,9 +48447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *352 + - *355 - *74 - - *360 + - *363 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -48481,9 +48522,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '401': *23 '403': *27 '404': *6 @@ -48503,9 +48544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *352 + - *355 - *74 - - *360 + - *363 responses: '204': description: Response @@ -48537,9 +48578,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -48577,7 +48618,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *118 + items: *124 minItems: 1 maxItems: 100 required: @@ -48607,9 +48648,9 @@ paths: application/json: schema: type: array - items: *118 + items: *124 examples: - default: *119 + default: *125 '403': *27 '404': *6 x-github: @@ -48631,15 +48672,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 responses: '200': description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -48663,12 +48704,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 requestBody: required: true content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -48684,9 +48725,9 @@ paths: description: Response content: application/json: - schema: *118 + schema: *124 examples: - default: *121 + default: *127 '403': *27 '404': *6 x-github: @@ -48710,9 +48751,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *74 - - *120 + - *126 responses: - '204': *122 + '204': *128 '403': *27 '404': *6 x-github: @@ -48774,7 +48815,7 @@ paths: - octocat/Hello-World properties: type: array - items: &362 + items: &365 title: Custom Property Value description: Custom property name and associated value type: object @@ -48864,7 +48905,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *362 + items: *365 required: - repository_names - properties @@ -48917,7 +48958,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -48937,7 +48978,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response if user is a public member @@ -48962,7 +49003,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -48984,7 +49025,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - *74 - - *248 + - *254 responses: '204': description: Response @@ -49055,9 +49096,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -49261,7 +49302,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &432 title: Full Repository description: Full Repository type: object @@ -49707,7 +49748,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 organization: anyOf: - type: 'null' @@ -49726,7 +49767,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &543 + code_of_conduct: &544 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -49756,7 +49797,7 @@ paths: - key - name - html_url - security_and_analysis: *363 + security_and_analysis: *366 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -49840,7 +49881,7 @@ paths: - network_count - subscribers_count examples: - default: &431 + default: &434 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50366,9 +50407,9 @@ paths: application/json: schema: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -50393,7 +50434,7 @@ paths: - *74 - *17 - *19 - - &666 + - &667 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50412,7 +50453,7 @@ paths: application/json: schema: type: array - items: *151 + items: *157 examples: default: value: @@ -50480,26 +50521,20 @@ paths: - push - repository default: branch - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *366 + items: *136 + conditions: *369 rules: type: array description: An array of rules within the ruleset. - items: &368 + items: &371 title: Repository Rule type: object description: A repository rule. oneOf: - - *131 - - *132 - - *133 - - *134 - - *135 - - *136 - *137 - *138 - *139 @@ -50514,6 +50549,12 @@ paths: - *148 - *149 - *150 + - *151 + - *152 + - *153 + - *154 + - *155 + - *156 required: - name - enforcement @@ -50551,9 +50592,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: &367 + default: &370 value: id: 21 name: super cool ruleset @@ -50608,7 +50649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *74 - - &668 + - &669 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 @@ -50618,16 +50659,16 @@ paths: schema: type: string x-multi-segment: true - - *255 - - *251 - - &669 + - *257 + - *93 + - &670 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 - - &670 + - &671 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -50647,7 +50688,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &672 title: Rule Suites description: Response type: array @@ -50703,7 +50744,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &672 + default: &673 value: - id: 21 actor_id: 12 @@ -50747,7 +50788,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &673 + - &674 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -50763,7 +50804,7 @@ paths: description: Response content: application/json: - schema: &674 + schema: &675 title: Rule Suite description: Response type: object @@ -50870,7 +50911,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &675 + default: &676 value: id: 21 actor_id: 12 @@ -50943,9 +50984,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *367 + default: *370 '404': *6 '500': *89 put: @@ -50989,16 +51030,16 @@ paths: - tag - push - repository - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *366 + items: *136 + conditions: *369 rules: description: An array of rules within the ruleset. type: array - items: *368 + items: *371 examples: default: value: @@ -51033,9 +51074,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *367 + default: *370 '404': *6 '500': *89 delete: @@ -51092,9 +51133,9 @@ paths: application/json: schema: type: array - items: *155 + items: *161 examples: - default: *369 + default: *372 '404': *6 '500': *89 x-github: @@ -51131,7 +51172,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: default: value: @@ -51194,14 +51235,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - *371 - - *372 - - *373 - *374 - - *92 + - *375 + - *376 + - *377 + - *98 - *19 - *17 - - &677 + - &678 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 @@ -51211,7 +51252,7 @@ paths: required: false schema: type: string - - &678 + - &679 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 @@ -51221,10 +51262,10 @@ paths: required: false schema: type: string - - *375 - - *376 - - *377 - *378 + - *379 + - *380 + - *381 responses: '200': description: Response @@ -51232,13 +51273,13 @@ paths: application/json: schema: type: array - items: *379 + items: *382 examples: - default: *380 + default: *383 headers: Link: *38 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51269,9 +51310,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 '403': *27 '404': *6 patch: @@ -51300,7 +51341,7 @@ paths: schema: type: object properties: - pattern_config_version: *158 + pattern_config_version: *164 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -51326,7 +51367,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *158 + custom_pattern_version: *164 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -51362,7 +51403,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *15 "/orgs/{org}/security-advisories": get: @@ -51381,7 +51422,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - *74 - - *92 + - *98 - name: sort description: The property to sort the results by. in: query @@ -51393,8 +51434,8 @@ paths: - updated - published default: created - - *90 - - *91 + - *96 + - *97 - 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)." @@ -51424,7 +51465,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 description: A repository security advisory. type: object properties: @@ -51632,7 +51673,7 @@ paths: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: - array @@ -51668,7 +51709,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 credits_detailed: type: - array @@ -51679,7 +51720,7 @@ paths: type: object properties: user: *4 - type: *383 + type: *386 state: type: string description: The state of the user's acceptance of the @@ -51705,13 +51746,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *257 + items: *260 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *101 + - *107 type: - 'null' required: @@ -51743,7 +51784,7 @@ paths: - private_fork additionalProperties: false examples: - default: &700 + default: &701 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -52130,9 +52171,9 @@ paths: application/json: schema: type: array - items: *331 + items: *334 examples: - default: *332 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52156,7 +52197,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -52182,7 +52223,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -52217,9 +52258,9 @@ paths: description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52244,7 +52285,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *74 - - *386 + - *389 - *17 - *19 responses: @@ -52252,9 +52293,9 @@ paths: description: Success content: application/json: - schema: *387 + schema: *390 examples: - default: *388 + default: *391 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -52282,9 +52323,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52312,9 +52353,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -52352,9 +52393,9 @@ paths: type: integer network_configurations: type: array - items: *115 + items: *121 examples: - default: *393 + default: *396 headers: Link: *38 x-github: @@ -52417,9 +52458,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52440,15 +52481,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *117 + - *123 responses: '200': description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 headers: Link: *38 x-github: @@ -52470,7 +52511,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *74 - - *117 + - *123 requestBody: required: true content: @@ -52509,9 +52550,9 @@ paths: description: Response content: application/json: - schema: *115 + schema: *121 examples: - default: *116 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52531,7 +52572,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *74 - - *117 + - *123 responses: '204': description: Response @@ -52555,15 +52596,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *74 - - *394 + - *397 responses: '200': description: Response content: application/json: - schema: *395 + schema: *398 examples: - default: *396 + default: *399 headers: Link: *38 x-github: @@ -52601,7 +52642,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &421 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -52653,7 +52694,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &419 + default: &422 value: groups: - group_id: '123' @@ -52699,7 +52740,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *74 - - *330 + - *333 - 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`). @@ -52731,13 +52772,13 @@ paths: application/json: schema: type: array - items: *162 + items: *168 examples: - default: *163 + default: *169 '500': *89 '403': *27 '404': *6 - '422': *164 + '422': *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52765,9 +52806,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 headers: Link: *38 '403': *27 @@ -52861,7 +52902,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &400 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52935,7 +52976,7 @@ paths: parent: anyOf: - type: 'null' - - *331 + - *334 members_count: type: integer examples: @@ -53241,7 +53282,7 @@ paths: - repos_count - organization examples: - default: &398 + default: &401 value: id: 1 node_id: MDQ6VGVhbTE= @@ -53312,15 +53353,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -53342,7 +53383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *74 - - *330 + - *333 requestBody: required: false content: @@ -53405,16 +53446,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '201': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 '422': *15 '403': *27 @@ -53440,7 +53481,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -53467,8 +53508,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *74 - - *330 - - *92 + - *333 + - *98 - *17 - *19 - name: pinned @@ -53484,7 +53525,7 @@ paths: application/json: schema: type: array - items: &399 + items: &402 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -53575,7 +53616,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *167 + reactions: *173 required: - author - body @@ -53595,7 +53636,7 @@ paths: - updated_at - url examples: - default: &743 + default: &744 value: - author: login: octocat @@ -53670,7 +53711,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -53704,9 +53745,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: &400 + default: &403 value: author: login: octocat @@ -53779,8 +53820,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *74 - - *330 - - &401 + - *333 + - &404 name: discussion_number description: The number that identifies the discussion. in: path @@ -53792,9 +53833,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53817,8 +53858,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: false content: @@ -53841,9 +53882,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: &744 + default: &745 value: author: login: octocat @@ -53914,8 +53955,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 responses: '204': description: Response @@ -53942,9 +53983,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *74 - - *330 - - *401 - - *92 + - *333 + - *404 + - *98 - *17 - *19 responses: @@ -53954,7 +53995,7 @@ paths: application/json: schema: type: array - items: &402 + items: &405 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -54019,7 +54060,7 @@ paths: format: uri examples: - https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *167 + reactions: *173 required: - author - body @@ -54034,7 +54075,7 @@ paths: - updated_at - url examples: - default: &745 + default: &746 value: - author: login: octocat @@ -54103,8 +54144,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: true content: @@ -54126,9 +54167,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: &403 + default: &406 value: author: login: octocat @@ -54195,9 +54236,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *74 - - *330 - - *401 - - &404 + - *333 + - *404 + - &407 name: comment_number description: The number that identifies the comment. in: path @@ -54209,9 +54250,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54234,9 +54275,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 requestBody: required: true content: @@ -54258,9 +54299,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: &746 + default: &747 value: author: login: octocat @@ -54325,9 +54366,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 responses: '204': description: Response @@ -54354,9 +54395,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 - 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. @@ -54382,7 +54423,7 @@ paths: application/json: schema: type: array - items: &405 + items: &408 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -54426,7 +54467,7 @@ paths: - content - created_at examples: - default: &407 + default: &410 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -54477,9 +54518,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *74 - - *330 - - *401 + - *333 - *404 + - *407 requestBody: required: true content: @@ -54512,9 +54553,9 @@ paths: team discussion comment content: application/json: - schema: *405 + schema: *408 examples: - default: &406 + default: &409 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -54543,9 +54584,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54569,10 +54610,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *74 - - *330 - - *401 + - *333 - *404 - - &408 + - *407 + - &411 name: reaction_id description: The unique identifier of the reaction. in: path @@ -54605,8 +54646,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 - 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. @@ -54632,9 +54673,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -54661,8 +54702,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *74 - - *330 - - *401 + - *333 + - *404 requestBody: required: true content: @@ -54694,16 +54735,16 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54727,9 +54768,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *74 - - *330 - - *401 - - *408 + - *333 + - *404 + - *411 responses: '204': description: Response @@ -54753,15 +54794,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: *410 + default: *413 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -54781,7 +54822,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -54805,9 +54846,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -54827,7 +54868,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *74 - - *330 + - *333 responses: '204': description: Response @@ -54852,7 +54893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -54862,9 +54903,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 x-github: @@ -54887,7 +54928,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *74 - - *330 + - *333 - name: role description: Filters members returned by their role in the team. in: query @@ -54910,7 +54951,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -54941,14 +54982,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 responses: '200': description: Response content: application/json: - schema: &413 + schema: &416 title: Team Membership description: Team Membership type: object @@ -54976,7 +55017,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &747 + response-if-user-is-a-team-maintainer: &748 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55013,8 +55054,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 requestBody: required: false content: @@ -55039,9 +55080,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-users-membership-with-team-is-now-pending: &748 + response-if-users-membership-with-team-is-now-pending: &749 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55077,8 +55118,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *74 - - *330 - - *248 + - *333 + - *254 responses: '204': description: Response @@ -55104,7 +55145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -55114,7 +55155,7 @@ paths: application/json: schema: type: array - items: &414 + items: &417 title: Team Project description: A team's access to a project. type: object @@ -55183,7 +55224,7 @@ paths: - updated_at - permissions examples: - default: &749 + default: &750 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -55247,8 +55288,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *74 - - *330 - - &415 + - *333 + - &418 name: project_id description: The unique identifier of the project. in: path @@ -55260,9 +55301,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: - default: &750 + default: &751 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -55325,8 +55366,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *74 - - *330 - - *415 + - *333 + - *418 requestBody: required: false content: @@ -55394,8 +55435,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *74 - - *330 - - *415 + - *333 + - *418 responses: '204': description: Response @@ -55423,7 +55464,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -55433,9 +55474,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -55465,15 +55506,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &751 + schema: &752 title: Team Repository description: A team's access to a repository. type: object @@ -55499,7 +55540,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 forks: type: integer permissions: @@ -56115,9 +56156,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 requestBody: required: false content: @@ -56163,9 +56204,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *74 - - *330 - - *416 - - *417 + - *333 + - *419 + - *420 responses: '204': description: Response @@ -56192,15 +56233,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *74 - - *330 + - *333 responses: '200': description: Response content: application/json: - schema: *418 + schema: *421 examples: - default: *419 + default: *422 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -56223,7 +56264,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *74 - - *330 + - *333 requestBody: required: true content: @@ -56266,7 +56307,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *421 examples: default: value: @@ -56299,7 +56340,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *74 - - *330 + - *333 - *17 - *19 responses: @@ -56309,9 +56350,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - response-if-child-teams-exist: &752 + response-if-child-teams-exist: &753 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -56438,7 +56479,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &420 + - &423 name: card_id description: The unique identifier of the card. in: path @@ -56450,7 +56491,7 @@ paths: description: Response content: application/json: - schema: &421 + schema: &424 title: Project Card description: Project cards represent a scope of work. type: object @@ -56525,7 +56566,7 @@ paths: - created_at - updated_at examples: - default: &422 + default: &425 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -56581,7 +56622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *420 + - *423 requestBody: required: false content: @@ -56611,9 +56652,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - default: *422 + default: *425 '304': *35 '403': *27 '401': *23 @@ -56640,7 +56681,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *420 + - *423 responses: '204': description: Response @@ -56684,7 +56725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *420 + - *423 requestBody: required: true content: @@ -56797,7 +56838,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &423 + - &426 name: column_id description: The unique identifier of the column. in: path @@ -56809,7 +56850,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &427 title: Project Column description: Project columns contain cards of work. type: object @@ -56863,7 +56904,7 @@ paths: - created_at - updated_at examples: - default: &425 + default: &428 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -56898,7 +56939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *423 + - *426 requestBody: required: true content: @@ -56923,9 +56964,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: - default: *425 + default: *428 '304': *35 '403': *27 '401': *23 @@ -56950,7 +56991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *423 + - *426 responses: '204': description: Response @@ -56979,7 +57020,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *423 + - *426 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -57000,7 +57041,7 @@ paths: application/json: schema: type: array - items: *421 + items: *424 examples: default: value: @@ -57059,7 +57100,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *423 + - *426 requestBody: required: true content: @@ -57103,9 +57144,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - default: *422 + default: *425 '304': *35 '403': *27 '401': *23 @@ -57115,8 +57156,8 @@ paths: application/json: schema: oneOf: - - *203 - - *204 + - *209 + - *210 '503': description: Response content: @@ -57161,7 +57202,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *423 + - *426 requestBody: required: true content: @@ -57222,15 +57263,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *415 + - *418 responses: '200': description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: &426 + default: &429 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -57287,7 +57328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *415 + - *418 requestBody: required: false content: @@ -57336,9 +57377,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: *426 + default: *429 '404': description: Not Found if the authenticated user does not have access to the project @@ -57359,7 +57400,7 @@ paths: items: type: string '401': *23 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -57382,7 +57423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *415 + - *418 responses: '204': description: Delete Success @@ -57403,7 +57444,7 @@ paths: items: type: string '401': *23 - '410': *427 + '410': *430 '404': *6 x-github: githubCloudOnly: false @@ -57427,7 +57468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *415 + - *418 - 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 @@ -57454,7 +57495,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -57484,8 +57525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *415 - - *248 + - *418 + - *254 requestBody: required: false content: @@ -57539,8 +57580,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *415 - - *248 + - *418 + - *254 responses: '204': description: Response @@ -57571,8 +57612,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: - - *415 - - *248 + - *418 + - *254 responses: '200': description: Response @@ -57642,7 +57683,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *415 + - *418 - *17 - *19 responses: @@ -57652,7 +57693,7 @@ paths: application/json: schema: type: array - items: *424 + items: *427 examples: default: value: @@ -57690,7 +57731,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *415 + - *418 requestBody: required: true content: @@ -57714,7 +57755,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: default: value: @@ -57779,7 +57820,7 @@ paths: resources: type: object properties: - core: &428 + core: &431 title: Rate Limit type: object properties: @@ -57796,21 +57837,21 @@ paths: - remaining - reset - used - graphql: *428 - search: *428 - code_search: *428 - source_import: *428 - integration_manifest: *428 - code_scanning_upload: *428 - actions_runner_registration: *428 - scim: *428 - dependency_snapshots: *428 - dependency_sbom: *428 - code_scanning_autofix: *428 + graphql: *431 + search: *431 + code_search: *431 + source_import: *431 + integration_manifest: *431 + code_scanning_upload: *431 + actions_runner_registration: *431 + scim: *431 + dependency_snapshots: *431 + dependency_sbom: *431 + code_scanning_autofix: *431 required: - core - search - rate: *428 + rate: *431 required: - rate - resources @@ -57915,14 +57956,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *429 + schema: *432 examples: default-response: summary: Default response @@ -58427,7 +58468,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *430 + '301': *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58445,8 +58486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -58704,10 +58745,10 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 - '307': &432 + default: *434 + '307': &435 description: Temporary Redirect content: application/json: @@ -58736,8 +58777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -58759,9 +58800,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': *432 + '307': *435 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58783,11 +58824,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - - &447 + - &450 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -58810,7 +58851,7 @@ paths: type: integer artifacts: type: array - items: &433 + items: &436 title: Artifact description: An artifact type: object @@ -58905,7 +58946,7 @@ paths: - expires_at - updated_at examples: - default: &448 + default: &451 value: total_count: 2 artifacts: @@ -58966,9 +59007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *416 - - *417 - - &434 + - *419 + - *420 + - &437 name: artifact_id description: The unique identifier of the artifact. in: path @@ -58980,7 +59021,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: default: value: @@ -59018,9 +59059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *416 - - *417 - - *434 + - *419 + - *420 + - *437 responses: '204': description: Response @@ -59044,9 +59085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *416 - - *417 - - *434 + - *419 + - *420 + - *437 - name: archive_format in: path required: true @@ -59060,7 +59101,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': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59083,14 +59124,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: default: value: @@ -59116,11 +59157,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: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - - &436 + - &439 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 @@ -59148,13 +59189,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *92 + - *98 responses: '200': description: Response content: application/json: - schema: &437 + schema: &440 title: Repository actions caches description: Repository actions caches type: object @@ -59204,7 +59245,7 @@ paths: - total_count - actions_caches examples: - default: &438 + default: &441 value: total_count: 1 actions_caches: @@ -59236,23 +59277,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: - - *416 - - *417 + - *419 + - *420 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *436 + - *439 responses: '200': description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59272,8 +59313,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: - - *416 - - *417 + - *419 + - *420 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59304,9 +59345,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: - - *416 - - *417 - - &439 + - *419 + - *420 + - &442 name: job_id description: The unique identifier of the job. in: path @@ -59318,7 +59359,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &454 title: Job description: Information of a job execution in a workflow run type: object @@ -59665,9 +59706,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: - - *416 - - *417 - - *439 + - *419 + - *420 + - *442 responses: '302': description: Response @@ -59695,9 +59736,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: - - *416 - - *417 - - *439 + - *419 + - *420 + - *442 requestBody: required: false content: @@ -59719,7 +59760,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -59743,8 +59784,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Status response @@ -59794,8 +59835,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -59829,7 +59870,7 @@ paths: description: Empty response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -59858,8 +59899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -59877,7 +59918,7 @@ paths: type: integer secrets: type: array - items: &453 + items: &456 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -59898,7 +59939,7 @@ paths: - created_at - updated_at examples: - default: &454 + default: &457 value: total_count: 2 secrets: @@ -59931,9 +59972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *416 - - *417 - - *440 + - *419 + - *420 + - *443 - *19 responses: '200': @@ -59950,7 +59991,7 @@ paths: type: integer variables: type: array - items: &457 + items: &460 title: Actions Variable type: object properties: @@ -59984,7 +60025,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &461 value: total_count: 2 variables: @@ -60017,8 +60058,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60027,11 +60068,11 @@ paths: schema: type: object properties: - enabled: &441 + enabled: &444 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *47 - selected_actions_url: *213 + selected_actions_url: *219 sha_pinning_required: *48 required: - enabled @@ -60062,8 +60103,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60074,7 +60115,7 @@ paths: schema: type: object properties: - enabled: *441 + enabled: *444 allowed_actions: *47 sha_pinning_required: *48 required: @@ -60107,14 +60148,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &442 + schema: &445 type: object properties: access_level: @@ -60132,7 +60173,7 @@ paths: required: - access_level examples: - default: &443 + default: &446 value: access_level: organization x-github: @@ -60157,15 +60198,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *442 + schema: *445 examples: - default: *443 + default: *446 responses: '204': description: Response @@ -60189,14 +60230,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *215 + schema: *221 examples: default: value: @@ -60220,8 +60261,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Empty response for successful settings update @@ -60231,7 +60272,7 @@ paths: required: true content: application/json: - schema: *216 + schema: *222 examples: default: summary: Set retention days @@ -60255,8 +60296,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60264,7 +60305,7 @@ paths: application/json: schema: *49 examples: - default: *217 + default: *223 '404': *6 x-github: enabledForGitHubApps: true @@ -60283,8 +60324,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60318,14 +60359,14 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *218 + schema: *224 examples: default: *50 '403': *27 @@ -60347,13 +60388,13 @@ 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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *219 + schema: *225 examples: default: *50 responses: @@ -60379,8 +60420,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60411,8 +60452,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -60444,14 +60485,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *222 + schema: *228 examples: default: *56 x-github: @@ -60474,8 +60515,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Success response @@ -60486,7 +60527,7 @@ paths: required: true content: application/json: - schema: *223 + schema: *229 examples: default: *56 x-github: @@ -60515,8 +60556,8 @@ paths: in: query schema: type: string - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -60560,8 +60601,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -60569,9 +60610,9 @@ paths: application/json: schema: type: array - items: *227 + items: *233 examples: - default: *228 + default: *234 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60593,8 +60634,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -60637,10 +60678,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *229 + '201': *235 '404': *6 '422': *7 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60668,8 +60709,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -60677,7 +60718,7 @@ paths: application/json: schema: *66 examples: - default: *230 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60705,8 +60746,8 @@ 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: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -60714,7 +60755,7 @@ paths: application/json: schema: *66 examples: - default: *231 + default: *237 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60736,8 +60777,8 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 responses: '200': @@ -60746,7 +60787,7 @@ paths: application/json: schema: *63 examples: - default: *232 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60767,8 +60808,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 responses: '204': @@ -60795,8 +60836,8 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 responses: '200': *68 @@ -60821,8 +60862,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 requestBody: required: true @@ -60871,8 +60912,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-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *62 requestBody: required: true @@ -60922,11 +60963,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: - - *416 - - *417 + - *419 + - *420 - *62 responses: - '200': *233 + '200': *239 '404': *6 x-github: githubCloudOnly: false @@ -60953,10 +60994,10 @@ 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: - - *416 - - *417 + - *419 + - *420 - *62 - - *234 + - *240 responses: '200': *68 '404': *6 @@ -60984,9 +61025,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: - - *416 - - *417 - - &461 + - *419 + - *420 + - &464 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. @@ -60994,7 +61035,7 @@ paths: required: false schema: type: string - - &462 + - &465 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61002,7 +61043,7 @@ paths: required: false schema: type: string - - &463 + - &466 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61011,7 +61052,7 @@ paths: required: false schema: type: string - - &464 + - &467 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 @@ -61038,7 +61079,7 @@ paths: - pending - *17 - *19 - - &465 + - &468 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)." @@ -61047,7 +61088,7 @@ paths: schema: type: string format: date-time - - &444 + - &447 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61056,13 +61097,13 @@ paths: schema: type: boolean default: false - - &466 + - &469 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &467 + - &470 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61085,7 +61126,7 @@ paths: type: integer workflow_runs: type: array - items: &445 + items: &448 title: Workflow Run description: An invocation of a workflow type: object @@ -61202,7 +61243,7 @@ paths: type: - array - 'null' - items: &488 + items: &489 title: Pull Request Minimal type: object properties: @@ -61329,7 +61370,7 @@ paths: head_commit: anyOf: - type: 'null' - - &492 + - &493 title: Simple Commit description: A commit. type: object @@ -61403,8 +61444,8 @@ paths: - timestamp - author - committer - repository: *226 - head_repository: *226 + repository: *232 + head_repository: *232 head_repository_id: type: integer examples: @@ -61444,7 +61485,7 @@ paths: - workflow_url - pull_requests examples: - default: &468 + default: &471 value: total_count: 1 workflow_runs: @@ -61680,24 +61721,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *416 - - *417 - - &446 + - *419 + - *420 + - &449 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *444 + - *447 responses: '200': description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: &449 + default: &452 value: id: 30433642 name: Build @@ -61938,9 +61979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '204': description: Response @@ -61963,9 +62004,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -62093,15 +62134,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -62128,12 +62169,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 - *17 - *19 - - *447 + - *450 responses: '200': description: Response @@ -62149,9 +62190,9 @@ paths: type: integer artifacts: type: array - items: *433 + items: *436 examples: - default: *448 + default: *451 headers: Link: *38 x-github: @@ -62175,25 +62216,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *416 - - *417 - - *446 - - &450 + - *419 + - *420 + - *449 + - &453 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *444 + - *447 responses: '200': description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62216,10 +62257,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: - - *416 - - *417 - - *446 - - *450 + - *419 + - *420 + - *449 + - *453 - *17 - *19 responses: @@ -62237,9 +62278,9 @@ paths: type: integer jobs: type: array - items: *451 + items: *454 examples: - default: &452 + default: &455 value: total_count: 1 jobs: @@ -62352,10 +62393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *416 - - *417 - - *446 - - *450 + - *419 + - *420 + - *449 + - *453 responses: '302': description: Response @@ -62383,19 +62424,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '202': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62418,9 +62459,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: true content: @@ -62487,19 +62528,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '202': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62522,9 +62563,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 - 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 @@ -62554,9 +62595,9 @@ paths: type: integer jobs: type: array - items: *451 + items: *454 examples: - default: *452 + default: *455 headers: Link: *38 x-github: @@ -62581,9 +62622,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '302': description: Response @@ -62610,9 +62651,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '204': description: Response @@ -62639,9 +62680,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -62710,7 +62751,7 @@ paths: items: type: object properties: - type: &571 + type: &572 type: string description: The type of reviewer. enum: @@ -62721,7 +62762,7 @@ paths: reviewer: anyOf: - *4 - - *257 + - *260 required: - environment - wait_timer @@ -62796,9 +62837,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: true content: @@ -62848,7 +62889,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -62960,7 +63001,7 @@ paths: - created_at - updated_at examples: - default: &558 + default: &559 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63016,9 +63057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: false content: @@ -63040,7 +63081,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63063,9 +63104,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: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 requestBody: required: false content: @@ -63087,7 +63128,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63120,9 +63161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *416 - - *417 - - *446 + - *419 + - *420 + - *449 responses: '200': description: Response @@ -63259,8 +63300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -63278,9 +63319,9 @@ paths: type: integer secrets: type: array - items: *453 + items: *456 examples: - default: *454 + default: *457 headers: Link: *38 x-github: @@ -63305,16 +63346,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *455 + schema: *458 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63336,17 +63377,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: &584 + default: &585 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -63372,9 +63413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -63405,7 +63446,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63431,9 +63472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -63458,9 +63499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *416 - - *417 - - *440 + - *419 + - *420 + - *443 - *19 responses: '200': @@ -63477,9 +63518,9 @@ paths: type: integer variables: type: array - items: *457 + items: *460 examples: - default: *458 + default: *461 headers: Link: *38 x-github: @@ -63502,8 +63543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -63530,7 +63571,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -63555,17 +63596,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: &585 + default: &586 value: name: USERNAME value: octocat @@ -63591,9 +63632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 requestBody: required: true content: @@ -63635,9 +63676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *416 - - *417 - - *239 + - *419 + - *420 + - *245 responses: '204': description: Response @@ -63662,8 +63703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -63681,7 +63722,7 @@ paths: type: integer workflows: type: array - items: &459 + items: &462 title: Workflow description: A GitHub Actions workflow type: object @@ -63799,9 +63840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *416 - - *417 - - &460 + - *419 + - *420 + - &463 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -63816,7 +63857,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: default: value: @@ -63849,9 +63890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63876,9 +63917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63929,9 +63970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '204': description: Response @@ -63958,19 +63999,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: - - *416 - - *417 - - *460 - - *461 - - *462 + - *419 + - *420 - *463 - *464 - - *17 - - *19 - *465 - - *444 - *466 - *467 + - *17 + - *19 + - *468 + - *447 + - *469 + - *470 responses: '200': description: Response @@ -63986,9 +64027,9 @@ paths: type: integer workflow_runs: type: array - items: *445 + items: *448 examples: - default: *468 + default: *471 headers: Link: *38 x-github: @@ -64021,9 +64062,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *416 - - *417 - - *460 + - *419 + - *420 + - *463 responses: '200': description: Response @@ -64084,12 +64125,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *416 - - *417 - - *92 + - *419 + - *420 + - *98 - *17 - - *90 - - *91 + - *96 + - *97 - name: ref description: |- The Git reference for the activities you want to list. @@ -64253,8 +64294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -64266,7 +64307,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -64291,8 +64332,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: - - *416 - - *417 + - *419 + - *420 - name: assignee in: path required: true @@ -64328,8 +64369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -64441,11 +64482,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *416 - - *417 + - *419 + - *420 - *17 - - *90 - - *91 + - *96 + - *97 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -64496,7 +64537,7 @@ paths: bundle_url: type: string examples: - default: *469 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64516,8 +64557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -64525,7 +64566,7 @@ paths: application/json: schema: type: array - items: &470 + items: &473 title: Autolink reference description: An autolink reference. type: object @@ -64584,8 +64625,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -64624,9 +64665,9 @@ paths: description: response content: application/json: - schema: *470 + schema: *473 examples: - default: &471 + default: &474 value: id: 1 key_prefix: TICKET- @@ -64657,9 +64698,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: - - *416 - - *417 - - &472 + - *419 + - *420 + - &475 name: autolink_id description: The unique identifier of the autolink. in: path @@ -64671,9 +64712,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 + default: *474 '404': *6 x-github: githubCloudOnly: false @@ -64693,9 +64734,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: - - *416 - - *417 - - *472 + - *419 + - *420 + - *475 responses: '204': description: Response @@ -64719,8 +64760,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response if Dependabot is enabled @@ -64770,8 +64811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -64792,8 +64833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -64813,8 +64854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *416 - - *417 + - *419 + - *420 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -64852,7 +64893,7 @@ paths: - url protected: type: boolean - protection: &474 + protection: &477 title: Branch Protection description: Branch Protection type: object @@ -64895,7 +64936,7 @@ paths: required: - contexts - checks - enforce_admins: &477 + enforce_admins: &480 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -64912,7 +64953,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &479 + required_pull_request_reviews: &482 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -64934,7 +64975,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *257 + items: *260 apps: description: The list of apps with review dismissal access. @@ -64966,7 +65007,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *257 + items: *260 apps: description: The list of apps allowed to bypass pull request requirements. @@ -64996,7 +65037,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &476 + restrictions: &479 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -65321,9 +65362,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *416 - - *417 - - &475 + - *419 + - *420 + - &478 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). @@ -65337,14 +65378,14 @@ paths: description: Response content: application/json: - schema: &485 + schema: &488 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &534 + commit: &535 title: Commit description: Commit type: object @@ -65383,7 +65424,7 @@ paths: author: anyOf: - type: 'null' - - &473 + - &476 title: Git User description: Metaproperties for Git author/committer information. @@ -65404,7 +65445,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 message: type: string examples: @@ -65428,7 +65469,7 @@ paths: required: - sha - url - verification: &591 + verification: &592 title: Verification type: object properties: @@ -65464,14 +65505,14 @@ paths: author: oneOf: - *4 - - *237 + - *243 type: - 'null' - object committer: oneOf: - *4 - - *237 + - *243 type: - 'null' - object @@ -65508,7 +65549,7 @@ paths: type: integer files: type: array - items: &545 + items: &546 title: Diff Entry description: Diff Entry type: object @@ -65602,7 +65643,7 @@ paths: - self protected: type: boolean - protection: *474 + protection: *477 protection_url: type: string format: uri @@ -65711,7 +65752,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *430 + '301': *433 '404': *6 x-github: githubCloudOnly: false @@ -65733,15 +65774,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *474 + schema: *477 examples: default: value: @@ -65935,9 +65976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -66197,7 +66238,7 @@ paths: url: type: string format: uri - required_status_checks: &482 + required_status_checks: &485 title: Status Check Policy description: Status Check Policy type: object @@ -66278,7 +66319,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 apps: type: array items: *5 @@ -66296,7 +66337,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 apps: type: array items: *5 @@ -66356,7 +66397,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *476 + restrictions: *479 required_conversation_resolution: type: object properties: @@ -66468,9 +66509,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66495,17 +66536,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &478 + default: &481 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -66527,17 +66568,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *478 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66556,9 +66597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66583,17 +66624,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: &480 + default: &483 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -66689,9 +66730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -66789,9 +66830,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: *480 + default: *483 '422': *15 x-github: githubCloudOnly: false @@ -66812,9 +66853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66841,17 +66882,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &481 + default: &484 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -66874,17 +66915,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *481 + default: *484 '404': *6 x-github: githubCloudOnly: false @@ -66904,9 +66945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -66931,17 +66972,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: &483 + default: &486 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -66967,9 +67008,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67021,9 +67062,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 '404': *6 '422': *15 x-github: @@ -67045,9 +67086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -67071,9 +67112,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67107,9 +67148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67176,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67242,9 +67283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: content: application/json: @@ -67310,15 +67351,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -67409,9 +67450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '204': description: Response @@ -67434,9 +67475,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67446,7 +67487,7 @@ paths: type: array items: *5 examples: - default: &484 + default: &487 value: - id: 1 slug: octoapp @@ -67503,9 +67544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67539,7 +67580,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67560,9 +67601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67596,7 +67637,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67617,9 +67658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67653,7 +67694,7 @@ paths: type: array items: *5 examples: - default: *484 + default: *487 '422': *15 x-github: githubCloudOnly: false @@ -67675,9 +67716,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67685,9 +67726,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '404': *6 x-github: githubCloudOnly: false @@ -67707,9 +67748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67745,9 +67786,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67768,9 +67809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: false content: @@ -67806,9 +67847,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67829,9 +67870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: content: application/json: @@ -67866,9 +67907,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -67890,9 +67931,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: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 responses: '200': description: Response @@ -67902,7 +67943,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '404': *6 x-github: githubCloudOnly: false @@ -67926,9 +67967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -67961,7 +68002,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -67986,9 +68027,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68021,7 +68062,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -68046,9 +68087,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68081,7 +68122,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '422': *15 x-github: githubCloudOnly: false @@ -68108,9 +68149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 requestBody: required: true content: @@ -68132,7 +68173,7 @@ paths: description: Response content: application/json: - schema: *485 + schema: *488 examples: default: value: @@ -68246,12 +68287,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *252 + - *419 + - *420 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -68261,9 +68302,9 @@ paths: application/json: schema: type: array - items: *253 + items: *255 examples: - default: *254 + default: *256 '404': *6 '500': *89 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -68283,8 +68324,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68298,7 +68339,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *255 examples: default: value: @@ -68357,12 +68398,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *252 + - *419 + - *420 + - *91 + - *92 + - *93 + - *94 - *17 - *19 responses: @@ -68372,9 +68413,9 @@ paths: application/json: schema: type: array - items: *486 + items: *258 examples: - default: *487 + default: *259 '404': *6 '403': *27 '500': *89 @@ -68398,8 +68439,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68411,7 +68452,7 @@ paths: description: A single bypass request. content: application/json: - schema: *486 + schema: *258 examples: default: value: @@ -68469,8 +68510,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_request_number in: path required: true @@ -68541,8 +68582,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *416 - - *417 + - *419 + - *420 - name: bypass_response_id in: path required: true @@ -68575,8 +68616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -68855,7 +68896,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: CheckRun description: A check performed on the code of a given code change type: object @@ -68990,8 +69031,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *488 - deployment: &808 + items: *489 + deployment: &809 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69278,9 +69319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *416 - - *417 - - &490 + - *419 + - *420 + - &491 name: check_run_id description: The unique identifier of the check run. in: path @@ -69292,9 +69333,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: &491 + default: &492 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -69394,9 +69435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 requestBody: required: true content: @@ -69636,9 +69677,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69658,9 +69699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 - *17 - *19 responses: @@ -69770,15 +69811,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *416 - - *417 - - *490 + - *419 + - *420 + - *491 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -69816,8 +69857,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -69839,7 +69880,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &493 + schema: &494 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -69921,12 +69962,12 @@ paths: type: - array - 'null' - items: *488 + items: *489 app: anyOf: - type: 'null' - *5 - repository: *226 + repository: *232 created_at: type: - string @@ -69937,7 +69978,7 @@ paths: - string - 'null' format: date-time - head_commit: *492 + head_commit: *493 latest_check_runs_count: type: integer check_runs_url: @@ -69965,7 +70006,7 @@ paths: - check_runs_url - pull_requests examples: - default: &494 + default: &495 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -70256,9 +70297,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70277,8 +70318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -70339,7 +70380,7 @@ paths: required: - app_id - setting - repository: *226 + repository: *232 examples: default: value: @@ -70587,9 +70628,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *416 - - *417 - - &495 + - *419 + - *420 + - &496 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -70601,9 +70642,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70626,17 +70667,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: - - *416 - - *417 - - *495 - - &540 + - *419 + - *420 + - *496 + - &541 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &541 + - &542 name: status description: Returns check runs with the specified `status`. in: query @@ -70675,9 +70716,9 @@ paths: type: integer check_runs: type: array - items: *489 + items: *490 examples: - default: &542 + default: &543 value: total_count: 1 check_runs: @@ -70779,15 +70820,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *416 - - *417 - - *495 + - *419 + - *420 + - *496 responses: '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -70814,30 +70855,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: - - *416 - - *417 - - *261 - - *262 + - *419 + - *420 + - *264 + - *265 - *19 - *17 - - &511 + - &512 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: *496 - - &512 + schema: *497 + - &513 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *92 - - *90 - - *91 + - *98 + - *96 + - *97 - name: sort description: The property by which to sort the results. in: query @@ -70853,13 +70894,13 @@ paths: be returned. in: query required: false - schema: *263 + schema: *266 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *497 + schema: *498 responses: '200': description: Response @@ -70870,24 +70911,24 @@ paths: items: type: object properties: - number: *102 - created_at: *109 - updated_at: *110 - url: *107 - html_url: *108 - instances_url: *498 - state: *95 - fixed_at: *112 + number: *108 + created_at: *115 + updated_at: *116 + url: *113 + html_url: *114 + instances_url: *499 + state: *101 + fixed_at: *118 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *111 - dismissed_reason: *499 - dismissed_comment: *500 - rule: *501 - tool: *502 - most_recent_instance: *503 + dismissed_at: *117 + dismissed_reason: *500 + dismissed_comment: *501 + rule: *502 + tool: *503 + most_recent_instance: *504 dismissal_approved_by: anyOf: - type: 'null' @@ -71007,14 +71048,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &504 + '403': &505 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71034,9 +71075,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: - - *416 - - *417 - - &505 + - *419 + - *420 + - &506 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -71044,30 +71085,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *102 + schema: *108 responses: '200': description: Response content: application/json: - schema: &506 + schema: &507 type: object properties: - number: *102 - created_at: *109 - updated_at: *110 - url: *107 - html_url: *108 - instances_url: *498 - state: *95 - fixed_at: *112 + number: *108 + created_at: *115 + updated_at: *116 + url: *113 + html_url: *114 + instances_url: *499 + state: *101 + fixed_at: *118 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *111 - dismissed_reason: *499 - dismissed_comment: *500 + dismissed_at: *117 + dismissed_reason: *500 + dismissed_comment: *501 rule: type: object properties: @@ -71129,8 +71170,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *502 - most_recent_instance: *503 + tool: *503 + most_recent_instance: *504 dismissal_approved_by: anyOf: - type: 'null' @@ -71223,9 +71264,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71243,9 +71284,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: true content: @@ -71260,8 +71301,8 @@ paths: enum: - open - dismissed - dismissed_reason: *499 - dismissed_comment: *500 + dismissed_reason: *500 + dismissed_comment: *501 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -71280,7 +71321,7 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: default: value: @@ -71356,14 +71397,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &510 + '403': &511 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': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71383,15 +71424,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 responses: '200': description: Response content: application/json: - schema: &507 + schema: &508 type: object properties: status: @@ -71418,13 +71459,13 @@ paths: - description - started_at examples: - default: &508 + default: &509 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &509 + '400': &510 description: Bad Request content: application/json: @@ -71435,9 +71476,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': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71460,29 +71501,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 responses: '200': description: OK content: application/json: - schema: *507 + schema: *508 examples: - default: *508 + default: *509 '202': description: Accepted content: application/json: - schema: *507 + schema: *508 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *509 + '400': *510 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -71492,7 +71533,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71514,9 +71555,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: false content: @@ -71562,12 +71603,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *509 - '403': *510 + '400': *510 + '403': *511 '404': *6 '422': description: Unprocessable Entity - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71587,13 +71628,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 - *19 - *17 - - *511 - *512 + - *513 responses: '200': description: Response @@ -71601,7 +71642,7 @@ paths: application/json: schema: type: array - items: *503 + items: *504 examples: default: value: @@ -71640,9 +71681,9 @@ paths: end_column: 50 classifications: - source - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71674,30 +71715,30 @@ 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: - - *416 - - *417 - - *261 - - *262 + - *419 + - *420 + - *264 + - *265 - *19 - *17 - - *512 + - *513 - 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: *496 + schema: *497 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &515 + schema: &516 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *92 + - *98 - name: sort description: The property by which to sort the results. in: query @@ -71714,23 +71755,23 @@ paths: application/json: schema: type: array - items: &516 + items: &517 type: object properties: - ref: *496 - commit_sha: &524 + ref: *497 + commit_sha: &525 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: *513 + analysis_key: *514 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *514 + category: *515 error: type: string examples: @@ -71755,8 +71796,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *515 - tool: *502 + sarif_id: *516 + tool: *503 deletable: type: boolean warning: @@ -71818,9 +71859,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -71854,8 +71895,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: - - *416 - - *417 + - *419 + - *420 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -71868,7 +71909,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: response: summary: application/json response @@ -71922,14 +71963,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *504 + '403': *505 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -72009,8 +72050,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: - - *416 - - *417 + - *419 + - *420 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72066,9 +72107,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': *510 + '403': *511 '404': *6 - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -72088,8 +72129,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -72097,7 +72138,7 @@ paths: application/json: schema: type: array - items: &517 + items: &518 title: CodeQL Database description: A CodeQL database. type: object @@ -72209,9 +72250,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': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72238,8 +72279,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: - - *416 - - *417 + - *419 + - *420 - name: language in: path description: The language of the CodeQL database. @@ -72251,7 +72292,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: default: value: @@ -72283,11 +72324,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': &547 + '302': &548 description: Found - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72307,8 +72348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *416 - - *417 + - *419 + - *420 - name: language in: path description: The language of the CodeQL database. @@ -72318,9 +72359,9 @@ paths: responses: '204': description: Response - '403': *510 + '403': *511 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72346,8 +72387,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -72356,7 +72397,7 @@ paths: type: object additionalProperties: false properties: - language: &518 + language: &519 type: string description: The language targeted by the CodeQL query enum: @@ -72435,7 +72476,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &522 + schema: &523 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -72443,9 +72484,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *101 + controller_repo: *107 actor: *4 - query_language: *518 + query_language: *519 query_pack_url: type: string description: The download url for the query pack. @@ -72493,7 +72534,7 @@ paths: items: type: object properties: - repository: &519 + repository: &520 title: Repository Identifier description: Repository Identifier type: object @@ -72535,7 +72576,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &523 + analysis_status: &524 type: string description: The new status of the CodeQL variant analysis repository task. @@ -72567,7 +72608,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &520 + access_mismatch_repos: &521 type: object properties: repository_count: @@ -72582,7 +72623,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: *519 + items: *520 required: - repository_count - repositories @@ -72605,8 +72646,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *520 - over_limit_repos: *520 + no_codeql_db_repos: *521 + over_limit_repos: *521 required: - access_mismatch_repos - not_found_repos @@ -72622,7 +72663,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &521 + value: &522 summary: Default response value: id: 1 @@ -72774,17 +72815,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *521 + value: *522 repository_lists: summary: Response for a successful variant analysis submission - value: *521 + value: *522 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72805,8 +72846,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: - - *416 - - *417 + - *419 + - *420 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -72818,11 +72859,11 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: - default: *521 + default: *522 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72843,7 +72884,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: - - *416 + - *419 - name: repo in: path description: The name of the controller repository. @@ -72877,8 +72918,8 @@ paths: schema: type: object properties: - repository: *101 - analysis_status: *523 + repository: *107 + analysis_status: *524 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -72982,7 +73023,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73003,8 +73044,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73097,9 +73138,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *504 + '403': *505 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73118,8 +73159,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -73188,7 +73229,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -73213,7 +73254,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *510 + '403': *511 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -73227,7 +73268,7 @@ paths: content: application/json: schema: *3 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73284,8 +73325,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -73293,7 +73334,7 @@ paths: schema: type: object properties: - commit_sha: *524 + commit_sha: *525 ref: type: string description: |- @@ -73353,7 +73394,7 @@ paths: schema: type: object properties: - id: *515 + id: *516 url: type: string description: The REST API URL for checking the status of the upload. @@ -73367,11 +73408,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': *510 + '403': *511 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -73390,8 +73431,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: - - *416 - - *417 + - *419 + - *420 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -73439,10 +73480,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': *504 + '403': *505 '404': description: Not Found if the sarif id does not match any upload - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -73464,8 +73505,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73489,7 +73530,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *96 + configuration: *102 examples: default: value: @@ -73521,7 +73562,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': *122 + '204': *128 '304': *35 '403': *27 '404': *6 @@ -73546,8 +73587,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *416 - - *417 + - *419 + - *420 - 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 @@ -73675,8 +73716,8 @@ paths: parameters: - *17 - *19 - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -73692,7 +73733,7 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: default: value: @@ -73990,8 +74031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -74055,22 +74096,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74094,8 +74135,8 @@ paths: parameters: - *17 - *19 - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -74159,8 +74200,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: - - *416 - - *417 + - *419 + - *420 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -74197,9 +74238,9 @@ paths: type: integer machines: type: array - items: *526 + items: *527 examples: - default: &759 + default: &760 value: total_count: 2 machines: @@ -74239,8 +74280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *416 - - *417 + - *419 + - *420 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -74327,8 +74368,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: - - *416 - - *417 + - *419 + - *420 - 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 @@ -74376,7 +74417,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74397,8 +74438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -74416,7 +74457,7 @@ paths: type: integer secrets: type: array - items: &530 + items: &531 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -74437,7 +74478,7 @@ paths: - created_at - updated_at examples: - default: *527 + default: *528 headers: Link: *38 x-github: @@ -74460,16 +74501,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74489,17 +74530,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74519,9 +74560,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: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -74549,7 +74590,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -74573,9 +74614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -74603,8 +74644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *416 - - *417 + - *419 + - *420 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -74642,7 +74683,7 @@ paths: application/json: schema: type: array - items: &532 + items: &533 title: Collaborator description: Collaborator type: object @@ -74835,9 +74876,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: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '204': description: Response if user is a collaborator @@ -74883,9 +74924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 requestBody: required: false content: @@ -74911,7 +74952,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &604 + schema: &605 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -74923,7 +74964,7 @@ paths: format: int64 examples: - 42 - repository: *226 + repository: *232 invitee: anyOf: - type: 'null' @@ -75099,7 +75140,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *203 + schema: *209 '403': *27 x-github: triggersNotification: true @@ -75139,9 +75180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '204': description: No Content when collaborator was removed from the repository. @@ -75172,9 +75213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *416 - - *417 - - *248 + - *419 + - *420 + - *254 responses: '200': description: if user has admin permissions @@ -75194,7 +75235,7 @@ paths: user: anyOf: - type: 'null' - - *532 + - *533 required: - permission - role_name @@ -75248,8 +75289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -75259,7 +75300,7 @@ paths: application/json: schema: type: array - items: &533 + items: &534 title: Commit Comment description: Commit Comment type: object @@ -75300,8 +75341,8 @@ paths: updated_at: type: string format: date-time - author_association: *166 - reactions: *167 + author_association: *172 + reactions: *173 required: - url - html_url @@ -75317,7 +75358,7 @@ paths: - created_at - updated_at examples: - default: &536 + default: &537 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75376,17 +75417,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &537 + default: &538 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75443,9 +75484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -75467,7 +75508,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -75518,9 +75559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -75541,9 +75582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -75569,9 +75610,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -75592,9 +75633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -75626,16 +75667,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -75657,10 +75698,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -75709,8 +75750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *416 - - *417 + - *419 + - *420 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -75766,9 +75807,9 @@ paths: application/json: schema: type: array - items: *534 + items: *535 examples: - default: &651 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75842,7 +75883,7 @@ paths: '500': *89 '400': *14 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75862,9 +75903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *416 - - *417 - - &535 + - *419 + - *420 + - &536 name: commit_sha description: The SHA of the commit. in: path @@ -75911,7 +75952,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75936,9 +75977,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 - *17 - *19 responses: @@ -75948,9 +75989,9 @@ paths: application/json: schema: type: array - items: *533 + items: *534 examples: - default: *536 + default: *537 headers: Link: *38 x-github: @@ -75978,9 +76019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 requestBody: required: true content: @@ -76015,9 +76056,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *537 + default: *538 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76045,9 +76086,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: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 - *17 - *19 responses: @@ -76057,9 +76098,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: &643 + default: &644 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -76539,7 +76580,7 @@ paths: draft: false headers: Link: *38 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76596,11 +76637,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 - - &539 + - &540 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)" @@ -76615,9 +76656,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &631 + default: &632 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76704,8 +76745,8 @@ paths: '422': *15 '404': *6 '500': *89 - '503': *156 - '409': *100 + '503': *162 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76730,11 +76771,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: - - *416 - - *417 - - *539 + - *419 + - *420 - *540 - *541 + - *542 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -76768,9 +76809,9 @@ paths: type: integer check_runs: type: array - items: *489 + items: *490 examples: - default: *542 + default: *543 headers: Link: *38 x-github: @@ -76795,9 +76836,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: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -76805,7 +76846,7 @@ paths: schema: type: integer example: 1 - - *540 + - *541 - *17 - *19 responses: @@ -76823,7 +76864,7 @@ paths: type: integer check_suites: type: array - items: *493 + items: *494 examples: default: value: @@ -77023,9 +77064,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: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - *17 - *19 responses: @@ -77096,7 +77137,7 @@ paths: type: string total_count: type: integer - repository: *226 + repository: *232 commit_url: type: string format: uri @@ -77227,9 +77268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *416 - - *417 - - *539 + - *419 + - *420 + - *540 - *17 - *19 responses: @@ -77239,7 +77280,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Status description: The status of a commit. type: object @@ -77320,7 +77361,7 @@ paths: site_admin: false headers: Link: *38 - '301': *430 + '301': *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77348,8 +77389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -77382,11 +77423,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *543 + - *544 code_of_conduct_file: anyOf: - type: 'null' - - &544 + - &545 title: Community Health File type: object properties: @@ -77402,23 +77443,23 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 contributing: anyOf: - type: 'null' - - *544 + - *545 readme: anyOf: - type: 'null' - - *544 + - *545 issue_template: anyOf: - type: 'null' - - *544 + - *545 pull_request_template: anyOf: - type: 'null' - - *544 + - *545 required: - code_of_conduct - code_of_conduct_file @@ -77547,8 +77588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 - name: basehead @@ -77596,8 +77637,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *534 - merge_base_commit: *534 + base_commit: *535 + merge_base_commit: *535 status: type: string enum: @@ -77621,10 +77662,10 @@ paths: - 6 commits: type: array - items: *534 + items: *535 files: type: array - items: *545 + items: *546 required: - url - html_url @@ -77868,7 +77909,7 @@ paths: module Test" '404': *6 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77910,8 +77951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78064,7 +78105,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &546 + response-if-content-is-a-file: &547 summary: Response if content is a file value: type: file @@ -78201,7 +78242,7 @@ paths: - size - type - url - - &656 + - &657 title: Content File description: Content File type: object @@ -78419,7 +78460,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *546 + response-if-content-is-a-file: *547 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -78488,7 +78529,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *547 + '302': *548 '304': *35 x-github: githubCloudOnly: false @@ -78511,8 +78552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78607,7 +78648,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 title: File Commit description: File Commit type: object @@ -78763,7 +78804,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: example-for-creating-a-file: value: @@ -78817,7 +78858,7 @@ paths: schema: oneOf: - *3 - - &586 + - &587 description: Repository rule violation was detected type: object properties: @@ -78838,7 +78879,7 @@ paths: items: type: object properties: - placeholder_id: &696 + placeholder_id: &697 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -78870,8 +78911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *416 - - *417 + - *419 + - *420 - name: path description: path parameter in: path @@ -78932,7 +78973,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default: value: @@ -78966,8 +79007,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *100 - '503': *156 + '409': *106 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78987,8 +79028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *416 - - *417 + - *419 + - *420 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -79112,23 +79153,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *416 - - *417 - - *278 - - *279 - - *280 + - *419 + - *420 - *281 + - *282 + - *283 + - *284 - 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 - - *282 - - *283 - - *284 - *285 - - *92 + - *286 + - *287 + - *288 + - *98 - name: page description: "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead." @@ -79145,10 +79186,10 @@ paths: schema: type: integer default: 30 - - *90 - - *91 - - *286 - - *287 + - *96 + - *97 + - *289 + - *290 responses: '200': description: Response @@ -79156,11 +79197,11 @@ paths: application/json: schema: type: array - items: &551 + items: &552 type: object description: A Dependabot alert. properties: - number: *102 + number: *108 state: type: string description: The state of the Dependabot alert. @@ -79175,7 +79216,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *103 + package: *109 manifest_path: type: string description: The full path to the dependency manifest file, @@ -79206,13 +79247,13 @@ paths: - direct - transitive - - security_advisory: *549 - security_vulnerability: *106 - url: *107 - html_url: *108 - created_at: *109 - updated_at: *110 - dismissed_at: *111 + security_advisory: *550 + security_vulnerability: *112 + url: *113 + html_url: *114 + created_at: *115 + updated_at: *116 + dismissed_at: *117 dismissed_by: anyOf: - type: 'null' @@ -79236,8 +79277,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *112 - auto_dismissed_at: *550 + fixed_at: *118 + auto_dismissed_at: *551 required: - number - state @@ -79467,9 +79508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *416 - - *417 - - &552 + - *419 + - *420 + - &553 name: alert_number in: path description: |- @@ -79478,13 +79519,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *102 + schema: *108 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -79597,9 +79638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *416 - - *417 - - *552 + - *419 + - *420 + - *553 requestBody: required: true content: @@ -79644,7 +79685,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -79750,7 +79791,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *100 + '409': *106 '422': *7 x-github: githubCloudOnly: false @@ -79773,8 +79814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -79792,7 +79833,7 @@ paths: type: integer secrets: type: array - items: &555 + items: &556 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -79846,16 +79887,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79875,15 +79916,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '200': description: Response content: application/json: - schema: *555 + schema: *556 examples: default: value: @@ -79909,9 +79950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 requestBody: required: true content: @@ -79939,7 +79980,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -79963,9 +80004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *416 - - *417 - - *236 + - *419 + - *420 + - *242 responses: '204': description: Response @@ -79987,8 +80028,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: - - *416 - - *417 + - *419 + - *420 - 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 @@ -80162,8 +80203,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -80423,8 +80464,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -80507,7 +80548,7 @@ paths: - version - url additionalProperties: false - metadata: &556 + metadata: &557 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -80546,7 +80587,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *556 + metadata: *557 resolved: type: object description: A collection of resolved package dependencies. @@ -80560,7 +80601,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *556 + metadata: *557 relationship: type: string description: A notation of whether a dependency is requested @@ -80693,8 +80734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *416 - - *417 + - *419 + - *420 - name: sha description: The SHA recorded at creation time. in: query @@ -80735,9 +80776,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *558 + default: *559 headers: Link: *38 x-github: @@ -80803,8 +80844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -80886,7 +80927,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: simple-example: summary: Simple example @@ -80959,9 +81000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *416 - - *417 - - &559 + - *419 + - *420 + - &560 name: deployment_id description: deployment_id parameter in: path @@ -80973,7 +81014,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: default: value: @@ -81038,9 +81079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 responses: '204': description: Response @@ -81062,9 +81103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 - *17 - *19 responses: @@ -81074,7 +81115,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 title: Deployment Status description: The status of a deployment. type: object @@ -81238,9 +81279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 requestBody: required: true content: @@ -81315,9 +81356,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &561 + default: &562 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -81373,9 +81414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *416 - - *417 - - *559 + - *419 + - *420 + - *560 - name: status_id in: path required: true @@ -81386,9 +81427,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *561 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -81415,12 +81456,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 - - *562 + - *419 + - *420 - *563 - *564 - *565 + - *566 - *17 - *19 responses: @@ -81430,9 +81471,9 @@ paths: application/json: schema: type: array - items: *566 + items: *567 examples: - default: *567 + default: *568 '404': *6 '403': *27 '500': *89 @@ -81456,8 +81497,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81469,7 +81510,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *566 + schema: *567 examples: default: value: @@ -81525,8 +81566,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81585,12 +81626,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 - - *249 - - *250 - - *251 - - *568 + - *419 + - *420 + - *91 + - *92 + - *93 + - *569 - *17 - *19 responses: @@ -81600,9 +81641,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '404': *6 '403': *27 '500': *89 @@ -81627,8 +81668,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81640,7 +81681,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -81698,8 +81739,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: alert_number in: path required: true @@ -81768,8 +81809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -81826,8 +81867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -81845,7 +81886,7 @@ paths: - 5 environments: type: array - items: &572 + items: &573 title: Environment description: Details of a deployment environment type: object @@ -81907,7 +81948,7 @@ paths: type: string examples: - wait_timer - wait_timer: &574 + wait_timer: &575 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -81949,11 +81990,11 @@ paths: items: type: object properties: - type: *571 + type: *572 reviewer: anyOf: - *4 - - *257 + - *260 required: - id - node_id @@ -81976,7 +82017,7 @@ paths: - id - node_id - type - deployment_branch_policy: &575 + deployment_branch_policy: &576 type: - object - 'null' @@ -82093,9 +82134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *416 - - *417 - - &573 + - *419 + - *420 + - &574 name: environment_name in: path required: true @@ -82108,9 +82149,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &576 + default: &577 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -82194,9 +82235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: false content: @@ -82206,7 +82247,7 @@ paths: - object - 'null' properties: - wait_timer: *574 + wait_timer: *575 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -82225,14 +82266,14 @@ paths: items: type: object properties: - type: *571 + type: *572 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *575 + deployment_branch_policy: *576 additionalProperties: false examples: default: @@ -82252,9 +82293,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *576 + default: *577 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -82278,9 +82319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 responses: '204': description: Default response @@ -82305,9 +82346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 - *17 - *19 responses: @@ -82326,7 +82367,7 @@ paths: - 2 branch_policies: type: array - items: &577 + items: &578 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -82387,9 +82428,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: true content: @@ -82437,9 +82478,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - example-wildcard: &578 + example-wildcard: &579 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -82481,10 +82522,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - &579 + - *419 + - *420 + - *574 + - &580 name: branch_policy_id in: path required: true @@ -82496,9 +82537,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82517,10 +82558,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - *579 + - *419 + - *420 + - *574 + - *580 requestBody: required: true content: @@ -82549,9 +82590,9 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82570,10 +82611,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *416 - - *417 - - *573 - - *579 + - *419 + - *420 + - *574 + - *580 responses: '204': description: Response @@ -82598,9 +82639,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 responses: '200': description: List of deployment protection rules @@ -82617,7 +82658,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &580 + items: &581 title: Deployment protection rule description: Deployment protection rule type: object @@ -82639,7 +82680,7 @@ paths: for the environment. examples: - true - app: &581 + app: &582 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -82742,9 +82783,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 requestBody: content: application/json: @@ -82765,9 +82806,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *580 + schema: *581 examples: - default: &582 + default: &583 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -82802,9 +82843,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: - - *573 - - *417 - - *416 + - *574 + - *420 + - *419 - *19 - *17 responses: @@ -82824,7 +82865,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *581 + items: *582 examples: default: value: @@ -82859,10 +82900,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: - - *416 - - *417 - - *573 - - &583 + - *419 + - *420 + - *574 + - &584 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -82874,9 +82915,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82897,10 +82938,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: - - *573 - - *417 - - *416 - - *583 + - *574 + - *420 + - *419 + - *584 responses: '204': description: Response @@ -82926,9 +82967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 - *17 - *19 responses: @@ -82946,9 +82987,9 @@ paths: type: integer secrets: type: array - items: *453 + items: *456 examples: - default: *454 + default: *457 headers: Link: *38 x-github: @@ -82973,17 +83014,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 responses: '200': description: Response content: application/json: - schema: *455 + schema: *458 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83005,18 +83046,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *584 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83038,10 +83079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 requestBody: required: true content: @@ -83072,7 +83113,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -83098,10 +83139,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *416 - - *417 - - *573 - - *236 + - *419 + - *420 + - *574 + - *242 responses: '204': description: Default response @@ -83126,10 +83167,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *416 - - *417 - - *573 - - *440 + - *419 + - *420 + - *574 + - *443 - *19 responses: '200': @@ -83146,9 +83187,9 @@ paths: type: integer variables: type: array - items: *457 + items: *460 examples: - default: *458 + default: *461 headers: Link: *38 x-github: @@ -83171,9 +83212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *416 - - *417 - - *573 + - *419 + - *420 + - *574 requestBody: required: true content: @@ -83200,7 +83241,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -83225,18 +83266,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *416 - - *417 - - *573 - - *239 + - *419 + - *420 + - *574 + - *245 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *585 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83257,10 +83298,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *416 - - *417 - - *239 - - *573 + - *419 + - *420 + - *245 + - *574 requestBody: required: true content: @@ -83302,10 +83343,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *416 - - *417 - - *239 - - *573 + - *419 + - *420 + - *245 + - *574 responses: '204': description: Response @@ -83327,8 +83368,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -83338,7 +83379,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: 200-response: value: @@ -83405,8 +83446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *416 - - *417 + - *419 + - *420 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -83428,7 +83469,7 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: default: value: @@ -83565,8 +83606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -83599,9 +83640,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 '400': *14 '422': *15 '403': *27 @@ -83622,8 +83663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -83674,7 +83715,7 @@ paths: schema: type: string '404': *6 - '409': *100 + '409': *106 '403': *27 '422': description: Validation failed @@ -83682,8 +83723,8 @@ paths: application/json: schema: oneOf: - - *203 - - *586 + - *209 + - *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83708,8 +83749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *416 - - *417 + - *419 + - *420 - name: file_sha in: path required: true @@ -83761,7 +83802,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83809,8 +83850,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -83919,7 +83960,7 @@ paths: description: Response content: application/json: - schema: &587 + schema: &588 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -84096,7 +84137,7 @@ paths: type: string '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84146,15 +84187,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *416 - - *417 - - *535 + - *419 + - *420 + - *536 responses: '200': description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -84185,7 +84226,7 @@ paths: payload: verified_at: '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84210,9 +84251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *416 - - *417 - - &588 + - *419 + - *420 + - &589 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. @@ -84229,7 +84270,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: Git Reference description: Git references within a repository type: object @@ -84284,7 +84325,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *38 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84305,17 +84346,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 responses: '200': description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -84325,7 +84366,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84344,8 +84385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84374,16 +84415,16 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84402,9 +84443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 requestBody: required: true content: @@ -84433,11 +84474,11 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84453,16 +84494,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *416 - - *417 - - *588 + - *419 + - *420 + - *589 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84510,8 +84551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84578,7 +84619,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Git Tag description: Metadata for a Git tag type: object @@ -84634,7 +84675,7 @@ paths: - sha - type - url - verification: *591 + verification: *592 required: - sha - url @@ -84644,7 +84685,7 @@ paths: - tag - message examples: - default: &593 + default: &594 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -84671,7 +84712,7 @@ paths: schema: type: string '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84717,8 +84758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *416 - - *417 + - *419 + - *420 - name: tag_sha in: path required: true @@ -84729,11 +84770,11 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84755,8 +84796,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -84830,7 +84871,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -84909,7 +84950,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84932,8 +84973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *416 - - *417 + - *419 + - *420 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -84956,7 +84997,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: default-response: summary: Default response @@ -84997,7 +85038,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85015,8 +85056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -85026,7 +85067,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 title: Webhook description: Webhooks for repositories. type: object @@ -85089,7 +85130,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &839 + last_response: &840 title: Hook Response type: object properties: @@ -85166,8 +85207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -85220,9 +85261,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: &596 + default: &597 value: type: Repository id: 12345678 @@ -85270,17 +85311,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '404': *6 x-github: githubCloudOnly: false @@ -85300,9 +85341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 requestBody: required: true content: @@ -85347,9 +85388,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '422': *15 '404': *6 x-github: @@ -85370,9 +85411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85396,9 +85437,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '200': description: Response @@ -85425,9 +85466,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 requestBody: required: false content: @@ -85471,11 +85512,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *17 - - *294 + - *297 responses: '200': description: Response @@ -85483,9 +85524,9 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: - default: *296 + default: *299 '400': *14 '422': *15 x-github: @@ -85504,18 +85545,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *16 responses: '200': description: Response content: application/json: - schema: *297 + schema: *300 examples: - default: *298 + default: *301 '400': *14 '422': *15 x-github: @@ -85534,9 +85575,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: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 - *16 responses: '202': *37 @@ -85559,9 +85600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85586,9 +85627,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *416 - - *417 - - *293 + - *419 + - *420 + - *296 responses: '204': description: Response @@ -85646,14 +85687,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &597 + schema: &598 title: Import description: A repository import from an external source. type: object @@ -85760,7 +85801,7 @@ paths: - html_url - authors_url examples: - default: &600 + default: &601 value: vcs: subversion use_lfs: true @@ -85776,7 +85817,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': &598 + '503': &599 description: Unavailable due to service under maintenance. content: application/json: @@ -85805,8 +85846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -85854,7 +85895,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: default: value: @@ -85879,7 +85920,7 @@ paths: type: string '422': *15 '404': *6 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85907,8 +85948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -85960,7 +86001,7 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: example-1: summary: Example 1 @@ -86008,7 +86049,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': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86031,12 +86072,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86062,9 +86103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *416 - - *417 - - &781 + - *419 + - *420 + - &782 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86078,7 +86119,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Porter Author description: Porter Author type: object @@ -86132,7 +86173,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': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86157,8 +86198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *416 - - *417 + - *419 + - *420 - name: author_id in: path required: true @@ -86188,7 +86229,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -86201,7 +86242,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86225,8 +86266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86267,7 +86308,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86295,8 +86336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -86323,11 +86364,11 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *600 + default: *601 '422': *15 - '503': *598 + '503': *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86350,8 +86391,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86359,8 +86400,8 @@ paths: application/json: schema: *20 examples: - default: *601 - '301': *430 + default: *602 + '301': *433 '404': *6 x-github: githubCloudOnly: false @@ -86380,8 +86421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -86389,12 +86430,12 @@ paths: application/json: schema: anyOf: - - *311 + - *314 - type: object properties: {} additionalProperties: false examples: - default: &603 + default: &604 value: limit: collaborators_only origin: repository @@ -86419,13 +86460,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: application/json: - schema: *602 + schema: *603 examples: default: summary: Example request body @@ -86437,9 +86478,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *603 + default: *604 '409': description: Response x-github: @@ -86461,8 +86502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -86485,8 +86526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -86496,9 +86537,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: &774 + default: &775 value: - id: 1 repository: @@ -86629,9 +86670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *416 - - *417 - - *315 + - *419 + - *420 + - *318 requestBody: required: false content: @@ -86660,7 +86701,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: default: value: @@ -86791,9 +86832,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *416 - - *417 - - *315 + - *419 + - *420 + - *318 responses: '204': description: Response @@ -86824,8 +86865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *416 - - *417 + - *419 + - *420 - 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 @@ -86873,7 +86914,7 @@ paths: required: false schema: type: string - - *319 + - *322 - name: sort description: What to sort results by. in: query @@ -86885,8 +86926,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -86896,9 +86937,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: &611 + default: &612 value: - id: 1 node_id: MDU6SXNzdWUx @@ -87046,7 +87087,7 @@ paths: state_reason: completed headers: Link: *38 - '301': *430 + '301': *433 '422': *15 '404': *6 x-github: @@ -87075,8 +87116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -87166,9 +87207,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: &608 + default: &609 value: id: 1 node_id: MDU6SXNzdWUx @@ -87322,9 +87363,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *156 + '503': *162 '404': *6 - '410': *427 + '410': *430 x-github: triggersNotification: true githubCloudOnly: false @@ -87352,9 +87393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *416 - - *417 - - *188 + - *419 + - *420 + - *194 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -87364,7 +87405,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -87374,9 +87415,9 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: - default: &610 + default: &611 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87434,17 +87475,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: &606 + default: &607 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87498,9 +87539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -87522,9 +87563,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *606 + default: *607 '422': *15 x-github: githubCloudOnly: false @@ -87542,9 +87583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -87564,9 +87605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -87592,9 +87633,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -87615,9 +87656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -87649,16 +87690,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -87680,10 +87721,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -87703,8 +87744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -87714,7 +87755,7 @@ paths: application/json: schema: type: array - items: &607 + items: &608 title: Issue Event description: Issue Event type: object @@ -87761,7 +87802,7 @@ paths: issue: anyOf: - type: 'null' - - *179 + - *185 label: title: Issue Event Label description: Issue Event Label @@ -87794,7 +87835,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *257 + requested_team: *260 dismissed_review: title: Issue Event Dismissed Review type: object @@ -87861,7 +87902,7 @@ paths: required: - from - to - author_association: *166 + author_association: *172 lock_reason: type: - string @@ -88053,8 +88094,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *416 - - *417 + - *419 + - *420 - name: event_id in: path required: true @@ -88065,7 +88106,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: default: value: @@ -88258,7 +88299,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *427 + '410': *430 '403': *27 x-github: githubCloudOnly: false @@ -88292,9 +88333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *416 - - *417 - - &609 + - *419 + - *420 + - &610 name: issue_number description: The number that identifies the issue. in: path @@ -88306,12 +88347,12 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '404': *6 - '410': *427 + '410': *430 '304': *35 x-github: githubCloudOnly: false @@ -88336,9 +88377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -88457,15 +88498,15 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 '422': *15 - '503': *156 + '503': *162 '403': *27 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88483,9 +88524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -88511,9 +88552,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88529,9 +88570,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: content: application/json: @@ -88556,9 +88597,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88580,9 +88621,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: assignee in: path required: true @@ -88622,10 +88663,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *416 - - *417 - - *609 - - *169 + - *419 + - *420 + - *610 + - *175 - *17 - *19 responses: @@ -88635,13 +88676,13 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: - default: *610 + default: *611 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88670,9 +88711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -88694,16 +88735,16 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *606 + default: *607 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -88731,9 +88772,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88743,14 +88784,14 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88778,9 +88819,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -88802,17 +88843,17 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *430 + '301': *433 '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -88843,9 +88884,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -88857,15 +88898,15 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 x-github: triggersNotification: true githubCloudOnly: false @@ -88891,9 +88932,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: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88903,14 +88944,14 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88927,9 +88968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -88943,7 +88984,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &614 + - &615 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -88992,7 +89033,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &615 + - &616 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -89120,7 +89161,7 @@ paths: - performed_via_github_app - assignee - assigner - - &616 + - &617 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -89166,7 +89207,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &617 + - &618 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -89212,7 +89253,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &618 + - &619 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -89261,7 +89302,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &619 + - &620 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -89290,7 +89331,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *257 + requested_team: *260 requested_reviewer: *4 required: - review_requester @@ -89303,7 +89344,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &620 + - &621 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -89332,7 +89373,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *257 + requested_team: *260 requested_reviewer: *4 required: - review_requester @@ -89345,7 +89386,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &621 + - &622 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -89401,7 +89442,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &622 + - &623 title: Locked Issue Event description: Locked Issue Event type: object @@ -89446,7 +89487,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &623 + - &624 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -89507,7 +89548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &624 + - &625 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -89568,7 +89609,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &625 + - &626 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -89629,7 +89670,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &626 + - &627 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89722,7 +89763,7 @@ paths: color: red headers: Link: *38 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89739,9 +89780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -89751,7 +89792,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -89806,7 +89847,7 @@ paths: - color - default examples: - default: &613 + default: &614 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89824,9 +89865,9 @@ paths: default: false headers: Link: *38 - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89843,9 +89884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -89904,12 +89945,12 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 - '301': *430 + default: *614 + '301': *433 '404': *6 - '410': *427 + '410': *430 '422': *15 x-github: githubCloudOnly: false @@ -89926,9 +89967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -89988,12 +90029,12 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 - '301': *430 + default: *614 + '301': *433 '404': *6 - '410': *427 + '410': *430 '422': *15 x-github: githubCloudOnly: false @@ -90010,15 +90051,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '204': description: Response - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90037,9 +90078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - name: name in: path required: true @@ -90052,7 +90093,7 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: default: value: @@ -90063,9 +90104,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *430 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90085,9 +90126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: false content: @@ -90116,7 +90157,7 @@ paths: '204': description: Response '403': *27 - '410': *427 + '410': *430 '404': *6 '422': *15 x-github: @@ -90134,9 +90175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '204': description: Response @@ -90166,20 +90207,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 responses: '200': description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 - '301': *430 + default: *609 + '301': *433 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90196,9 +90237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - 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. @@ -90224,13 +90265,13 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90248,9 +90289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90282,16 +90323,16 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -90313,10 +90354,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *416 - - *417 - - *609 - - *408 + - *419 + - *420 + - *610 + - *411 responses: '204': description: Response @@ -90345,9 +90386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90369,9 +90410,9 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -90404,9 +90445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -90416,13 +90457,13 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *611 + default: *612 headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90450,9 +90491,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90479,16 +90520,16 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *427 + '410': *430 '422': *15 '404': *6 x-github: @@ -90508,9 +90549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 requestBody: required: true content: @@ -90541,13 +90582,13 @@ paths: description: Response content: application/json: - schema: *179 + schema: *185 examples: - default: *608 + default: *609 '403': *27 '404': *6 '422': *7 - '503': *156 + '503': *162 x-github: triggersNotification: true githubCloudOnly: false @@ -90565,9 +90606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *416 - - *417 - - *609 + - *419 + - *420 + - *610 - *17 - *19 responses: @@ -90582,7 +90623,6 @@ paths: description: Timeline Event type: object anyOf: - - *614 - *615 - *616 - *617 @@ -90595,6 +90635,7 @@ paths: - *624 - *625 - *626 + - *627 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -90642,12 +90683,12 @@ paths: issue_url: type: string format: uri - author_association: *166 + author_association: *172 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - event - actor @@ -90678,7 +90719,7 @@ paths: properties: type: type: string - issue: *179 + issue: *185 required: - event - created_at @@ -90900,7 +90941,7 @@ paths: type: string body_text: type: string - author_association: *166 + author_association: *172 required: - event - id @@ -90923,7 +90964,7 @@ paths: type: string comments: type: array - items: &645 + items: &646 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -91028,7 +91069,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *166 + author_association: *172 _links: type: object properties: @@ -91123,7 +91164,7 @@ paths: enum: - line - file - reactions: *167 + reactions: *173 body_html: type: string examples: @@ -91161,7 +91202,7 @@ paths: type: string comments: type: array - items: *533 + items: *534 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -91436,7 +91477,7 @@ paths: headers: Link: *38 '404': *6 - '410': *427 + '410': *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91453,8 +91494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -91464,7 +91505,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -91532,8 +91573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -91569,9 +91610,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 key: ssh-rsa AAA... @@ -91605,9 +91646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *416 - - *417 - - &629 + - *419 + - *420 + - &630 name: key_id description: The unique identifier of the key. in: path @@ -91619,9 +91660,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -91639,9 +91680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *416 - - *417 - - *629 + - *419 + - *420 + - *630 responses: '204': description: Response @@ -91661,8 +91702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -91672,9 +91713,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 headers: Link: *38 '404': *6 @@ -91695,8 +91736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -91732,9 +91773,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &630 + default: &631 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91766,8 +91807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91778,9 +91819,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *630 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -91797,8 +91838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91837,7 +91878,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -91863,8 +91904,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *416 - - *417 + - *419 + - *420 - name: name in: path required: true @@ -91890,8 +91931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -91927,8 +91968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '202': *37 '403': @@ -91956,8 +91997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -91983,9 +92024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *416 - - *417 - - *511 + - *419 + - *420 + - *512 responses: '200': description: Response @@ -92051,7 +92092,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 required: - _links - git_url @@ -92132,8 +92173,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92198,8 +92239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92233,9 +92274,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *534 + schema: *535 examples: - default: *631 + default: *632 '204': description: Response when already merged '404': @@ -92260,8 +92301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -92302,7 +92343,7 @@ paths: application/json: schema: type: array - items: *355 + items: *358 examples: default: value: @@ -92358,8 +92399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92399,9 +92440,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &632 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -92460,9 +92501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *416 - - *417 - - &633 + - *419 + - *420 + - &634 name: milestone_number description: The number that identifies the milestone. in: path @@ -92474,9 +92515,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *632 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -92493,9 +92534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 requestBody: required: false content: @@ -92533,9 +92574,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *632 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92551,9 +92592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 responses: '204': description: Response @@ -92574,9 +92615,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: - - *416 - - *417 - - *633 + - *419 + - *420 + - *634 - *17 - *19 responses: @@ -92586,9 +92627,9 @@ paths: application/json: schema: type: array - items: *612 + items: *613 examples: - default: *613 + default: *614 headers: Link: *38 x-github: @@ -92607,12 +92648,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: - - *416 - - *417 - - *634 + - *419 + - *420 - *635 - - *169 - *636 + - *175 + - *637 - *17 - *19 responses: @@ -92622,9 +92663,9 @@ paths: application/json: schema: type: array - items: *191 + items: *197 examples: - default: *637 + default: *638 headers: Link: *38 x-github: @@ -92648,8 +92689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -92707,14 +92748,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: &638 + schema: &639 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -92858,7 +92899,7 @@ paths: - custom_404 - public examples: - default: &639 + default: &640 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -92899,8 +92940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -92955,11 +92996,11 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *639 + default: *640 '422': *15 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92980,8 +93021,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -93068,7 +93109,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93089,14 +93130,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response '422': *15 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93116,8 +93157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -93127,7 +93168,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Page Build description: Page Build type: object @@ -93219,8 +93260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *416 - - *417 + - *419 + - *420 responses: '201': description: Response @@ -93267,16 +93308,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: &641 + default: &642 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -93324,8 +93365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *416 - - *417 + - *419 + - *420 - name: build_id in: path required: true @@ -93336,9 +93377,9 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: *641 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93358,8 +93399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -93467,9 +93508,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: - - *416 - - *417 - - &642 + - *419 + - *420 + - &643 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -93527,11 +93568,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *416 - - *417 - - *642 + - *419 + - *420 + - *643 responses: - '204': *122 + '204': *128 '404': *6 x-github: githubCloudOnly: false @@ -93556,8 +93597,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -93825,7 +93866,7 @@ paths: description: Empty response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -93852,8 +93893,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Private vulnerability reporting status @@ -93890,10 +93931,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: - - *416 - - *417 + - *419 + - *420 responses: - '204': *122 + '204': *128 '422': *14 x-github: githubCloudOnly: false @@ -93912,10 +93953,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: - - *416 - - *417 + - *419 + - *420 responses: - '204': *122 + '204': *128 '422': *14 x-github: githubCloudOnly: false @@ -93936,8 +93977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: Indicates the state of the projects to return. in: query @@ -93958,7 +93999,7 @@ paths: application/json: schema: type: array - items: *349 + items: *352 examples: default: value: @@ -93998,7 +94039,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -94021,8 +94062,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94048,13 +94089,13 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: - default: *426 + default: *429 '401': *23 '403': *27 '404': *6 - '410': *427 + '410': *430 '422': *7 x-github: githubCloudOnly: false @@ -94077,8 +94118,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -94086,7 +94127,7 @@ paths: application/json: schema: type: array - items: *362 + items: *365 examples: default: value: @@ -94117,8 +94158,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94130,7 +94171,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *362 + items: *365 required: - properties examples: @@ -94180,8 +94221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *416 - - *417 + - *419 + - *420 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -94241,9 +94282,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: *643 + default: *644 headers: Link: *38 '304': *35 @@ -94275,8 +94316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -94343,7 +94384,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &648 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -94472,7 +94513,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 active_lock_reason: type: - string @@ -94527,7 +94568,7 @@ paths: type: - array - 'null' - items: *331 + items: *334 head: type: object properties: @@ -94565,14 +94606,14 @@ paths: _links: type: object properties: - comments: *356 - commits: *356 - statuses: *356 - html: *356 - issue: *356 - review_comments: *356 - review_comment: *356 - self: *356 + comments: *359 + commits: *359 + statuses: *359 + html: *359 + issue: *359 + review_comments: *359 + review_comment: *359 + self: *359 required: - comments - commits @@ -94582,8 +94623,8 @@ paths: - review_comments - review_comment - self - author_association: *166 - auto_merge: *644 + author_association: *172 + auto_merge: *645 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -94685,7 +94726,7 @@ paths: - merged_by - review_comments examples: - default: &648 + default: &649 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -95212,8 +95253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *416 - - *417 + - *419 + - *420 - name: sort in: query required: false @@ -95232,7 +95273,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -95242,9 +95283,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: &650 + default: &651 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95321,17 +95362,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '200': description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: &646 + default: &647 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95406,9 +95447,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -95430,9 +95471,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95448,9 +95489,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 responses: '204': description: Response @@ -95471,9 +95512,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 - 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. @@ -95499,9 +95540,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -95522,9 +95563,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: - - *416 - - *417 - - *178 + - *419 + - *420 + - *184 requestBody: required: true content: @@ -95556,16 +95597,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -95587,10 +95628,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *416 - - *417 - - *178 - - *408 + - *419 + - *420 + - *184 + - *411 responses: '204': description: Response @@ -95633,9 +95674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *416 - - *417 - - &649 + - *419 + - *420 + - &650 name: pull_number description: The number that identifies the pull request. in: path @@ -95648,9 +95689,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '304': *35 '404': *6 '406': @@ -95659,7 +95700,7 @@ paths: application/json: schema: *3 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95685,9 +95726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -95729,9 +95770,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '422': *15 '403': *27 x-github: @@ -95753,9 +95794,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -95816,21 +95857,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95856,10 +95897,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: - - *416 - - *417 - - *649 - - *188 + - *419 + - *420 + - *650 + - *194 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -95869,7 +95910,7 @@ paths: enum: - asc - desc - - *169 + - *175 - *17 - *19 responses: @@ -95879,9 +95920,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: *650 + default: *651 headers: Link: *38 x-github: @@ -95914,9 +95955,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -96022,7 +96063,7 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: example-for-a-multi-line-comment: value: @@ -96110,10 +96151,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: - - *416 - - *417 - - *649 - - *178 + - *419 + - *420 + - *650 + - *184 requestBody: required: true content: @@ -96135,7 +96176,7 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: default: value: @@ -96221,9 +96262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -96233,9 +96274,9 @@ paths: application/json: schema: type: array - items: *534 + items: *535 examples: - default: *651 + default: *652 headers: Link: *38 x-github: @@ -96265,9 +96306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -96277,7 +96318,7 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: default: value: @@ -96296,7 +96337,7 @@ paths: Link: *38 '422': *15 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96315,9 +96356,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 responses: '204': description: Response if pull request has been merged @@ -96340,9 +96381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -96454,9 +96495,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 responses: '200': description: Response @@ -96472,7 +96513,7 @@ paths: items: *4 teams: type: array - items: *257 + items: *260 required: - users - teams @@ -96531,9 +96572,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -96570,7 +96611,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -97106,9 +97147,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: true content: @@ -97142,7 +97183,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -97647,9 +97688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 - *17 - *19 responses: @@ -97659,7 +97700,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -97733,7 +97774,7 @@ paths: type: string body_text: type: string - author_association: *166 + author_association: *172 required: - id - node_id @@ -97815,9 +97856,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: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -97907,9 +97948,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &654 + default: &655 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97972,10 +98013,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: - - *416 - - *417 - - *649 - - &653 + - *419 + - *420 + - *650 + - &654 name: review_id description: The unique identifier of the review. in: path @@ -97987,9 +98028,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &655 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98048,10 +98089,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98074,7 +98115,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -98136,18 +98177,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 responses: '200': description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *654 + default: *655 '422': *7 '404': *6 x-github: @@ -98174,10 +98215,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 - *17 - *19 responses: @@ -98271,13 +98312,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *166 + author_association: *172 _links: type: object properties: - self: *356 - html: *356 - pull_request: *356 + self: *359 + html: *359 + pull_request: *359 required: - self - html @@ -98286,7 +98327,7 @@ paths: type: string body_html: type: string - reactions: *167 + reactions: *173 side: description: The side of the first line of the range for a multi-line comment. @@ -98435,10 +98476,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98467,7 +98508,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -98530,10 +98571,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: - - *416 - - *417 - - *649 - - *653 + - *419 + - *420 + - *650 + - *654 requestBody: required: true content: @@ -98568,9 +98609,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *655 + default: *656 '404': *6 '422': *7 '403': *27 @@ -98592,9 +98633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *416 - - *417 - - *649 + - *419 + - *420 + - *650 requestBody: required: false content: @@ -98658,8 +98699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *416 - - *417 + - *419 + - *420 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -98672,9 +98713,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: type: file encoding: base64 @@ -98716,8 +98757,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: - - *416 - - *417 + - *419 + - *420 - name: dir description: The alternate path to look for a README file in: path @@ -98737,9 +98778,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 '422': *15 x-github: @@ -98761,8 +98802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -98772,7 +98813,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Release description: A release. type: object @@ -98854,7 +98895,7 @@ paths: author: *4 assets: type: array - items: &659 + items: &660 title: Release Asset description: Data related to a release. type: object @@ -98929,7 +98970,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *167 + reactions: *173 required: - assets_url - upload_url @@ -99041,8 +99082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -99118,9 +99159,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &662 + default: &663 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -99225,9 +99266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *416 - - *417 - - &660 + - *419 + - *420 + - &661 name: asset_id description: The unique identifier of the asset. in: path @@ -99239,9 +99280,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: &661 + default: &662 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 @@ -99276,7 +99317,7 @@ paths: type: User site_admin: false '404': *6 - '302': *547 + '302': *548 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99292,9 +99333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *416 - - *417 - - *660 + - *419 + - *420 + - *661 requestBody: required: false content: @@ -99323,9 +99364,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *661 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99341,9 +99382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *416 - - *417 - - *660 + - *419 + - *420 + - *661 responses: '204': description: Response @@ -99367,8 +99408,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -99454,16 +99495,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99480,8 +99521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *416 - - *417 + - *419 + - *420 - name: tag description: tag parameter in: path @@ -99494,9 +99535,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -99518,9 +99559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *416 - - *417 - - &663 + - *419 + - *420 + - &664 name: release_id description: The unique identifier of the release. in: path @@ -99534,9 +99575,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: *658 + schema: *659 examples: - default: *662 + default: *663 '401': description: Unauthorized x-github: @@ -99554,9 +99595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 requestBody: required: false content: @@ -99620,9 +99661,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *662 + default: *663 '404': description: Not Found if the discussion category name is invalid content: @@ -99643,9 +99684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 responses: '204': description: Response @@ -99665,9 +99706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - *17 - *19 responses: @@ -99677,7 +99718,7 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: default: value: @@ -99759,9 +99800,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: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - name: name in: query required: true @@ -99787,7 +99828,7 @@ paths: description: Response for successful upload content: application/json: - schema: *659 + schema: *660 examples: response-for-successful-upload: value: @@ -99842,9 +99883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 - 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. @@ -99868,9 +99909,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 '404': *6 @@ -99891,9 +99932,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *416 - - *417 - - *663 + - *419 + - *420 + - *664 requestBody: required: true content: @@ -99923,16 +99964,16 @@ paths: description: Reaction exists content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '201': description: Reaction created content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -99954,10 +99995,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *416 - - *417 - - *663 - - *408 + - *419 + - *420 + - *664 + - *411 responses: '204': description: Response @@ -99981,9 +100022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *416 - - *417 - - *475 + - *419 + - *420 + - *478 - *17 - *19 responses: @@ -99999,8 +100040,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *131 - - &664 + - *137 + - &665 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -100019,66 +100060,66 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *132 - - *664 - - allOf: - - *133 - - *664 - - allOf: - - *134 - - *664 - - allOf: - - *665 - - *664 - - allOf: - - *135 - - *664 - - allOf: - - *136 - - *664 - - allOf: - - *137 - - *664 - allOf: - *138 - - *664 + - *665 - allOf: - *139 - - *664 + - *665 - allOf: - *140 - - *664 + - *665 + - allOf: + - *666 + - *665 - allOf: - *141 - - *664 + - *665 - allOf: - *142 - - *664 + - *665 - allOf: - *143 - - *664 + - *665 - allOf: - *144 - - *664 + - *665 - allOf: - *145 - - *664 + - *665 - allOf: - *146 - - *664 + - *665 - allOf: - *147 - - *664 + - *665 - allOf: - *148 - - *664 + - *665 - allOf: - *149 - - *664 + - *665 - allOf: - *150 - - *664 + - *665 + - allOf: + - *151 + - *665 + - allOf: + - *152 + - *665 + - allOf: + - *153 + - *665 + - allOf: + - *154 + - *665 + - allOf: + - *155 + - *665 + - allOf: + - *156 + - *665 examples: default: value: @@ -100117,8 +100158,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - name: includes_parents @@ -100129,7 +100170,7 @@ paths: schema: type: boolean default: true - - *666 + - *667 responses: '200': description: Response @@ -100137,7 +100178,7 @@ paths: application/json: schema: type: array - items: *151 + items: *157 examples: default: value: @@ -100184,8 +100225,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 requestBody: description: Request body required: true @@ -100205,16 +100246,16 @@ paths: - tag - push default: branch - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *125 + items: *136 + conditions: *131 rules: type: array description: An array of rules within the ruleset. - items: *667 + items: *668 required: - name - enforcement @@ -100245,9 +100286,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: &676 + default: &677 value: id: 42 name: super cool ruleset @@ -100294,12 +100335,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *416 - - *417 - - *668 - - *251 + - *419 + - *420 - *669 + - *93 - *670 + - *671 - *17 - *19 responses: @@ -100307,9 +100348,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '500': *89 x-github: @@ -100330,17 +100371,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *416 - - *417 - - *673 + - *419 + - *420 + - *674 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '500': *89 x-github: @@ -100368,8 +100409,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100389,9 +100430,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *676 + default: *677 '404': *6 '500': *89 put: @@ -100409,8 +100450,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100435,16 +100476,16 @@ paths: - branch - tag - push - enforcement: *129 + enforcement: *135 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *130 - conditions: *125 + items: *136 + conditions: *131 rules: description: An array of rules within the ruleset. type: array - items: *667 + items: *668 examples: default: value: @@ -100472,9 +100513,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *157 examples: - default: *676 + default: *677 '404': *6 '500': *89 delete: @@ -100492,8 +100533,8 @@ paths: category: repos subcategory: rules parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100516,8 +100557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 - name: ruleset_id @@ -100533,9 +100574,9 @@ paths: application/json: schema: type: array - items: *155 + items: *161 examples: - default: *369 + default: *372 '404': *6 '500': *89 x-github: @@ -100554,8 +100595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *416 - - *417 + - *419 + - *420 - name: ruleset_id description: The ID of the ruleset. in: path @@ -100573,7 +100614,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: default: value: @@ -100628,21 +100669,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: - - *416 - - *417 - - *371 - - *372 - - *373 + - *419 + - *420 - *374 - - *92 - - *19 - - *17 - - *677 - - *678 - *375 - *376 - *377 + - *98 + - *19 + - *17 + - *678 + - *679 - *378 + - *379 + - *380 + - *381 responses: '200': description: Response @@ -100650,24 +100691,24 @@ paths: application/json: schema: type: array - items: &682 + items: &683 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *679 - resolution: *680 + state: *680 + resolution: *681 resolved_at: type: - string @@ -100761,7 +100802,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *681 + - *682 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -100861,7 +100902,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100883,16 +100924,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: - - *416 - - *417 - - *505 - - *378 + - *419 + - *420 + - *506 + - *381 responses: '200': description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -100923,7 +100964,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100944,9 +100985,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 requestBody: required: true content: @@ -100954,8 +100995,8 @@ paths: schema: type: object properties: - state: *679 - resolution: *680 + state: *680 + resolution: *681 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100974,7 +101015,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -101027,7 +101068,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -101049,9 +101090,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: - - *416 - - *417 - - *505 + - *419 + - *420 + - *506 - *19 - *17 responses: @@ -101062,7 +101103,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &859 + items: &860 type: object properties: type: @@ -101089,7 +101130,6 @@ paths: - commit details: oneOf: - - *683 - *684 - *685 - *686 @@ -101102,6 +101142,7 @@ paths: - *693 - *694 - *695 + - *696 examples: default: value: @@ -101165,7 +101206,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101187,8 +101228,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101196,14 +101237,14 @@ paths: schema: type: object properties: - reason: &697 + reason: &698 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *696 + placeholder_id: *697 required: - reason - placeholder_id @@ -101220,7 +101261,7 @@ paths: schema: type: object properties: - reason: *697 + reason: *698 expire_at: type: - string @@ -101244,7 +101285,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *156 + '503': *162 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -101264,13 +101305,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: - - *416 - - *417 + - *419 + - *420 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *156 + '503': *162 '200': description: Response content: @@ -101280,7 +101321,7 @@ paths: properties: incremental_scans: type: array - items: &698 + items: &699 description: Information on a single scan performed by secret scanning on the repository type: object @@ -101308,15 +101349,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *698 + items: *699 backfill_scans: type: array - items: *698 + items: *699 custom_pattern_backfill_scans: type: array items: allOf: - - *698 + - *699 - type: object properties: pattern_name: @@ -101386,9 +101427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *416 - - *417 - - *92 + - *419 + - *420 + - *98 - name: sort description: The property to sort the results by. in: query @@ -101400,8 +101441,8 @@ paths: - updated - published default: created - - *90 - - *91 + - *96 + - *97 - 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)." @@ -101431,9 +101472,9 @@ paths: application/json: schema: type: array - items: *699 + items: *700 examples: - default: *700 + default: *701 '400': *14 '404': *6 x-github: @@ -101456,8 +101497,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101537,7 +101578,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 required: - login - type @@ -101627,9 +101668,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: &702 + default: &703 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101862,8 +101903,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -101976,7 +102017,7 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -102123,17 +102164,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '200': description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *702 + default: *703 '403': *27 '404': *6 x-github: @@ -102157,9 +102198,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 requestBody: required: true content: @@ -102239,7 +102280,7 @@ paths: login: type: string description: The username of the user credited. - type: *383 + type: *386 required: - login - type @@ -102330,17 +102371,17 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *702 - add_credit: *702 + default: *703 + add_credit: *703 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *203 + schema: *209 examples: invalid_state_transition: value: @@ -102371,9 +102412,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '202': *37 '400': *14 @@ -102400,17 +102441,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: - - *416 - - *417 - - *701 + - *419 + - *420 + - *702 responses: '202': description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 '400': *14 '422': *15 '403': *27 @@ -102436,8 +102477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -102533,8 +102574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -102543,7 +102584,7 @@ paths: application/json: schema: type: array - items: &703 + items: &704 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -102556,7 +102597,7 @@ paths: - 1124 - -435 '202': *37 - '204': *122 + '204': *128 '422': description: Repository contains more than 10,000 commits x-github: @@ -102576,8 +102617,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -102628,7 +102669,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102655,8 +102696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -102728,7 +102769,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102750,8 +102791,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -102905,8 +102946,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -102916,7 +102957,7 @@ paths: application/json: schema: type: array - items: *703 + items: *704 examples: default: value: @@ -102929,7 +102970,7 @@ paths: - - 0 - 2 - 21 - '204': *122 + '204': *128 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102949,8 +102990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *416 - - *417 + - *419 + - *420 - name: sha in: path required: true @@ -103006,7 +103047,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: default: value: @@ -103060,8 +103101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103073,7 +103114,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -103093,14 +103134,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &705 + schema: &706 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103173,8 +103214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: false content: @@ -103200,7 +103241,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: default: value: @@ -103227,8 +103268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -103248,8 +103289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103331,8 +103372,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: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103340,7 +103381,7 @@ paths: application/json: schema: type: array - items: &706 + items: &707 title: Tag protection description: Tag protection type: object @@ -103397,8 +103438,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: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -103421,7 +103462,7 @@ paths: description: Response content: application/json: - schema: *706 + schema: *707 examples: default: value: @@ -103452,8 +103493,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: - - *416 - - *417 + - *419 + - *420 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -103490,8 +103531,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *416 - - *417 + - *419 + - *420 - name: ref in: path required: true @@ -103527,8 +103568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *416 - - *417 + - *419 + - *420 - *17 - *19 responses: @@ -103538,9 +103579,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - default: *332 + default: *335 headers: Link: *38 '404': *6 @@ -103560,8 +103601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *416 - - *417 + - *419 + - *420 - *19 - *17 responses: @@ -103569,7 +103610,7 @@ paths: description: Response content: application/json: - schema: &707 + schema: &708 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -103581,7 +103622,7 @@ paths: required: - names examples: - default: &708 + default: &709 value: names: - octocat @@ -103604,8 +103645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -103636,9 +103677,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *708 examples: - default: *708 + default: *709 '404': *6 '422': *7 x-github: @@ -103659,9 +103700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *416 - - *417 - - &709 + - *419 + - *420 + - &710 name: per description: The time frame to display results for. in: query @@ -103692,7 +103733,7 @@ paths: - 128 clones: type: array - items: &710 + items: &711 title: Traffic type: object properties: @@ -103779,8 +103820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103874,8 +103915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *416 - - *417 + - *419 + - *420 responses: '200': description: Response @@ -103938,9 +103979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *416 - - *417 - - *709 + - *419 + - *420 + - *710 responses: '200': description: Response @@ -103961,7 +104002,7 @@ paths: - 3782 views: type: array - items: *710 + items: *711 required: - uniques - count @@ -104038,8 +104079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *416 - - *417 + - *419 + - *420 requestBody: required: true content: @@ -104075,7 +104116,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *232 examples: default: value: @@ -104313,8 +104354,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -104337,8 +104378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -104360,8 +104401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -104387,8 +104428,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *416 - - *417 + - *419 + - *420 - name: ref in: path required: true @@ -104480,9 +104521,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104523,7 +104564,7 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: default: value: @@ -104633,7 +104674,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &718 + - &719 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -104643,7 +104684,7 @@ paths: type: string examples: - members - - &723 + - &724 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -104655,7 +104696,7 @@ paths: format: int32 examples: - 1 - - &724 + - &725 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -104699,7 +104740,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &713 + items: &714 allOf: - type: object required: @@ -104781,7 +104822,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: &725 + meta: &726 type: object description: The metadata associated with the creation/updates to the user. @@ -104846,30 +104887,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &714 + '400': &715 description: Bad request content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '401': *712 - '403': &715 + schema: *712 + '401': *713 + '403': &716 description: Permission denied - '429': &716 + '429': &717 description: Too many requests content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '500': &717 + schema: *712 + '500': &718 description: Internal server error content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 + schema: *712 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -104893,7 +104934,7 @@ paths: required: true content: application/json: - schema: &721 + schema: &722 type: object required: - schemas @@ -104957,9 +104998,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *713 + schema: *714 examples: - group: &719 + group: &720 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -104978,13 +105019,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': *714 - '401': *712 - '403': *715 - '409': &722 + '400': *715 + '401': *713 + '403': *716 + '409': &723 description: Duplicate record detected - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105001,7 +105042,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: - - &720 + - &721 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -105010,22 +105051,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *718 + - *719 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *713 + schema: *714 examples: - default: *719 - '400': *714 - '401': *712 - '403': *715 + default: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105044,13 +105085,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: - - *720 + - *721 - *39 requestBody: required: true content: application/json: - schema: *721 + schema: *722 examples: group: summary: Group @@ -105076,17 +105117,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *713 + schema: *714 examples: - group: *719 - groupWithMembers: *719 - '400': *714 - '401': *712 - '403': *715 + group: *720 + groupWithMembers: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105110,13 +105151,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: - - *720 + - *721 - *39 requestBody: required: true content: application/json: - schema: &732 + schema: &733 type: object required: - Operations @@ -105176,17 +105217,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *713 + schema: *714 examples: - updateGroup: *719 - addMembers: *719 - '400': *714 - '401': *712 - '403': *715 + updateGroup: *720 + addMembers: *720 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105202,17 +105243,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: - - *720 + - *721 - *39 responses: '204': description: Group was deleted, no content - '400': *714 - '401': *712 - '403': *715 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105246,8 +105287,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *723 - *724 + - *725 - *39 responses: '200': @@ -105281,7 +105322,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &727 + items: &728 allOf: - type: object required: @@ -105373,7 +105414,7 @@ paths: address. examples: - true - roles: &726 + roles: &727 type: array description: The roles assigned to the user. items: @@ -105432,7 +105473,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *725 + meta: *726 startIndex: type: integer description: A starting index for the returned page @@ -105471,11 +105512,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *714 - '401': *712 - '403': *715 - '429': *716 - '500': *717 + '400': *715 + '401': *713 + '403': *716 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105499,7 +105540,7 @@ paths: required: true content: application/json: - schema: &730 + schema: &731 type: object required: - schemas @@ -105592,9 +105633,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *726 + roles: *727 examples: - user: &731 + user: &732 summary: User value: schemas: @@ -105641,9 +105682,9 @@ paths: description: User has been created content: application/scim+json: - schema: *727 + schema: *728 examples: - user: &728 + user: &729 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -105669,13 +105710,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: *728 - '400': *714 - '401': *712 - '403': *715 - '409': *722 - '429': *716 - '500': *717 + enterpriseOwner: *729 + '400': *715 + '401': *713 + '403': *716 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105692,7 +105733,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: - - &729 + - &730 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -105705,15 +105746,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *727 + schema: *728 examples: - default: *728 - '400': *714 - '401': *712 - '403': *715 + default: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105735,30 +105776,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: - - *729 + - *730 - *39 requestBody: required: true content: application/json: - schema: *730 + schema: *731 examples: - user: *731 + user: *732 responses: '200': description: User was updated content: application/scim+json: - schema: *727 + schema: *728 examples: - user: *728 - '400': *714 - '401': *712 - '403': *715 + user: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105793,13 +105834,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: - - *729 + - *730 - *39 requestBody: required: true content: application/json: - schema: *732 + schema: *733 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -105839,18 +105880,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *727 + schema: *728 examples: - userMultiValuedProperties: *728 - userSingleValuedProperties: *728 - disableUser: *728 - '400': *714 - '401': *712 - '403': *715 + userMultiValuedProperties: *729 + userSingleValuedProperties: *729 + disableUser: *729 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '409': *722 - '429': *716 - '500': *717 + '409': *723 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105870,17 +105911,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: - - *729 + - *730 - *39 responses: '204': description: User was deleted, no content - '400': *714 - '401': *712 - '403': *715 + '400': *715 + '401': *713 + '403': *716 '404': *6 - '429': *716 - '500': *717 + '429': *717 + '500': *718 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -105971,7 +106012,7 @@ paths: - 1 Resources: type: array - items: &733 + items: &734 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -106218,22 +106259,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &734 + '404': &735 description: Resource not found content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '403': &735 + schema: *712 + '403': &736 description: Forbidden content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '400': *714 - '429': *716 + schema: *712 + '400': *715 + '429': *717 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -106259,9 +106300,9 @@ paths: description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: &736 + default: &737 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -106284,17 +106325,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *734 - '403': *735 - '500': *717 + '404': *735 + '403': *736 + '500': *718 '409': description: Conflict content: application/json: - schema: *711 + schema: *712 application/scim+json: - schema: *711 - '400': *714 + schema: *712 + '400': *715 requestBody: required: true content: @@ -106394,17 +106435,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 - '404': *734 - '403': *735 + default: *737 + '404': *735 + '403': *736 '304': *35 x-github: githubCloudOnly: true @@ -106428,18 +106469,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 + default: *737 '304': *35 - '404': *734 - '403': *735 + '404': *735 + '403': *736 requestBody: required: true content: @@ -106554,19 +106595,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *74 - - *729 + - *730 responses: '200': description: Response content: application/scim+json: - schema: *733 + schema: *734 examples: - default: *736 + default: *737 '304': *35 - '404': *734 - '403': *735 - '400': *714 + '404': *735 + '403': *736 + '400': *715 '429': description: Response content: @@ -106662,12 +106703,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *74 - - *729 + - *730 responses: '204': description: Response - '404': *734 - '403': *735 + '404': *735 + '403': *736 '304': *35 x-github: githubCloudOnly: true @@ -106782,7 +106823,7 @@ paths: html_url: type: string format: uri - repository: *226 + repository: *232 score: type: number file_size: @@ -106801,7 +106842,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &737 + text_matches: &738 title: Search Result Text Matches type: array items: @@ -106916,7 +106957,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *156 + '503': *162 '422': *15 '403': *27 x-github: @@ -106965,7 +107006,7 @@ paths: enum: - author-date - committer-date - - &738 + - &739 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 @@ -107034,7 +107075,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 comment_count: type: integer message: @@ -107053,7 +107094,7 @@ paths: url: type: string format: uri - verification: *591 + verification: *592 required: - author - committer @@ -107068,7 +107109,7 @@ paths: committer: anyOf: - type: 'null' - - *473 + - *476 parents: type: array items: @@ -107080,12 +107121,12 @@ paths: type: string sha: type: string - repository: *226 + repository: *232 score: type: number node_id: type: string - text_matches: *737 + text_matches: *738 required: - sha - node_id @@ -107268,7 +107309,7 @@ paths: - interactions - created - updated - - *738 + - *739 - *17 - *19 - name: advanced_search @@ -107365,11 +107406,11 @@ paths: type: - string - 'null' - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: type: string state_reason: @@ -107383,7 +107424,7 @@ paths: milestone: anyOf: - type: 'null' - - *355 + - *358 comments: type: integer created_at: @@ -107397,7 +107438,7 @@ paths: - string - 'null' format: date-time - text_matches: *737 + text_matches: *738 pull_request: type: object properties: @@ -107435,7 +107476,7 @@ paths: type: string score: type: number - author_association: *166 + author_association: *172 draft: type: boolean repository: *65 @@ -107446,12 +107487,12 @@ paths: timeline_url: type: string format: uri - type: *316 + type: *319 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *167 + reactions: *173 required: - assignee - closed_at @@ -107567,7 +107608,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *156 + '503': *162 '422': *15 '304': *35 '403': *27 @@ -107623,7 +107664,7 @@ paths: enum: - created - updated - - *738 + - *739 - *17 - *19 responses: @@ -107668,7 +107709,7 @@ paths: - 'null' score: type: number - text_matches: *737 + text_matches: *738 required: - id - node_id @@ -107754,7 +107795,7 @@ paths: - forks - help-wanted-issues - updated - - *738 + - *739 - *17 - *19 responses: @@ -107973,7 +108014,7 @@ paths: license: anyOf: - type: 'null' - - *180 + - *186 permissions: type: object properties: @@ -107991,7 +108032,7 @@ paths: - admin - pull - push - text_matches: *737 + text_matches: *738 temp_clone_token: type: string allow_merge_commit: @@ -108194,7 +108235,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *156 + '503': *162 '422': *15 '304': *35 x-github: @@ -108300,7 +108341,7 @@ paths: - string - 'null' format: uri - text_matches: *737 + text_matches: *738 related: type: - array @@ -108495,7 +108536,7 @@ paths: - followers - repositories - joined - - *738 + - *739 - *17 - *19 responses: @@ -108605,7 +108646,7 @@ paths: type: - boolean - 'null' - text_matches: *737 + text_matches: *738 blog: type: - string @@ -108667,7 +108708,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *156 + '503': *162 '422': *15 x-github: githubCloudOnly: false @@ -108687,7 +108728,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &742 + - &743 name: team_id description: The unique identifier of the team. in: path @@ -108699,9 +108740,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -108728,7 +108769,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *742 + - *743 requestBody: required: true content: @@ -108792,16 +108833,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '201': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 '404': *6 '422': *15 '403': *27 @@ -108829,7 +108870,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *742 + - *743 responses: '204': description: Response @@ -108860,8 +108901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *742 - - *92 + - *743 + - *98 - *17 - *19 responses: @@ -108871,9 +108912,9 @@ paths: application/json: schema: type: array - items: *399 + items: *402 examples: - default: *743 + default: *744 headers: Link: *38 x-github: @@ -108902,7 +108943,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *742 + - *743 requestBody: required: true content: @@ -108936,9 +108977,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: triggersNotification: true githubCloudOnly: false @@ -108965,16 +109006,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 responses: '200': description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108999,8 +109040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 requestBody: required: false content: @@ -109023,9 +109064,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *744 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109050,8 +109091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *742 - - *401 + - *743 + - *404 responses: '204': description: Response @@ -109080,9 +109121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *742 - - *401 - - *92 + - *743 + - *404 + - *98 - *17 - *19 responses: @@ -109092,9 +109133,9 @@ paths: application/json: schema: type: array - items: *402 + items: *405 examples: - default: *745 + default: *746 headers: Link: *38 x-github: @@ -109123,8 +109164,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 + - *404 requestBody: required: true content: @@ -109146,9 +109187,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: triggersNotification: true githubCloudOnly: false @@ -109175,17 +109216,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 responses: '200': description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *403 + default: *406 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109210,9 +109251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 requestBody: required: true content: @@ -109234,9 +109275,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: - default: *746 + default: *747 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109261,9 +109302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *742 - - *401 + - *743 - *404 + - *407 responses: '204': description: Response @@ -109292,9 +109333,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: - - *742 - - *401 + - *743 - *404 + - *407 - 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. @@ -109320,9 +109361,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -109351,9 +109392,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: - - *742 - - *401 + - *743 - *404 + - *407 requestBody: required: true content: @@ -109385,9 +109426,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109413,8 +109454,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: - - *742 - - *401 + - *743 + - *404 - 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. @@ -109440,9 +109481,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *407 + default: *410 headers: Link: *38 x-github: @@ -109471,8 +109512,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: - - *742 - - *401 + - *743 + - *404 requestBody: required: true content: @@ -109504,9 +109545,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109530,7 +109571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -109540,9 +109581,9 @@ paths: application/json: schema: type: array - items: *313 + items: *316 examples: - default: *314 + default: *317 headers: Link: *38 x-github: @@ -109568,7 +109609,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *742 + - *743 - name: role description: Filters members returned by their role in the team. in: query @@ -109591,7 +109632,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '404': *6 @@ -109619,8 +109660,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: if user is a member @@ -109656,8 +109697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109696,8 +109737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109733,16 +109774,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: - - *742 - - *248 + - *743 + - *254 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-user-is-a-team-maintainer: *747 + response-if-user-is-a-team-maintainer: *748 '404': *6 x-github: githubCloudOnly: false @@ -109775,8 +109816,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: - - *742 - - *248 + - *743 + - *254 requestBody: required: false content: @@ -109801,9 +109842,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - response-if-users-membership-with-team-is-now-pending: *748 + response-if-users-membership-with-team-is-now-pending: *749 '403': description: Forbidden if team synchronization is set up '422': @@ -109837,8 +109878,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: - - *742 - - *248 + - *743 + - *254 responses: '204': description: Response @@ -109866,7 +109907,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -109876,9 +109917,9 @@ paths: application/json: schema: type: array - items: *414 + items: *417 examples: - default: *749 + default: *750 headers: Link: *38 '404': *6 @@ -109904,16 +109945,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: - - *742 - - *415 + - *743 + - *418 responses: '200': description: Response content: application/json: - schema: *414 + schema: *417 examples: - default: *750 + default: *751 '404': description: Not Found if project is not managed by this team x-github: @@ -109937,8 +109978,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: - - *742 - - *415 + - *743 + - *418 requestBody: required: false content: @@ -110005,8 +110046,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: - - *742 - - *415 + - *743 + - *418 responses: '204': description: Response @@ -110033,7 +110074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -110043,9 +110084,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '404': *6 @@ -110075,15 +110116,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *751 + schema: *752 examples: alternative-response-with-extra-repository-information: value: @@ -110234,9 +110275,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 requestBody: required: false content: @@ -110286,9 +110327,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: - - *742 - - *416 - - *417 + - *743 + - *419 + - *420 responses: '204': description: Response @@ -110317,15 +110358,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: - - *742 + - *743 responses: '200': description: Response content: application/json: - schema: *418 + schema: *421 examples: - default: *419 + default: *422 '403': *27 '404': *6 x-github: @@ -110352,7 +110393,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: - - *742 + - *743 requestBody: required: true content: @@ -110413,7 +110454,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *421 examples: default: value: @@ -110444,7 +110485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *742 + - *743 - *17 - *19 responses: @@ -110454,9 +110495,9 @@ paths: application/json: schema: type: array - items: *257 + items: *260 examples: - response-if-child-teams-exist: *752 + response-if-child-teams-exist: *753 headers: Link: *38 '404': *6 @@ -110489,7 +110530,7 @@ paths: application/json: schema: oneOf: - - &754 + - &755 title: Private User description: Private User type: object @@ -110739,7 +110780,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *753 + - *754 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -110899,7 +110940,7 @@ paths: description: Response content: application/json: - schema: *754 + schema: *755 examples: default: value: @@ -110978,7 +111019,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 '304': *35 '404': *6 '403': *27 @@ -111001,7 +111042,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: - - *248 + - *254 responses: '204': description: If the user is blocked @@ -111029,7 +111070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -111053,7 +111094,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -111102,9 +111143,9 @@ paths: type: integer codespaces: type: array - items: *322 + items: *325 examples: - default: *323 + default: *326 '304': *35 '500': *89 '401': *23 @@ -111243,21 +111284,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111297,7 +111338,7 @@ paths: type: integer secrets: type: array - items: &755 + items: &756 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -111339,7 +111380,7 @@ paths: - visibility - selected_repositories_url examples: - default: *527 + default: *528 headers: Link: *38 x-github: @@ -111411,13 +111452,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: - - *236 + - *242 responses: '200': description: Response content: application/json: - schema: *755 + schema: *756 examples: default: value: @@ -111447,7 +111488,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: - - *236 + - *242 requestBody: required: true content: @@ -111492,7 +111533,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -111520,7 +111561,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: - - *236 + - *242 responses: '204': description: Response @@ -111545,7 +111586,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: - - *236 + - *242 responses: '200': description: Response @@ -111561,9 +111602,9 @@ paths: type: integer repositories: type: array - items: *226 + items: *232 examples: - default: *756 + default: *757 '401': *23 '403': *27 '404': *6 @@ -111588,7 +111629,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: - - *236 + - *242 requestBody: required: true content: @@ -111642,7 +111683,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: - - *236 + - *242 - name: repository_id in: path required: true @@ -111675,7 +111716,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: - - *236 + - *242 - name: repository_id in: path required: true @@ -111707,15 +111748,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '304': *35 '500': *89 '401': *23 @@ -111741,7 +111782,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: - - *324 + - *327 requestBody: required: false content: @@ -111771,9 +111812,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '401': *23 '403': *27 '404': *6 @@ -111795,7 +111836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '202': *37 '304': *35 @@ -111824,13 +111865,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: - - *324 + - *327 responses: '202': description: Response content: application/json: - schema: &757 + schema: &758 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -111883,7 +111924,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &758 + default: &759 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -111915,7 +111956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *324 + - *327 - name: export_id in: path required: true @@ -111928,9 +111969,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '404': *6 x-github: githubCloudOnly: false @@ -111951,7 +111992,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *324 + - *327 responses: '200': description: Response @@ -111967,9 +112008,9 @@ paths: type: integer machines: type: array - items: *526 + items: *527 examples: - default: *759 + default: *760 '304': *35 '500': *89 '401': *23 @@ -111998,7 +112039,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: - - *324 + - *327 requestBody: required: true content: @@ -112054,11 +112095,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *429 + repository: *432 machine: anyOf: - type: 'null' - - *526 + - *527 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -112855,15 +112896,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '304': *35 '500': *89 '400': *14 @@ -112875,7 +112916,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *100 + '409': *106 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112895,15 +112936,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *324 + - *327 responses: '200': description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *525 + default: *526 '500': *89 '401': *23 '403': *27 @@ -112933,9 +112974,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: &771 + default: &772 value: - id: 197 name: hello_docker @@ -113036,7 +113077,7 @@ paths: application/json: schema: type: array - items: &760 + items: &761 title: Email description: Email type: object @@ -113106,9 +113147,9 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: - default: &773 + default: &774 value: - email: octocat@github.com verified: true @@ -113185,7 +113226,7 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: default: value: @@ -113297,7 +113338,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '304': *35 @@ -113330,7 +113371,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 '304': *35 @@ -113352,7 +113393,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: - - *248 + - *254 responses: '204': description: if the person is followed by the authenticated user @@ -113382,7 +113423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -113407,7 +113448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *248 + - *254 responses: '204': description: Response @@ -113443,7 +113484,7 @@ paths: application/json: schema: type: array - items: &761 + items: &762 title: GPG Key description: A unique encryption key type: object @@ -113588,7 +113629,7 @@ paths: - subkeys - revoked examples: - default: &791 + default: &792 value: - id: 3 name: Octocat's GPG Key @@ -113673,9 +113714,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *762 examples: - default: &762 + default: &763 value: id: 3 name: Octocat's GPG Key @@ -113732,7 +113773,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: - - &763 + - &764 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -113744,9 +113785,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *762 examples: - default: *762 + default: *763 '404': *6 '304': *35 '403': *27 @@ -113769,7 +113810,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: - - *763 + - *764 responses: '204': description: Response @@ -113960,7 +114001,7 @@ paths: type: array items: *65 examples: - default: *221 + default: *227 headers: Link: *38 '404': *6 @@ -113985,7 +114026,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *220 + - *226 responses: '204': description: Response @@ -114011,7 +114052,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *220 + - *226 responses: '204': description: Response @@ -114045,12 +114086,12 @@ paths: application/json: schema: anyOf: - - *311 + - *314 - type: object properties: {} additionalProperties: false examples: - default: *312 + default: *315 '204': description: Response when there are no restrictions x-github: @@ -114074,7 +114115,7 @@ paths: required: true content: application/json: - schema: *602 + schema: *603 examples: default: value: @@ -114085,7 +114126,7 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: default: value: @@ -114166,7 +114207,7 @@ paths: - closed - all default: open - - *319 + - *322 - name: sort description: What to sort results by. in: query @@ -114178,8 +114219,8 @@ paths: - updated - comments default: created - - *92 - - *169 + - *98 + - *175 - *17 - *19 responses: @@ -114189,9 +114230,9 @@ paths: application/json: schema: type: array - items: *179 + items: *185 examples: - default: *320 + default: *323 headers: Link: *38 '404': *6 @@ -114224,7 +114265,7 @@ paths: application/json: schema: type: array - items: &764 + items: &765 title: Key description: Key type: object @@ -114327,9 +114368,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: &765 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114362,15 +114403,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: - - *629 + - *630 responses: '200': description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: *765 + default: *766 '404': *6 '304': *35 '403': *27 @@ -114393,7 +114434,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: - - *629 + - *630 responses: '204': description: Response @@ -114426,7 +114467,7 @@ paths: application/json: schema: type: array - items: &766 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -114494,7 +114535,7 @@ paths: - id - type - login - plan: *182 + plan: *188 required: - billing_cycle - next_billing_date @@ -114505,7 +114546,7 @@ paths: - account - plan examples: - default: &767 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -114567,9 +114608,9 @@ paths: application/json: schema: type: array - items: *766 + items: *767 examples: - default: *767 + default: *768 headers: Link: *38 '304': *35 @@ -114609,7 +114650,7 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: default: value: @@ -114717,7 +114758,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: default: value: @@ -114800,7 +114841,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: default: value: @@ -114868,7 +114909,7 @@ paths: application/json: schema: type: array - items: *327 + items: *330 examples: default: value: @@ -115130,7 +115171,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -115310,7 +115351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *328 + - *331 - name: exclude in: query required: false @@ -115323,7 +115364,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -115517,7 +115558,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *328 + - *331 responses: '302': description: Response @@ -115543,7 +115584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *328 + - *331 responses: '204': description: Response @@ -115572,8 +115613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *328 - - *768 + - *331 + - *769 responses: '204': description: Response @@ -115597,7 +115638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *328 + - *331 - *17 - *19 responses: @@ -115607,9 +115648,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '404': *6 @@ -115646,7 +115687,7 @@ paths: type: array items: *60 examples: - default: *769 + default: *770 headers: Link: *38 '304': *35 @@ -115688,7 +115729,7 @@ paths: - docker - nuget - container - - *770 + - *771 - *19 - *17 responses: @@ -115698,10 +115739,10 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 - '400': *772 + default: *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115721,16 +115762,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: - - *335 - - *336 + - *338 + - *339 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: &792 + default: &793 value: id: 40201 name: octo-name @@ -115843,8 +115884,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: - - *335 - - *336 + - *338 + - *339 responses: '204': description: Response @@ -115874,8 +115915,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: - - *335 - - *336 + - *338 + - *339 - name: token description: package token schema: @@ -115907,8 +115948,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: - - *335 - - *336 + - *338 + - *339 - *19 - *17 - name: state @@ -115928,7 +115969,7 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: default: value: @@ -115977,15 +116018,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -116021,9 +116062,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '204': description: Response @@ -116053,9 +116094,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: - - *335 - - *336 - *338 + - *339 + - *341 responses: '204': description: Response @@ -116113,7 +116154,7 @@ paths: description: Response content: application/json: - schema: *349 + schema: *352 examples: default: value: @@ -116185,9 +116226,9 @@ paths: application/json: schema: type: array - items: *760 + items: *761 examples: - default: *773 + default: *774 headers: Link: *38 '304': *35 @@ -116300,7 +116341,7 @@ paths: type: array items: *65 examples: - default: &780 + default: &781 summary: Default response value: - id: 1296269 @@ -116618,9 +116659,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *431 + default: *434 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -116658,9 +116699,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: *774 + default: *775 headers: Link: *38 '304': *35 @@ -116683,12 +116724,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *315 + - *318 responses: '204': description: Response '403': *27 - '409': *100 + '409': *106 '404': *6 '304': *35 x-github: @@ -116706,11 +116747,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *315 + - *318 responses: '204': description: Response - '409': *100 + '409': *106 '304': *35 '404': *6 '403': *27 @@ -116739,7 +116780,7 @@ paths: application/json: schema: type: array - items: &775 + items: &776 title: Social account description: Social media account type: object @@ -116756,7 +116797,7 @@ paths: - provider - url examples: - default: &776 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -116819,9 +116860,9 @@ paths: application/json: schema: type: array - items: *775 + items: *776 examples: - default: *776 + default: *777 '422': *15 '304': *35 '404': *6 @@ -116909,7 +116950,7 @@ paths: application/json: schema: type: array - items: &777 + items: &778 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -116929,7 +116970,7 @@ paths: - title - created_at examples: - default: &793 + default: &794 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116996,9 +117037,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &778 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -117029,7 +117070,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: - - &779 + - &780 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -117041,9 +117082,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *778 + default: *779 '404': *6 '304': *35 '403': *27 @@ -117066,7 +117107,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: - - *779 + - *780 responses: '204': description: Response @@ -117095,7 +117136,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: - - &794 + - &795 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 @@ -117108,7 +117149,7 @@ paths: - created - updated default: created - - *92 + - *98 - *17 - *19 responses: @@ -117120,11 +117161,11 @@ paths: type: array items: *65 examples: - default-response: *780 + default-response: *781 application/vnd.github.v3.star+json: schema: type: array - items: &795 + items: &796 title: Starred Repository description: Starred Repository type: object @@ -117280,8 +117321,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response if this repository is starred by you @@ -117309,8 +117350,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -117334,8 +117375,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: - - *416 - - *417 + - *419 + - *420 responses: '204': description: Response @@ -117368,9 +117409,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 '304': *35 @@ -117407,7 +117448,7 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: default: value: @@ -117485,7 +117526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *184 + - *190 responses: '200': description: Response @@ -117493,10 +117534,10 @@ paths: application/json: schema: oneOf: + - *755 - *754 - - *753 examples: - default-response: &786 + default-response: &787 summary: Default response value: login: octocat @@ -117531,7 +117572,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &787 + response-with-git-hub-plan-information: &788 summary: Response with GitHub plan information value: login: octocat @@ -117591,7 +117632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *781 + - *782 - *17 responses: '200': @@ -117602,7 +117643,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: example: ; rel="next" @@ -117625,8 +117666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *352 - - &782 + - *355 + - &783 name: user_id description: The unique identifier of the user. in: path @@ -117638,9 +117679,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -117662,11 +117703,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *352 - - *782 + - *355 + - *783 - *17 - - *90 - - *91 + - *96 + - *97 responses: '200': description: Response @@ -117674,9 +117715,9 @@ paths: application/json: schema: type: array - items: *353 + items: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -117698,17 +117739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *352 + - *355 + - *784 - *783 - - *782 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 headers: Link: *38 '304': *35 @@ -117731,10 +117772,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: - - *352 - - *782 - - *90 - - *91 + - *355 + - *783 + - *96 + - *97 - *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) @@ -117762,9 +117803,9 @@ paths: application/json: schema: type: array - items: *358 + items: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -117785,8 +117826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *782 - - *352 + - *783 + - *355 requestBody: required: true description: Details of the item to add to the project. @@ -117823,9 +117864,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '304': *35 '403': *27 '401': *23 @@ -117845,9 +117886,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: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -117865,9 +117906,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 headers: Link: *38 '304': *35 @@ -117888,9 +117929,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -117963,9 +118004,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '401': *23 '403': *27 '404': *6 @@ -117985,9 +118026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *352 - - *782 - - *360 + - *355 + - *783 + - *363 responses: '204': description: Response @@ -118016,7 +118057,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *248 + - *254 responses: '200': description: Response @@ -118024,11 +118065,11 @@ paths: application/json: schema: oneOf: + - *755 - *754 - - *753 examples: - default-response: *786 - response-with-git-hub-plan-information: *787 + default-response: *787 + response-with-git-hub-plan-information: *788 '404': *6 x-github: githubCloudOnly: false @@ -118052,9 +118093,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *90 - - *91 - - *248 + - *96 + - *97 + - *254 requestBody: required: true content: @@ -118077,8 +118118,8 @@ paths: required: - subject_digests examples: - default: *788 - withPredicateType: *789 + default: *789 + withPredicateType: *790 responses: '200': description: Response @@ -118132,7 +118173,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *790 + default: *791 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118150,7 +118191,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *248 + - *254 requestBody: required: true content: @@ -118215,7 +118256,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *248 + - *254 - name: subject_digest description: Subject Digest in: path @@ -118246,7 +118287,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *248 + - *254 - name: attestation_id description: Attestation ID in: path @@ -118282,9 +118323,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *90 - - *91 - - *248 + - *96 + - *97 + - *254 - name: subject_digest description: Subject Digest in: path @@ -118334,12 +118375,12 @@ paths: bundle_url: type: string examples: - default: *469 + default: *472 '201': description: Response content: application/json: - schema: *237 + schema: *243 examples: default: value: @@ -118365,7 +118406,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: - - *248 + - *254 responses: '200': description: Response @@ -118373,9 +118414,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 + default: *772 '403': *27 '401': *23 x-github: @@ -118398,7 +118439,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118408,7 +118449,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118479,7 +118520,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *248 + - *254 - *74 - *17 - *19 @@ -118490,7 +118531,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118569,7 +118610,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118579,7 +118620,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -118646,7 +118687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118658,7 +118699,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -118677,7 +118718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118689,7 +118730,7 @@ paths: type: array items: *4 examples: - default: *321 + default: *324 headers: Link: *38 x-github: @@ -118708,7 +118749,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: - - *248 + - *254 - name: target_user in: path required: true @@ -118735,8 +118776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *248 - - *169 + - *254 + - *175 - *17 - *19 responses: @@ -118746,9 +118787,9 @@ paths: application/json: schema: type: array - items: *170 + items: *176 examples: - default: *171 + default: *177 headers: Link: *38 '422': *15 @@ -118769,7 +118810,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: - - *248 + - *254 - *17 - *19 responses: @@ -118779,9 +118820,9 @@ paths: application/json: schema: type: array - items: *761 + items: *762 examples: - default: *791 + default: *792 headers: Link: *38 x-github: @@ -118805,7 +118846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *248 + - *254 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -118877,7 +118918,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: - - *248 + - *254 responses: '200': description: Response @@ -118885,7 +118926,7 @@ paths: application/json: schema: *20 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118903,7 +118944,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118959,7 +119000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -118971,7 +119012,7 @@ paths: type: array items: *60 examples: - default: *769 + default: *770 headers: Link: *38 x-github: @@ -119010,8 +119051,8 @@ paths: - docker - nuget - container - - *770 - - *248 + - *771 + - *254 - *19 - *17 responses: @@ -119021,12 +119062,12 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *771 + default: *772 '403': *27 '401': *23 - '400': *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119046,17 +119087,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *792 + default: *793 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119077,9 +119118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '204': description: Response @@ -119111,9 +119152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 - name: token description: package token schema: @@ -119145,9 +119186,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: - - *335 - - *336 - - *248 + - *338 + - *339 + - *254 responses: '200': description: Response @@ -119155,7 +119196,7 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: default: value: @@ -119213,16 +119254,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: - - *335 - - *336 - *338 - - *248 + - *339 + - *341 + - *254 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: default: value: @@ -119257,10 +119298,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *335 - - *336 - - *248 - *338 + - *339 + - *254 + - *341 responses: '204': description: Response @@ -119292,10 +119333,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *335 - - *336 - - *248 - *338 + - *339 + - *254 + - *341 responses: '204': description: Response @@ -119321,7 +119362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-user-projects parameters: - - *248 + - *254 - name: state description: Indicates the state of the projects to return. in: query @@ -119342,7 +119383,7 @@ paths: application/json: schema: type: array - items: *349 + items: *352 examples: default: value: @@ -119400,15 +119441,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *248 + - *254 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *90 - - *91 + - *96 + - *97 - *17 responses: '200': @@ -119417,9 +119458,9 @@ paths: application/json: schema: type: array - items: *350 + items: *353 examples: - default: *351 + default: *354 headers: Link: *38 '304': *35 @@ -119446,7 +119487,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: - - *248 + - *254 - *17 - *19 responses: @@ -119456,7 +119497,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -119535,7 +119576,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: - - *248 + - *254 - *17 - *19 responses: @@ -119545,7 +119586,7 @@ paths: application/json: schema: type: array - items: *190 + items: *196 examples: default: value: @@ -119622,7 +119663,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *248 + - *254 - name: type description: Limit results to repositories of the specified type. in: query @@ -119665,9 +119706,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -119691,15 +119732,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119721,15 +119762,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119751,15 +119792,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: - - *248 + - *254 responses: '200': description: Response content: application/json: - schema: *391 + schema: *394 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119779,11 +119820,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: - - *248 - - *195 - - *196 - - *197 - - *198 + - *254 + - *201 + - *202 + - *203 + - *204 responses: '200': description: Response when getting a billing usage report @@ -119854,7 +119895,7 @@ paths: '400': *14 '403': *27 '500': *89 - '503': *156 + '503': *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -119872,7 +119913,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: - - *248 + - *254 - *17 - *19 responses: @@ -119882,9 +119923,9 @@ paths: application/json: schema: type: array - items: *775 + items: *776 examples: - default: *776 + default: *777 headers: Link: *38 x-github: @@ -119904,7 +119945,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: - - *248 + - *254 - *17 - *19 responses: @@ -119914,9 +119955,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *793 + default: *794 headers: Link: *38 x-github: @@ -119940,9 +119981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *248 - - *794 - - *92 + - *254 + - *795 + - *98 - *17 - *19 responses: @@ -119953,11 +119994,11 @@ paths: schema: anyOf: - type: array - items: *795 + items: *796 - type: array items: *65 examples: - default-response: *780 + default-response: *781 headers: Link: *38 x-github: @@ -119976,7 +120017,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *248 + - *254 - *17 - *19 responses: @@ -119986,9 +120027,9 @@ paths: application/json: schema: type: array - items: *226 + items: *232 examples: - default: *339 + default: *342 headers: Link: *38 x-github: @@ -120117,7 +120158,7 @@ webhooks: type: string enum: - disabled - enterprise: &796 + enterprise: &797 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120186,7 +120227,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &797 + installation: &798 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120207,7 +120248,7 @@ webhooks: required: - id - node_id - organization: &798 + organization: &799 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120280,7 +120321,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &799 + repository: &800 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -120309,7 +120350,7 @@ webhooks: license: anyOf: - type: 'null' - - *180 + - *186 organization: anyOf: - type: 'null' @@ -121193,10 +121234,10 @@ webhooks: type: string enum: - enabled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -121272,11 +121313,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: &800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: &801 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) @@ -121499,11 +121540,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: *800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: *801 sender: *4 required: - action @@ -121691,11 +121732,11 @@ webhooks: - everyone required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - rule: *800 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + rule: *801 sender: *4 required: - action @@ -121766,7 +121807,7 @@ webhooks: required: true content: application/json: - schema: &803 + schema: &804 title: Exemption request cancellation event type: object properties: @@ -121774,11 +121815,11 @@ webhooks: type: string enum: - cancelled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: &801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: &802 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -122016,7 +122057,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &802 + items: &803 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -122126,7 +122167,7 @@ webhooks: required: true content: application/json: - schema: &804 + schema: &805 title: Exemption request completed event type: object properties: @@ -122134,11 +122175,11 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 sender: *4 required: - action @@ -122208,7 +122249,7 @@ webhooks: required: true content: application/json: - schema: &805 + schema: &806 title: Exemption request created event type: object properties: @@ -122216,11 +122257,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 sender: *4 required: - action @@ -122290,7 +122331,7 @@ webhooks: required: true content: application/json: - schema: &806 + schema: &807 title: Exemption response dismissed event type: object properties: @@ -122298,12 +122339,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 - exemption_response: *802 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 + exemption_response: *803 sender: *4 required: - action @@ -122375,7 +122416,7 @@ webhooks: required: true content: application/json: - schema: &807 + schema: &808 title: Exemption response submitted event type: object properties: @@ -122383,12 +122424,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - exemption_request: *801 - exemption_response: *802 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + exemption_request: *802 + exemption_response: *803 sender: *4 required: - action @@ -122461,7 +122502,7 @@ webhooks: required: true content: application/json: - schema: *803 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122528,7 +122569,7 @@ webhooks: required: true content: application/json: - schema: *804 + schema: *805 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122595,7 +122636,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122662,7 +122703,7 @@ webhooks: required: true content: application/json: - schema: *806 + schema: *807 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122730,7 +122771,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -122808,7 +122849,7 @@ webhooks: type: string enum: - completed - check_run: &809 + check_run: &810 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122873,8 +122914,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *488 - repository: *226 + items: *489 + repository: *232 status: type: string enum: @@ -122918,7 +122959,7 @@ webhooks: - examples: - neutral - deployment: *808 + deployment: *809 details_url: type: string examples: @@ -122978,7 +123019,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *488 + items: *489 started_at: type: string format: date-time @@ -123016,10 +123057,10 @@ webhooks: - output - app - pull_requests - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -123412,11 +123453,11 @@ webhooks: type: string enum: - created - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -123812,11 +123853,11 @@ webhooks: type: string enum: - requested_action - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 requested_action: description: The action requested by the user. type: object @@ -124221,11 +124262,11 @@ webhooks: type: string enum: - rerequested - check_run: *809 - installation: *797 - enterprise: *796 - organization: *798 - repository: *799 + check_run: *810 + installation: *798 + enterprise: *797 + organization: *799 + repository: *800 sender: *4 required: - check_run @@ -125217,10 +125258,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -125905,10 +125946,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -126587,10 +126628,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -126756,7 +126797,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -126908,20 +126949,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &810 + commit_oid: &811 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: *796 - installation: *797 - organization: *798 - ref: &811 + enterprise: *797 + installation: *798 + organization: *799 + ref: &812 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: *799 + repository: *800 sender: *4 required: - action @@ -127085,7 +127126,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127326,12 +127367,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -127429,7 +127470,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -127611,12 +127652,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -127782,7 +127823,7 @@ webhooks: required: - login - id - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -127959,12 +128000,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -128064,7 +128105,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128244,9 +128285,9 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -128254,7 +128295,7 @@ webhooks: type: - string - 'null' - repository: *799 + repository: *800 sender: *4 required: - action @@ -128350,7 +128391,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *500 + dismissed_comment: *501 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128497,12 +128538,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *810 - enterprise: *796 - installation: *797 - organization: *798 - ref: *811 - repository: *799 + commit_oid: *811 + enterprise: *797 + installation: *798 + organization: *799 + ref: *812 + repository: *800 sender: *4 required: - action @@ -128764,10 +128805,10 @@ webhooks: - updated_at - author_association - body - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -128848,18 +128889,18 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *798 - pusher_type: &812 + organization: *799 + pusher_type: &813 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &813 + ref: &814 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -128869,7 +128910,7 @@ webhooks: enum: - tag - branch - repository: *799 + repository: *800 sender: *4 required: - ref @@ -128951,10 +128992,10 @@ webhooks: type: string enum: - created - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129039,9 +129080,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129118,10 +129159,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129198,10 +129239,10 @@ webhooks: type: string enum: - updated - definition: *118 - enterprise: *796 - installation: *797 - organization: *798 + definition: *124 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -129278,19 +129319,19 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - repository: *799 - organization: *798 + enterprise: *797 + installation: *798 + repository: *800 + organization: *799 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *362 + items: *365 old_property_values: type: array description: The old custom property values for the repository. - items: *362 + items: *365 required: - action - repository @@ -129366,18 +129407,18 @@ webhooks: title: delete event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - pusher_type: *812 - ref: *813 + enterprise: *797 + installation: *798 + organization: *799 + pusher_type: *813 + ref: *814 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *799 + repository: *800 sender: *4 required: - ref @@ -129461,11 +129502,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129549,11 +129590,11 @@ webhooks: type: string enum: - auto_reopened - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129637,11 +129678,11 @@ webhooks: type: string enum: - created - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129723,11 +129764,11 @@ webhooks: type: string enum: - dismissed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129809,11 +129850,11 @@ webhooks: type: string enum: - fixed - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129896,11 +129937,11 @@ webhooks: type: string enum: - reintroduced - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -129982,11 +130023,11 @@ webhooks: type: string enum: - reopened - alert: *551 - installation: *797 - organization: *798 - enterprise: *796 - repository: *799 + alert: *552 + installation: *798 + organization: *799 + enterprise: *797 + repository: *800 sender: *4 required: - action @@ -130063,9 +130104,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - key: &814 + enterprise: *797 + installation: *798 + key: &815 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130103,8 +130144,8 @@ webhooks: - verified - created_at - read_only - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -130181,11 +130222,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - key: *814 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + key: *815 + organization: *799 + repository: *800 sender: *4 required: - action @@ -130757,12 +130798,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: &818 + workflow: &819 title: Workflow type: - object @@ -131500,13 +131541,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *557 + deployment: *558 pull_requests: type: array - items: *647 - repository: *799 - organization: *798 - installation: *797 + items: *648 + repository: *800 + organization: *799 + installation: *798 sender: *4 responses: '200': @@ -131577,7 +131618,7 @@ webhooks: type: string enum: - approved - approver: &815 + approver: &816 type: object properties: avatar_url: @@ -131620,11 +131661,11 @@ webhooks: type: string comment: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - reviewers: &816 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + reviewers: &817 type: array items: type: object @@ -131705,7 +131746,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &817 + workflow_job_run: &818 type: object properties: conclusion: @@ -132451,18 +132492,18 @@ webhooks: type: string enum: - rejected - approver: *815 + approver: *816 comment: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - reviewers: *816 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + reviewers: *817 sender: *4 since: type: string - workflow_job_run: *817 + workflow_job_run: *818 workflow_job_runs: type: array items: @@ -133179,13 +133220,13 @@ webhooks: type: string enum: - requested - enterprise: *796 + enterprise: *797 environment: type: string - installation: *797 - organization: *798 - repository: *799 - requestor: &823 + installation: *798 + organization: *799 + repository: *800 + requestor: &824 title: User type: - object @@ -135128,12 +135169,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Deployment Workflow Run type: @@ -135824,7 +135865,7 @@ webhooks: type: string enum: - answered - answer: &821 + answer: &822 type: object properties: author_association: @@ -135984,7 +136025,7 @@ webhooks: - created_at - updated_at - body - discussion: &819 + discussion: &820 title: Discussion description: A Discussion in a repository. type: object @@ -136280,7 +136321,7 @@ webhooks: - id labels: type: array - items: *612 + items: *613 required: - repository_url - category @@ -136302,10 +136343,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136432,11 +136473,11 @@ webhooks: - from required: - category - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136519,11 +136560,11 @@ webhooks: type: string enum: - closed - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136605,7 +136646,7 @@ webhooks: type: string enum: - created - comment: &820 + comment: &821 type: object properties: author_association: @@ -136765,11 +136806,11 @@ webhooks: - updated_at - body - reactions - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136852,12 +136893,12 @@ webhooks: type: string enum: - deleted - comment: *820 - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + comment: *821 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -136952,12 +136993,12 @@ webhooks: - from required: - body - comment: *820 - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + comment: *821 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137041,11 +137082,11 @@ webhooks: type: string enum: - created - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137127,11 +137168,11 @@ webhooks: type: string enum: - deleted - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137231,11 +137272,11 @@ webhooks: type: string required: - from - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137317,10 +137358,10 @@ webhooks: type: string enum: - labeled - discussion: *819 - enterprise: *796 - installation: *797 - label: &822 + discussion: *820 + enterprise: *797 + installation: *798 + label: &823 title: Label type: object properties: @@ -137353,8 +137394,8 @@ webhooks: - color - default - description - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137437,11 +137478,11 @@ webhooks: type: string enum: - locked - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137523,11 +137564,11 @@ webhooks: type: string enum: - pinned - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137609,11 +137650,11 @@ webhooks: type: string enum: - reopened - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137698,16 +137739,16 @@ webhooks: changes: type: object properties: - new_discussion: *819 - new_repository: *799 + new_discussion: *820 + new_repository: *800 required: - new_discussion - new_repository - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137790,10 +137831,10 @@ webhooks: type: string enum: - unanswered - discussion: *819 - old_answer: *821 - organization: *798 - repository: *799 + discussion: *820 + old_answer: *822 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137875,12 +137916,12 @@ webhooks: type: string enum: - unlabeled - discussion: *819 - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -137963,11 +138004,11 @@ webhooks: type: string enum: - unlocked - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -138049,11 +138090,11 @@ webhooks: type: string enum: - unpinned - discussion: *819 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + discussion: *820 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -138122,7 +138163,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138185,7 +138226,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138251,7 +138292,7 @@ webhooks: required: true content: application/json: - schema: *803 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138317,7 +138358,7 @@ webhooks: required: true content: application/json: - schema: *804 + schema: *805 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138383,7 +138424,7 @@ webhooks: required: true content: application/json: - schema: *805 + schema: *806 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138449,7 +138490,7 @@ webhooks: required: true content: application/json: - schema: *806 + schema: *807 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138515,7 +138556,7 @@ webhooks: required: true content: application/json: - schema: *807 + schema: *808 responses: '200': description: Return a 200 status to indicate that the data was received @@ -138582,7 +138623,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *796 + enterprise: *797 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -139260,9 +139301,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - forkee @@ -139408,9 +139449,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pages: description: The pages that were updated. type: array @@ -139448,7 +139489,7 @@ webhooks: - action - sha - html_url - repository: *799 + repository: *800 sender: *4 required: - pages @@ -139524,10 +139565,10 @@ webhooks: type: string enum: - created - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: &824 + organization: *799 + repositories: &825 description: An array of repository objects that the installation can access. type: array @@ -139553,8 +139594,8 @@ webhooks: - name - full_name - private - repository: *799 - requester: *823 + repository: *800 + requester: *824 sender: *4 required: - action @@ -139629,11 +139670,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -139710,11 +139751,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -139791,10 +139832,10 @@ webhooks: type: string enum: - added - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories_added: &825 + organization: *799 + repositories_added: &826 description: An array of repository objects, which were added to the installation. type: array @@ -139840,15 +139881,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *799 - repository_selection: &826 + repository: *800 + repository_selection: &827 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *823 + requester: *824 sender: *4 required: - action @@ -139927,10 +139968,10 @@ webhooks: type: string enum: - removed - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories_added: *825 + organization: *799 + repositories_added: *826 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139957,9 +139998,9 @@ webhooks: - name - full_name - private - repository: *799 - repository_selection: *826 - requester: *823 + repository: *800 + repository_selection: *827 + requester: *824 sender: *4 required: - action @@ -140038,11 +140079,11 @@ webhooks: type: string enum: - suspend - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -140225,10 +140266,10 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 target_type: type: string @@ -140307,11 +140348,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *796 + enterprise: *797 installation: *20 - organization: *798 - repositories: *824 - repository: *799 + organization: *799 + repositories: *825 + repository: *800 requester: type: - 'null' @@ -140559,8 +140600,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -141377,8 +141418,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141395,7 +141436,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -141739,8 +141780,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -141820,7 +141861,7 @@ webhooks: type: string enum: - deleted - comment: &827 + comment: &828 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -141987,8 +142028,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -142801,8 +142842,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142819,7 +142860,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -143165,8 +143206,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -143246,7 +143287,7 @@ webhooks: type: string enum: - edited - changes: &851 + changes: &852 description: The changes to the comment. type: object properties: @@ -143258,9 +143299,9 @@ webhooks: type: string required: - from - comment: *827 - enterprise: *796 - installation: *797 + comment: *828 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144076,8 +144117,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144094,7 +144135,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -144438,8 +144479,8 @@ webhooks: - state - locked - assignee - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144523,15 +144564,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 + blocking_issue: *185 blocking_issue_repo: *65 - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144619,15 +144660,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 + blocking_issue: *185 blocking_issue_repo: *65 - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144714,15 +144755,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocked_issue_repo: *65 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 - installation: *797 - organization: *798 - repository: *799 + blocking_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144810,15 +144851,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *179 + blocked_issue: *185 blocked_issue_repo: *65 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *179 - installation: *797 - organization: *798 - repository: *799 + blocking_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -144903,10 +144944,10 @@ webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *796 - installation: *797 - issue: &830 + assignee: *824 + enterprise: *797 + installation: *798 + issue: &831 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -145718,11 +145759,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145739,7 +145780,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -145842,8 +145883,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -145923,8 +145964,8 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -146741,11 +146782,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146762,7 +146803,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -147008,8 +147049,8 @@ webhooks: required: - state - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -147088,8 +147129,8 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147897,11 +147938,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147918,7 +147959,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -148020,8 +148061,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -148100,8 +148141,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148932,11 +148973,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148953,7 +148994,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -149034,7 +149075,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &828 + milestone: &829 title: Milestone description: A collection of related issues and pull requests. type: object @@ -149177,8 +149218,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -149277,8 +149318,8 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -150090,11 +150131,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150108,7 +150149,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -150214,9 +150255,9 @@ webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *798 - repository: *799 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -150296,8 +150337,8 @@ webhooks: type: string enum: - labeled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151108,11 +151149,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151126,7 +151167,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -151232,9 +151273,9 @@ webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *798 - repository: *799 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -151314,8 +151355,8 @@ webhooks: type: string enum: - locked - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152151,11 +152192,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152169,7 +152210,7 @@ webhooks: timeline_url: type: string format: uri - type: *316 + type: *319 title: description: Title of the issue type: string @@ -152252,8 +152293,8 @@ webhooks: format: uri user_view_type: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -152332,8 +152373,8 @@ webhooks: type: string enum: - milestoned - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153163,11 +153204,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153184,7 +153225,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -153264,9 +153305,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *828 - organization: *798 - repository: *799 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -154158,11 +154199,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154258,7 +154299,7 @@ webhooks: required: - login - id - type: *316 + type: *319 required: - id - number @@ -154739,8 +154780,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155552,11 +155593,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155573,7 +155614,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -155675,8 +155716,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -155756,9 +155797,9 @@ webhooks: type: string enum: - pinned - enterprise: *796 - installation: *797 - issue: &829 + enterprise: *797 + installation: *798 + issue: &830 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -156564,11 +156605,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156585,7 +156626,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -156687,8 +156728,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -156767,8 +156808,8 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157602,11 +157643,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157703,9 +157744,9 @@ webhooks: format: uri user_view_type: type: string - type: *316 - organization: *798 - repository: *799 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -158594,11 +158635,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158615,7 +158656,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -159197,11 +159238,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *796 - installation: *797 - issue: *829 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *830 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159281,12 +159322,12 @@ webhooks: type: string enum: - typed - enterprise: *796 - installation: *797 - issue: *830 - type: *316 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159367,7 +159408,7 @@ webhooks: type: string enum: - unassigned - assignee: &854 + assignee: &855 title: User type: - object @@ -159439,11 +159480,11 @@ webhooks: required: - login - id - enterprise: *796 - installation: *797 - issue: *830 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159522,12 +159563,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *796 - installation: *797 - issue: *830 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -159607,8 +159648,8 @@ webhooks: type: string enum: - unlocked - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160442,11 +160483,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *739 - issue_dependencies_summary: *740 + sub_issues_summary: *740 + issue_dependencies_summary: *741 issue_field_values: type: array - items: *741 + items: *742 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160463,7 +160504,7 @@ webhooks: title: description: Title of the issue type: string - type: *316 + type: *319 updated_at: type: string format: date-time @@ -160543,8 +160584,8 @@ webhooks: format: uri user_view_type: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160624,11 +160665,11 @@ webhooks: type: string enum: - unpinned - enterprise: *796 - installation: *797 - issue: *829 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *830 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160707,12 +160748,12 @@ webhooks: type: string enum: - untyped - enterprise: *796 - installation: *797 - issue: *830 - type: *316 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + issue: *831 + type: *319 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160792,11 +160833,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160874,11 +160915,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -160988,11 +161029,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - label: *822 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + label: *823 + organization: *799 + repository: *800 sender: *4 required: - action @@ -161074,9 +161115,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: &831 + enterprise: *797 + installation: *798 + marketplace_purchase: &832 title: Marketplace Purchase type: object required: @@ -161164,8 +161205,8 @@ webhooks: type: integer unit_count: type: integer - organization: *798 - previous_marketplace_purchase: &832 + organization: *799 + previous_marketplace_purchase: &833 title: Marketplace Purchase type: object properties: @@ -161249,7 +161290,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161329,10 +161370,10 @@ webhooks: - changed effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -161420,7 +161461,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161502,10 +161543,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -161591,7 +161632,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *799 + repository: *800 sender: *4 required: - action @@ -161672,8 +161713,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 marketplace_purchase: title: Marketplace Purchase type: object @@ -161759,9 +161800,9 @@ webhooks: type: integer unit_count: type: integer - organization: *798 - previous_marketplace_purchase: *832 - repository: *799 + organization: *799 + previous_marketplace_purchase: *833 + repository: *800 sender: *4 required: - action @@ -161841,12 +161882,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *796 - installation: *797 - marketplace_purchase: *831 - organization: *798 - previous_marketplace_purchase: *832 - repository: *799 + enterprise: *797 + installation: *798 + marketplace_purchase: *832 + organization: *799 + previous_marketplace_purchase: *833 + repository: *800 sender: *4 required: - action @@ -161948,11 +161989,11 @@ webhooks: type: string required: - to - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162054,11 +162095,11 @@ webhooks: type: - string - 'null' - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162137,11 +162178,11 @@ webhooks: type: string enum: - removed - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162219,11 +162260,11 @@ webhooks: type: string enum: - added - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 scope: description: The scope of the membership. Currently, can only be `team`. @@ -162301,7 +162342,7 @@ webhooks: required: - login - id - team: &833 + team: &834 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -162494,11 +162535,11 @@ webhooks: type: string enum: - removed - enterprise: *796 - installation: *797 - member: *823 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + member: *824 + organization: *799 + repository: *800 scope: description: The scope of the membership. Currently, can only be `team`. @@ -162577,7 +162618,7 @@ webhooks: required: - login - id - team: *833 + team: *834 required: - action - scope @@ -162659,8 +162700,8 @@ webhooks: type: string enum: - checks_requested - installation: *797 - merge_group: &834 + installation: *798 + merge_group: &835 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -162679,15 +162720,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *492 + head_commit: *493 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162773,10 +162814,10 @@ webhooks: - merged - invalidated - dequeued - installation: *797 - merge_group: *834 - organization: *798 - repository: *799 + installation: *798 + merge_group: *835 + organization: *799 + repository: *800 sender: *4 required: - action @@ -162849,7 +162890,7 @@ webhooks: type: string enum: - deleted - enterprise: *796 + enterprise: *797 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -162958,12 +162999,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *797 - organization: *798 + installation: *798 + organization: *799 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -163043,11 +163084,11 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163126,9 +163167,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - milestone: &835 + enterprise: *797 + installation: *798 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -163270,8 +163311,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163350,11 +163391,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163464,11 +163505,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - milestone: *828 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *829 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163548,11 +163589,11 @@ webhooks: type: string enum: - opened - enterprise: *796 - installation: *797 - milestone: *835 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + milestone: *836 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163631,11 +163672,11 @@ webhooks: type: string enum: - blocked - blocked_user: *823 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + blocked_user: *824 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163714,11 +163755,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *823 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + blocked_user: *824 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163797,9 +163838,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - membership: &836 + enterprise: *797 + installation: *798 + membership: &837 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -163909,8 +163950,8 @@ webhooks: - role - organization_url - user - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 required: - action @@ -163988,11 +164029,11 @@ webhooks: type: string enum: - member_added - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164071,8 +164112,8 @@ webhooks: type: string enum: - member_invited - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -164194,10 +164235,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 - user: *823 + user: *824 required: - action - invitation @@ -164275,11 +164316,11 @@ webhooks: type: string enum: - member_removed - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164366,11 +164407,11 @@ webhooks: properties: from: type: string - enterprise: *796 - installation: *797 - membership: *836 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + membership: *837 + organization: *799 + repository: *800 sender: *4 required: - action @@ -164446,9 +164487,9 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 package: description: Information about the package. type: object @@ -164971,7 +165012,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &837 + items: &838 title: Ruby Gems metadata type: object properties: @@ -165068,7 +165109,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -165144,9 +165185,9 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 package: description: Information about the package. type: object @@ -165508,7 +165549,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 source_url: type: string format: uri @@ -165579,7 +165620,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -165760,12 +165801,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *796 + enterprise: *797 id: type: integer - installation: *797 - organization: *798 - repository: *799 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - id @@ -165842,7 +165883,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &838 + personal_access_token_request: &839 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -165992,10 +166033,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *796 - organization: *798 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166072,11 +166113,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *838 - enterprise: *796 - organization: *798 + personal_access_token_request: *839 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166152,11 +166193,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *838 - enterprise: *796 - organization: *798 + personal_access_token_request: *839 + enterprise: *797 + organization: *799 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166231,11 +166272,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *838 - organization: *798 - enterprise: *796 + personal_access_token_request: *839 + organization: *799 + enterprise: *797 sender: *4 - installation: *797 + installation: *798 required: - action - personal_access_token_request @@ -166340,7 +166381,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *839 + last_response: *840 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -166372,8 +166413,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 zen: description: Random string of GitHub zen. @@ -166618,10 +166659,10 @@ webhooks: - from required: - note - enterprise: *796 - installation: *797 - organization: *798 - project_card: &840 + enterprise: *797 + installation: *798 + organization: *799 + project_card: &841 title: Project Card type: object properties: @@ -166744,7 +166785,7 @@ webhooks: - creator - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -166825,11 +166866,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project_card: *840 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_card: *841 + repository: *800 sender: *4 required: - action @@ -166909,9 +166950,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 project_card: title: Project Card type: object @@ -167041,7 +167082,7 @@ webhooks: repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -167135,11 +167176,11 @@ webhooks: - from required: - note - enterprise: *796 - installation: *797 - organization: *798 - project_card: *840 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_card: *841 + repository: *800 sender: *4 required: - action @@ -167233,9 +167274,9 @@ webhooks: - from required: - column_id - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 project_card: allOf: - title: Project Card @@ -167432,7 +167473,7 @@ webhooks: type: string required: - after_id - repository: *799 + repository: *800 sender: *4 required: - action @@ -167512,10 +167553,10 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - organization: *798 - project: &842 + enterprise: *797 + installation: *798 + organization: *799 + project: &843 title: Project type: object properties: @@ -167642,7 +167683,7 @@ webhooks: - creator - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -167722,10 +167763,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project_column: &841 + enterprise: *797 + installation: *798 + organization: *799 + project_column: &842 title: Project Column type: object properties: @@ -167765,7 +167806,7 @@ webhooks: - name - created_at - updated_at - repository: *799 + repository: *800 sender: *4 required: - action @@ -167844,14 +167885,14 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -167940,11 +167981,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 + repository: *800 sender: *4 required: - action @@ -168024,11 +168065,11 @@ webhooks: type: string enum: - moved - enterprise: *796 - installation: *797 - organization: *798 - project_column: *841 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project_column: *842 + repository: *800 sender: *4 required: - action @@ -168108,11 +168149,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168192,14 +168233,14 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - project: *842 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 repository: anyOf: - type: 'null' - - *799 + - *800 sender: *4 required: - action @@ -168300,11 +168341,11 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168383,11 +168424,11 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 - organization: *798 - project: *842 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + project: *843 + repository: *800 sender: *4 required: - action @@ -168468,9 +168509,9 @@ webhooks: type: string enum: - closed - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168551,9 +168592,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168634,9 +168675,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168757,9 +168798,9 @@ webhooks: type: string to: type: string - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -168842,7 +168883,7 @@ webhooks: type: string enum: - archived - changes: &846 + changes: &847 type: object properties: archived_at: @@ -168858,9 +168899,9 @@ webhooks: - string - 'null' format: date-time - installation: *797 - organization: *798 - projects_v2_item: &843 + installation: *798 + organization: *799 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -168878,7 +168919,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *357 + content_type: *360 creator: *4 created_at: type: string @@ -169000,9 +169041,9 @@ webhooks: - 'null' to: type: string - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169084,9 +169125,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169167,9 +169208,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169274,7 +169315,7 @@ webhooks: oneOf: - type: string - type: integer - - &844 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -169298,7 +169339,7 @@ webhooks: required: - id - name - - &845 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -169338,8 +169379,8 @@ webhooks: oneOf: - type: string - type: integer - - *844 - *845 + - *846 type: - 'null' - string @@ -169362,9 +169403,9 @@ webhooks: - 'null' required: - body - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169461,9 +169502,9 @@ webhooks: type: - string - 'null' - installation: *797 - organization: *798 - projects_v2_item: *843 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169546,10 +169587,10 @@ webhooks: type: string enum: - restored - changes: *846 - installation: *797 - organization: *798 - projects_v2_item: *843 + changes: *847 + installation: *798 + organization: *799 + projects_v2_item: *844 sender: *4 required: - action @@ -169631,9 +169672,9 @@ webhooks: type: string enum: - reopened - installation: *797 - organization: *798 - projects_v2: *350 + installation: *798 + organization: *799 + projects_v2: *353 sender: *4 required: - action @@ -169714,9 +169755,9 @@ webhooks: type: string enum: - created - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -169797,9 +169838,9 @@ webhooks: type: string enum: - deleted - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -169945,9 +169986,9 @@ webhooks: - string - 'null' format: date - installation: *797 - organization: *798 - projects_v2_status_update: *847 + installation: *798 + organization: *799 + projects_v2_status_update: *848 sender: *4 required: - action @@ -170018,10 +170059,10 @@ webhooks: title: public event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - repository @@ -170098,13 +170139,13 @@ webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *796 - installation: *797 - number: &848 + assignee: *824 + enterprise: *797 + installation: *798 + number: &849 description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -172453,7 +172494,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -172535,11 +172576,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -174881,7 +174922,7 @@ webhooks: - draft reason: type: string - repository: *799 + repository: *800 sender: *4 required: - action @@ -174963,11 +175004,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -177309,7 +177350,7 @@ webhooks: - draft reason: type: string - repository: *799 + repository: *800 sender: *4 required: - action @@ -177391,13 +177432,13 @@ webhooks: type: string enum: - closed - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: &849 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: &850 allOf: - - *647 + - *648 - type: object properties: allow_auto_merge: @@ -177459,7 +177500,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *799 + repository: *800 sender: *4 required: - action @@ -177540,12 +177581,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -177625,11 +177666,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *796 - milestone: *355 - number: *848 - organization: *798 - pull_request: &850 + enterprise: *797 + milestone: *358 + number: *849 + organization: *799 + pull_request: &851 title: Pull Request type: object properties: @@ -179956,7 +179997,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -180035,11 +180076,11 @@ webhooks: type: string enum: - dequeued - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -182385,7 +182426,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *799 + repository: *800 sender: *4 required: - action @@ -182509,12 +182550,12 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -182594,11 +182635,11 @@ webhooks: type: string enum: - enqueued - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -184929,7 +184970,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -185009,11 +185050,11 @@ webhooks: type: string enum: - labeled - enterprise: *796 - installation: *797 - label: *822 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + label: *823 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -187361,7 +187402,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -187442,10 +187483,10 @@ webhooks: type: string enum: - locked - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -189791,7 +189832,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -189871,12 +189912,12 @@ webhooks: type: string enum: - milestoned - enterprise: *796 - milestone: *355 - number: *848 - organization: *798 - pull_request: *850 - repository: *799 + enterprise: *797 + milestone: *358 + number: *849 + organization: *799 + pull_request: *851 + repository: *800 sender: *4 required: - action @@ -189955,12 +189996,12 @@ webhooks: type: string enum: - opened - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190041,12 +190082,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190126,12 +190167,12 @@ webhooks: type: string enum: - reopened - enterprise: *796 - installation: *797 - number: *848 - organization: *798 - pull_request: *849 - repository: *799 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 + pull_request: *850 + repository: *800 sender: *4 required: - action @@ -190506,9 +190547,9 @@ webhooks: - start_side - side - reactions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -192738,7 +192779,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -192818,7 +192859,7 @@ webhooks: type: string enum: - deleted - comment: &852 + comment: &853 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. @@ -193111,9 +193152,9 @@ webhooks: - start_side - side - reactions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -195331,7 +195372,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -195411,11 +195452,11 @@ webhooks: type: string enum: - edited - changes: *851 - comment: *852 - enterprise: *796 - installation: *797 - organization: *798 + changes: *852 + comment: *853 + enterprise: *797 + installation: *798 + organization: *799 pull_request: type: object properties: @@ -197636,7 +197677,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *799 + repository: *800 sender: *4 required: - action @@ -197717,9 +197758,9 @@ webhooks: type: string enum: - dismissed - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -199952,7 +199993,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 review: description: The review that was affected. type: object @@ -200203,9 +200244,9 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -202319,8 +202360,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 - review: &853 + repository: *800 + review: &854 description: The review that was affected. type: object properties: @@ -202558,12 +202599,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -204910,7 +204951,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_reviewer: title: User type: @@ -204996,12 +205037,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -207355,7 +207396,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207550,12 +207591,12 @@ webhooks: type: string enum: - review_requested - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -209904,7 +209945,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_reviewer: title: User type: @@ -209991,12 +210032,12 @@ webhooks: type: string enum: - review_requested - enterprise: *796 - installation: *797 + enterprise: *797 + installation: *798 number: description: The pull request number. type: integer - organization: *798 + organization: *799 pull_request: title: Pull Request type: object @@ -212336,7 +212377,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212520,9 +212561,9 @@ webhooks: type: string enum: - submitted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -214758,8 +214799,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 - review: *853 + repository: *800 + review: *854 sender: *4 required: - action @@ -214839,9 +214880,9 @@ webhooks: type: string enum: - resolved - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -216972,7 +217013,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 sender: *4 thread: type: object @@ -217369,9 +217410,9 @@ webhooks: type: string enum: - unresolved - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 pull_request: title: Simple Pull Request type: object @@ -219485,7 +219526,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *799 + repository: *800 sender: *4 thread: type: object @@ -219884,10 +219925,10 @@ webhooks: type: string before: type: string - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -222222,7 +222263,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -222304,11 +222345,11 @@ webhooks: type: string enum: - unassigned - assignee: *854 - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + assignee: *855 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -224658,7 +224699,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -224737,11 +224778,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *796 - installation: *797 - label: *822 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + label: *823 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -227080,7 +227121,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -227161,10 +227202,10 @@ webhooks: type: string enum: - unlocked - enterprise: *796 - installation: *797 - number: *848 - organization: *798 + enterprise: *797 + installation: *798 + number: *849 + organization: *799 pull_request: title: Pull Request type: object @@ -229493,7 +229534,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *799 + repository: *800 sender: *4 required: - action @@ -229696,7 +229737,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *796 + enterprise: *797 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -229791,8 +229832,8 @@ webhooks: - url - author - committer - installation: *797 - organization: *798 + installation: *798 + organization: *799 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -230380,9 +230421,9 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 registry_package: type: object properties: @@ -230859,7 +230900,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -230915,7 +230956,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -230993,9 +231034,9 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 registry_package: type: object properties: @@ -231307,7 +231348,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -231357,7 +231398,7 @@ webhooks: - owner - package_version - registry - repository: *799 + repository: *800 sender: *4 required: - action @@ -231434,10 +231475,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - release: &855 + enterprise: *797 + installation: *798 + organization: *799 + release: &856 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -231768,7 +231809,7 @@ webhooks: - updated_at - zipball_url - body - repository: *799 + repository: *800 sender: *4 required: - action @@ -231845,11 +231886,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -231966,11 +232007,11 @@ webhooks: type: boolean required: - to - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -232048,9 +232089,9 @@ webhooks: type: string enum: - prereleased - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -232386,7 +232427,7 @@ webhooks: - string - 'null' format: uri - repository: *799 + repository: *800 sender: *4 required: - action @@ -232462,10 +232503,10 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - release: &856 + enterprise: *797 + installation: *798 + organization: *799 + release: &857 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -232798,7 +232839,7 @@ webhooks: - string - 'null' format: uri - repository: *799 + repository: *800 sender: *4 required: - action @@ -232874,11 +232915,11 @@ webhooks: type: string enum: - released - enterprise: *796 - installation: *797 - organization: *798 - release: *855 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *856 + repository: *800 sender: *4 required: - action @@ -232954,11 +232995,11 @@ webhooks: type: string enum: - unpublished - enterprise: *796 - installation: *797 - organization: *798 - release: *856 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + release: *857 + repository: *800 sender: *4 required: - action @@ -233034,11 +233075,11 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_advisory: *699 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_advisory: *700 sender: *4 required: - action @@ -233114,11 +233155,11 @@ webhooks: type: string enum: - reported - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_advisory: *699 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_advisory: *700 sender: *4 required: - action @@ -233194,10 +233235,10 @@ webhooks: type: string enum: - archived - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233274,10 +233315,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233355,10 +233396,10 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233443,10 +233484,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233561,10 +233602,10 @@ webhooks: - 'null' items: type: string - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233636,10 +233677,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 status: type: string @@ -233720,10 +233761,10 @@ webhooks: type: string enum: - privatized - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233800,10 +233841,10 @@ webhooks: type: string enum: - publicized - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233897,10 +233938,10 @@ webhooks: - name required: - repository - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -233980,11 +234021,11 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 sender: *4 required: - action @@ -234062,11 +234103,11 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 sender: *4 required: - action @@ -234144,11 +234185,11 @@ webhooks: type: string enum: - edited - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - repository_ruleset: *151 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + repository_ruleset: *157 changes: type: object properties: @@ -234167,16 +234208,16 @@ webhooks: properties: added: type: array - items: *125 + items: *131 deleted: type: array - items: *125 + items: *131 updated: type: array items: type: object properties: - condition: *125 + condition: *131 changes: type: object properties: @@ -234209,16 +234250,16 @@ webhooks: properties: added: type: array - items: *667 + items: *668 deleted: type: array - items: *667 + items: *668 updated: type: array items: type: object properties: - rule: *667 + rule: *668 changes: type: object properties: @@ -234455,10 +234496,10 @@ webhooks: - from required: - owner - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234536,10 +234577,10 @@ webhooks: type: string enum: - unarchived - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234617,7 +234658,7 @@ webhooks: type: string enum: - create - alert: &857 + alert: &858 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -234741,10 +234782,10 @@ webhooks: type: string enum: - open - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -234954,10 +234995,10 @@ webhooks: type: string enum: - dismissed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235035,11 +235076,11 @@ webhooks: type: string enum: - reopen - alert: *857 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *858 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235241,10 +235282,10 @@ webhooks: enum: - fixed - open - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235322,17 +235363,17 @@ webhooks: type: string enum: - created - alert: &858 + alert: &859 type: object properties: - number: *102 - created_at: *109 + number: *108 + created_at: *115 updated_at: anyOf: - type: 'null' - - *110 - url: *107 - html_url: *108 + - *116 + url: *113 + html_url: *114 locations_url: type: string format: uri @@ -235432,10 +235473,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235516,11 +235557,11 @@ webhooks: type: string enum: - created - alert: *858 - installation: *797 - location: *859 - organization: *798 - repository: *799 + alert: *859 + installation: *798 + location: *860 + organization: *799 + repository: *800 sender: *4 required: - location @@ -235758,11 +235799,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235840,11 +235881,11 @@ webhooks: type: string enum: - reopened - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -235922,11 +235963,11 @@ webhooks: type: string enum: - resolved - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -236004,11 +236045,11 @@ webhooks: type: string enum: - validated - alert: *858 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + alert: *859 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -236138,10 +236179,10 @@ webhooks: - organization - enterprise - - repository: *799 - enterprise: *796 - installation: *797 - organization: *798 + repository: *800 + enterprise: *797 + installation: *798 + organization: *799 sender: *4 required: - action @@ -236219,11 +236260,11 @@ webhooks: type: string enum: - published - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - security_advisory: &860 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + security_advisory: &861 description: The details of the security advisory, including summary, description, and severity. type: object @@ -236240,7 +236281,7 @@ webhooks: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: array items: @@ -236409,11 +236450,11 @@ webhooks: type: string enum: - updated - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 - security_advisory: *860 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 + security_advisory: *861 sender: *4 required: - action @@ -236486,10 +236527,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -236507,7 +236548,7 @@ webhooks: required: - vector_string - score - cvss_severities: *104 + cvss_severities: *110 cwes: type: array items: @@ -236675,11 +236716,11 @@ webhooks: from: type: object properties: - security_and_analysis: *363 - enterprise: *796 - installation: *797 - organization: *798 - repository: *429 + security_and_analysis: *366 + enterprise: *797 + installation: *798 + organization: *799 + repository: *432 sender: *4 required: - changes @@ -236757,12 +236798,12 @@ webhooks: type: string enum: - cancelled - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: &861 + sponsorship: &862 type: object properties: created_at: @@ -237067,12 +237108,12 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - sponsorship @@ -237160,12 +237201,12 @@ webhooks: type: string required: - from - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237242,17 +237283,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &862 + effective_date: &863 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: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - sponsorship @@ -237326,7 +237367,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &863 + changes: &864 type: object properties: tier: @@ -237370,13 +237411,13 @@ webhooks: - from required: - tier - effective_date: *862 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + effective_date: *863 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237453,13 +237494,13 @@ webhooks: type: string enum: - tier_changed - changes: *863 - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + changes: *864 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - sponsorship: *861 + sponsorship: *862 required: - action - changes @@ -237533,10 +237574,10 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -237620,10 +237661,10 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -238057,15 +238098,15 @@ webhooks: type: - string - 'null' - enterprise: *796 + enterprise: *797 id: description: The unique identifier of the status. type: integer - installation: *797 + installation: *798 name: type: string - organization: *798 - repository: *799 + organization: *799 + repository: *800 sender: *4 sha: description: The Commit SHA. @@ -238175,15 +238216,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 + parent_issue: *185 parent_issue_repo: *65 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 - installation: *797 - organization: *798 - repository: *799 + sub_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238267,15 +238308,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 + parent_issue: *185 parent_issue_repo: *65 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 - installation: *797 - organization: *798 - repository: *799 + sub_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238359,15 +238400,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 + sub_issue: *185 sub_issue_repo: *65 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 - installation: *797 - organization: *798 - repository: *799 + parent_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238451,15 +238492,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *179 + sub_issue: *185 sub_issue_repo: *65 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *179 - installation: *797 - organization: *798 - repository: *799 + parent_issue: *185 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -238536,12 +238577,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - team: &864 + team: &865 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -238734,9 +238775,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -239206,7 +239247,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -239282,9 +239323,9 @@ webhooks: type: string enum: - created - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -239754,7 +239795,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -239831,9 +239872,9 @@ webhooks: type: string enum: - deleted - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -240303,7 +240344,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -240447,9 +240488,9 @@ webhooks: - from required: - permissions - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -240919,7 +240960,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - changes @@ -240997,9 +241038,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *796 - installation: *797 - organization: *798 + enterprise: *797 + installation: *798 + organization: *799 repository: title: Repository description: A git repository @@ -241469,7 +241510,7 @@ webhooks: - topics - visibility sender: *4 - team: *864 + team: *865 required: - action - team @@ -241545,10 +241586,10 @@ webhooks: type: string enum: - started - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 required: - action @@ -241621,17 +241662,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *796 + enterprise: *797 inputs: type: - object - 'null' additionalProperties: true - installation: *797 - organization: *798 + installation: *798 + organization: *799 ref: type: string - repository: *799 + repository: *800 sender: *4 workflow: type: string @@ -241713,10 +241754,10 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: allOf: @@ -241972,7 +242013,7 @@ webhooks: type: string required: - conclusion - deployment: *557 + deployment: *558 required: - action - repository @@ -242051,10 +242092,10 @@ webhooks: type: string enum: - in_progress - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: allOf: @@ -242336,7 +242377,7 @@ webhooks: required: - status - steps - deployment: *557 + deployment: *558 required: - action - repository @@ -242415,10 +242456,10 @@ webhooks: type: string enum: - queued - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: type: object @@ -242564,7 +242605,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *557 + deployment: *558 required: - action - repository @@ -242643,10 +242684,10 @@ webhooks: type: string enum: - waiting - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 workflow_job: type: object @@ -242793,7 +242834,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *557 + deployment: *558 required: - action - repository @@ -242873,12 +242914,12 @@ webhooks: type: string enum: - completed - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -243897,12 +243938,12 @@ webhooks: type: string enum: - in_progress - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -244906,12 +244947,12 @@ webhooks: type: string enum: - requested - enterprise: *796 - installation: *797 - organization: *798 - repository: *799 + enterprise: *797 + installation: *798 + organization: *799 + repository: *800 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 03c836dd5..afe15c7a3 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -6610,6 +6610,78 @@ } } }, + "/enterprises/{enterprise}/bypass-requests/secret-scanning": { + "get": { + "summary": "List bypass requests for secret scanning for an enterprise", + "description": "List requests to bypass secret scanning push protection in an enterprise.\n\nDelegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/list-enterprise-bypass-requests", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "secret-scanning", + "subcategory": "delegated-bypass" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/org-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/bypass-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-bypass-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-bypass-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/enterprises/{enterprise}/code-scanning/alerts": { "get": { "summary": "List code scanning alerts for an enterprise", @@ -120390,6 +120462,166 @@ } } }, + "secret-scanning-bypass-request": { + "title": "Secret scanning bypass request", + "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the bypass request." + }, + "number": { + "type": "integer", + "description": "The number uniquely identifying the bypass request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the repository the bypass request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the bypass request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the bypass request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the bypass.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who requested the bypass." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the bypass." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the push rules that are being requested to be bypassed.", + "items": { + "type": "object", + "properties": { + "secret_type": { + "type": "string", + "description": "The type of secret that secret scanning detected." + }, + "bypass_reason": { + "type": "string", + "enum": [ + "used_in_tests", + "false_positive", + "fix_later" + ], + "description": "The reason the bypass was requested." + }, + "path": { + "type": "string", + "description": "The path in the repo where the secret was located during the request." + }, + "branch": { + "type": "string", + "description": "The branch in the repo where the secret was located during the request." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", + "examples": [ + "827efc6d56897b048c772eb4087f854f46256132" + ] + }, + "status": { + "type": "string", + "description": "The status of the bypass request.", + "enum": [ + "pending", + "denied", + "approved", + "cancelled", + "completed", + "expired", + "open" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the bypass request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the bypass request.", + "items": { + "$ref": "#/components/schemas/bypass-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the bypass request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/exemptions/1" + ] + } + } + }, "code-scanning-analysis-tool-name": { "type": "string", "description": "The name of the tool used to generate the code scanning analysis." @@ -130149,166 +130381,6 @@ "visibility" ] }, - "secret-scanning-bypass-request": { - "title": "Secret scanning bypass request", - "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the bypass request." - }, - "number": { - "type": "integer", - "description": "The number uniquely identifying the bypass request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the bypass request is for.", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the repository the bypass request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the bypass request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the bypass request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the bypass request is for.", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the bypass.", - "properties": { - "actor_id": { - "type": "integer", - "description": "The ID of the GitHub user who requested the bypass." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the bypass." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the push rules that are being requested to be bypassed.", - "items": { - "type": "object", - "properties": { - "secret_type": { - "type": "string", - "description": "The type of secret that secret scanning detected." - }, - "bypass_reason": { - "type": "string", - "enum": [ - "used_in_tests", - "false_positive", - "fix_later" - ], - "description": "The reason the bypass was requested." - }, - "path": { - "type": "string", - "description": "The path in the repo where the secret was located during the request." - }, - "branch": { - "type": "string", - "description": "The branch in the repo where the secret was located during the request." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", - "examples": [ - "827efc6d56897b048c772eb4087f854f46256132" - ] - }, - "status": { - "type": "string", - "description": "The status of the bypass request.", - "enum": [ - "pending", - "denied", - "approved", - "cancelled", - "completed", - "expired", - "open" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the bypass request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the bypass request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the bypass request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the bypass request.", - "items": { - "$ref": "#/components/schemas/bypass-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the bypass request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/exemptions/1" - ] - } - } - }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -305866,6 +305938,98 @@ } ] }, + "secret-scanning-bypass-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "used_in_tests", + "path": "/tests/README.md:16:0", + "branch": "refs/heads/main" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", + "status": "denied", + "requester_comment": "Test token used in the readme as an example", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", + "html_url": "https://github.com/octo-org/smile/exemptions/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "fix_later", + "path": "README.md:17:0", + "branch": "refs/heads/my-branch" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", + "status": "denied", + "requester_comment": "Token is already revoked, I'll remove it later", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2", + "html_url": "https://github.com/octo-org/smile/exemptions/2" + } + ] + }, "code-scanning-organization-alert-items": { "value": [ { @@ -310372,98 +310536,6 @@ } ] }, - "secret-scanning-bypass-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "secret_scanning", - "data": [ - { - "secret_type": "adafruit_io_key", - "bypass_reason": "used_in_tests", - "path": "/tests/README.md:16:0", - "branch": "refs/heads/main" - } - ], - "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", - "status": "denied", - "requester_comment": "Test token used in the readme as an example", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", - "html_url": "https://github.com/octo-org/smile/exemptions/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "secret_scanning", - "data": [ - { - "secret_type": "adafruit_io_key", - "bypass_reason": "fix_later", - "path": "README.md:17:0", - "branch": "refs/heads/my-branch" - } - ], - "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", - "status": "denied", - "requester_comment": "Token is already revoked, I'll remove it later", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2", - "html_url": "https://github.com/octo-org/smile/exemptions/2" - } - ] - }, "campaign-org-items": { "value": [ { diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index a67746508..a007802d1 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -4597,6 +4597,50 @@ paths: "$ref": "#/components/responses/not_found" '500': "$ref": "#/components/responses/internal_error" + "/enterprises/{enterprise}/bypass-requests/secret-scanning": + get: + summary: List bypass requests for secret scanning for an enterprise + description: |- + List requests to bypass secret scanning push protection in an enterprise. + + Delegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-enterprise-bypass-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: secret-scanning + subcategory: delegated-bypass + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/org-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/bypass-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-bypass-request" + examples: + default: + "$ref": "#/components/examples/secret-scanning-bypass-request-items" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -86892,6 +86936,132 @@ components: format: uri examples: - https://github.com/octo-org/smile/exemptions/1 + secret-scanning-bypass-request: + title: Secret scanning bypass request + description: A bypass request made by a user asking to be exempted from push + protection in this repository. + type: object + properties: + id: + type: integer + description: The unique identifier of the bypass request. + number: + type: integer + description: The number uniquely identifying the bypass request within its + repository. + repository: + type: object + description: The repository the bypass request is for. + properties: + id: + type: integer + description: The ID of the repository the bypass request is for. + name: + type: string + description: The name of the repository the bypass request is for. + full_name: + type: string + description: The full name of the repository the bypass request is for. + organization: + type: object + description: The organization associated with the repository the bypass + request is for. + properties: + id: + type: integer + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the bypass. + properties: + actor_id: + type: integer + description: The ID of the GitHub user who requested the bypass. + actor_name: + type: string + description: The name of the GitHub user who requested the bypass. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the push rules that are being requested to + be bypassed. + items: + type: object + properties: + secret_type: + type: string + description: The type of secret that secret scanning detected. + bypass_reason: + type: string + enum: + - used_in_tests + - false_positive + - fix_later + description: The reason the bypass was requested. + path: + type: string + description: The path in the repo where the secret was located during + the request. + branch: + type: string + description: The branch in the repo where the secret was located during + the request. + resource_identifier: + type: string + description: The unique identifier for the request type of the bypass request. + For example, a commit SHA. + examples: + - 827efc6d56897b048c772eb4087f854f46256132 + status: + type: string + description: The status of the bypass request. + enum: + - pending + - denied + - approved + - cancelled + - completed + - expired + - open + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the bypass + request. + expires_at: + type: string + format: date-time + description: The date and time the bypass request will expire. + created_at: + type: string + format: date-time + description: The date and time the bypass request was created. + responses: + type: + - array + - 'null' + description: The responses to the bypass request. + items: + "$ref": "#/components/schemas/bypass-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: + type: string + description: The URL to view the bypass request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/exemptions/1 code-scanning-analysis-tool-name: type: string description: The name of the tool used to generate the code scanning analysis. @@ -94152,132 +94322,6 @@ components: - created_at - updated_at - visibility - secret-scanning-bypass-request: - title: Secret scanning bypass request - description: A bypass request made by a user asking to be exempted from push - protection in this repository. - type: object - properties: - id: - type: integer - description: The unique identifier of the bypass request. - number: - type: integer - description: The number uniquely identifying the bypass request within its - repository. - repository: - type: object - description: The repository the bypass request is for. - properties: - id: - type: integer - description: The ID of the repository the bypass request is for. - name: - type: string - description: The name of the repository the bypass request is for. - full_name: - type: string - description: The full name of the repository the bypass request is for. - organization: - type: object - description: The organization associated with the repository the bypass - request is for. - properties: - id: - type: integer - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the bypass. - properties: - actor_id: - type: integer - description: The ID of the GitHub user who requested the bypass. - actor_name: - type: string - description: The name of the GitHub user who requested the bypass. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the push rules that are being requested to - be bypassed. - items: - type: object - properties: - secret_type: - type: string - description: The type of secret that secret scanning detected. - bypass_reason: - type: string - enum: - - used_in_tests - - false_positive - - fix_later - description: The reason the bypass was requested. - path: - type: string - description: The path in the repo where the secret was located during - the request. - branch: - type: string - description: The branch in the repo where the secret was located during - the request. - resource_identifier: - type: string - description: The unique identifier for the request type of the bypass request. - For example, a commit SHA. - examples: - - 827efc6d56897b048c772eb4087f854f46256132 - status: - type: string - description: The status of the bypass request. - enum: - - pending - - denied - - approved - - cancelled - - completed - - expired - - open - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the bypass - request. - expires_at: - type: string - format: date-time - description: The date and time the bypass request will expire. - created_at: - type: string - format: date-time - description: The date and time the bypass request was created. - responses: - type: - - array - - 'null' - description: The responses to the bypass request. - items: - "$ref": "#/components/schemas/bypass-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: - type: string - description: The URL to view the bypass request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/exemptions/1 campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -224782,6 +224826,72 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 + secret-scanning-bypass-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: used_in_tests + path: "/tests/README.md:16:0" + branch: refs/heads/main + resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 + status: denied + requester_comment: Test token used in the readme as an example + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: https://github.com/octo-org/smile/exemptions/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: fix_later + path: README.md:17:0 + branch: refs/heads/my-branch + resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 + status: denied + requester_comment: Token is already revoked, I'll remove it later + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 + html_url: https://github.com/octo-org/smile/exemptions/2 code-scanning-organization-alert-items: value: - number: 4 @@ -228587,72 +228697,6 @@ components: received_events_url: https://api.github.com/users/octocat/received_events type: User site_admin: false - secret-scanning-bypass-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: used_in_tests - path: "/tests/README.md:16:0" - branch: refs/heads/main - resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 - status: denied - requester_comment: Test token used in the readme as an example - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: https://github.com/octo-org/smile/exemptions/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: fix_later - path: README.md:17:0 - branch: refs/heads/my-branch - resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 - status: denied - requester_comment: Token is already revoked, I'll remove it later - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 - html_url: https://github.com/octo-org/smile/exemptions/2 campaign-org-items: value: - number: 3 diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 03c836dd5..afe15c7a3 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -6610,6 +6610,78 @@ } } }, + "/enterprises/{enterprise}/bypass-requests/secret-scanning": { + "get": { + "summary": "List bypass requests for secret scanning for an enterprise", + "description": "List requests to bypass secret scanning push protection in an enterprise.\n\nDelegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/list-enterprise-bypass-requests", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": false, + "category": "secret-scanning", + "subcategory": "delegated-bypass" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "$ref": "#/components/parameters/org-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/bypass-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-bypass-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-bypass-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/enterprises/{enterprise}/code-scanning/alerts": { "get": { "summary": "List code scanning alerts for an enterprise", @@ -120390,6 +120462,166 @@ } } }, + "secret-scanning-bypass-request": { + "title": "Secret scanning bypass request", + "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the bypass request." + }, + "number": { + "type": "integer", + "description": "The number uniquely identifying the bypass request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the repository the bypass request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the bypass request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the bypass request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the bypass request is for.", + "properties": { + "id": { + "type": "integer", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the bypass.", + "properties": { + "actor_id": { + "type": "integer", + "description": "The ID of the GitHub user who requested the bypass." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the bypass." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the push rules that are being requested to be bypassed.", + "items": { + "type": "object", + "properties": { + "secret_type": { + "type": "string", + "description": "The type of secret that secret scanning detected." + }, + "bypass_reason": { + "type": "string", + "enum": [ + "used_in_tests", + "false_positive", + "fix_later" + ], + "description": "The reason the bypass was requested." + }, + "path": { + "type": "string", + "description": "The path in the repo where the secret was located during the request." + }, + "branch": { + "type": "string", + "description": "The branch in the repo where the secret was located during the request." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", + "examples": [ + "827efc6d56897b048c772eb4087f854f46256132" + ] + }, + "status": { + "type": "string", + "description": "The status of the bypass request.", + "enum": [ + "pending", + "denied", + "approved", + "cancelled", + "completed", + "expired", + "open" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the bypass request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the bypass request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the bypass request.", + "items": { + "$ref": "#/components/schemas/bypass-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the bypass request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/exemptions/1" + ] + } + } + }, "code-scanning-analysis-tool-name": { "type": "string", "description": "The name of the tool used to generate the code scanning analysis." @@ -130149,166 +130381,6 @@ "visibility" ] }, - "secret-scanning-bypass-request": { - "title": "Secret scanning bypass request", - "description": "A bypass request made by a user asking to be exempted from push protection in this repository.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the bypass request." - }, - "number": { - "type": "integer", - "description": "The number uniquely identifying the bypass request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the bypass request is for.", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the repository the bypass request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the bypass request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the bypass request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the bypass request is for.", - "properties": { - "id": { - "type": "integer", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the bypass.", - "properties": { - "actor_id": { - "type": "integer", - "description": "The ID of the GitHub user who requested the bypass." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the bypass." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the push rules that are being requested to be bypassed.", - "items": { - "type": "object", - "properties": { - "secret_type": { - "type": "string", - "description": "The type of secret that secret scanning detected." - }, - "bypass_reason": { - "type": "string", - "enum": [ - "used_in_tests", - "false_positive", - "fix_later" - ], - "description": "The reason the bypass was requested." - }, - "path": { - "type": "string", - "description": "The path in the repo where the secret was located during the request." - }, - "branch": { - "type": "string", - "description": "The branch in the repo where the secret was located during the request." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the bypass request. For example, a commit SHA.", - "examples": [ - "827efc6d56897b048c772eb4087f854f46256132" - ] - }, - "status": { - "type": "string", - "description": "The status of the bypass request.", - "enum": [ - "pending", - "denied", - "approved", - "cancelled", - "completed", - "expired", - "open" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the bypass request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the bypass request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the bypass request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the bypass request.", - "items": { - "$ref": "#/components/schemas/bypass-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the bypass request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/exemptions/1" - ] - } - } - }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -305866,6 +305938,98 @@ } ] }, + "secret-scanning-bypass-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "used_in_tests", + "path": "/tests/README.md:16:0", + "branch": "refs/heads/main" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", + "status": "denied", + "requester_comment": "Test token used in the readme as an example", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", + "html_url": "https://github.com/octo-org/smile/exemptions/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "secret_scanning", + "data": [ + { + "secret_type": "adafruit_io_key", + "bypass_reason": "fix_later", + "path": "README.md:17:0", + "branch": "refs/heads/my-branch" + } + ], + "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", + "status": "denied", + "requester_comment": "Token is already revoked, I'll remove it later", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2", + "html_url": "https://github.com/octo-org/smile/exemptions/2" + } + ] + }, "code-scanning-organization-alert-items": { "value": [ { @@ -310372,98 +310536,6 @@ } ] }, - "secret-scanning-bypass-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "secret_scanning", - "data": [ - { - "secret_type": "adafruit_io_key", - "bypass_reason": "used_in_tests", - "path": "/tests/README.md:16:0", - "branch": "refs/heads/main" - } - ], - "resource_identifier": "827efc6d56897b048c772eb4087f854f46256132", - "status": "denied", - "requester_comment": "Test token used in the readme as an example", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1", - "html_url": "https://github.com/octo-org/smile/exemptions/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "secret_scanning", - "data": [ - { - "secret_type": "adafruit_io_key", - "bypass_reason": "fix_later", - "path": "README.md:17:0", - "branch": "refs/heads/my-branch" - } - ], - "resource_identifier": "827efc6d56897b048c772eb4087f854f46255555", - "status": "denied", - "requester_comment": "Token is already revoked, I'll remove it later", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2", - "html_url": "https://github.com/octo-org/smile/exemptions/2" - } - ] - }, "campaign-org-items": { "value": [ { diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index a67746508..a007802d1 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -4597,6 +4597,50 @@ paths: "$ref": "#/components/responses/not_found" '500': "$ref": "#/components/responses/internal_error" + "/enterprises/{enterprise}/bypass-requests/secret-scanning": + get: + summary: List bypass requests for secret scanning for an enterprise + description: |- + List requests to bypass secret scanning push protection in an enterprise. + + Delegated bypass must be enabled on repositories in the enterprise and the user must be a bypass reviewer to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-enterprise-bypass-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/delegated-bypass#list-bypass-requests-for-secret-scanning-for-an-enterprise + x-github: + githubCloudOnly: true + enabledForGitHubApps: false + category: secret-scanning + subcategory: delegated-bypass + parameters: + - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/org-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/bypass-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-bypass-request" + examples: + default: + "$ref": "#/components/examples/secret-scanning-bypass-request-items" + '404': + "$ref": "#/components/responses/not_found" + '500': + "$ref": "#/components/responses/internal_error" "/enterprises/{enterprise}/code-scanning/alerts": get: summary: List code scanning alerts for an enterprise @@ -86892,6 +86936,132 @@ components: format: uri examples: - https://github.com/octo-org/smile/exemptions/1 + secret-scanning-bypass-request: + title: Secret scanning bypass request + description: A bypass request made by a user asking to be exempted from push + protection in this repository. + type: object + properties: + id: + type: integer + description: The unique identifier of the bypass request. + number: + type: integer + description: The number uniquely identifying the bypass request within its + repository. + repository: + type: object + description: The repository the bypass request is for. + properties: + id: + type: integer + description: The ID of the repository the bypass request is for. + name: + type: string + description: The name of the repository the bypass request is for. + full_name: + type: string + description: The full name of the repository the bypass request is for. + organization: + type: object + description: The organization associated with the repository the bypass + request is for. + properties: + id: + type: integer + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the bypass. + properties: + actor_id: + type: integer + description: The ID of the GitHub user who requested the bypass. + actor_name: + type: string + description: The name of the GitHub user who requested the bypass. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the push rules that are being requested to + be bypassed. + items: + type: object + properties: + secret_type: + type: string + description: The type of secret that secret scanning detected. + bypass_reason: + type: string + enum: + - used_in_tests + - false_positive + - fix_later + description: The reason the bypass was requested. + path: + type: string + description: The path in the repo where the secret was located during + the request. + branch: + type: string + description: The branch in the repo where the secret was located during + the request. + resource_identifier: + type: string + description: The unique identifier for the request type of the bypass request. + For example, a commit SHA. + examples: + - 827efc6d56897b048c772eb4087f854f46256132 + status: + type: string + description: The status of the bypass request. + enum: + - pending + - denied + - approved + - cancelled + - completed + - expired + - open + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the bypass + request. + expires_at: + type: string + format: date-time + description: The date and time the bypass request will expire. + created_at: + type: string + format: date-time + description: The date and time the bypass request was created. + responses: + type: + - array + - 'null' + description: The responses to the bypass request. + items: + "$ref": "#/components/schemas/bypass-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: + type: string + description: The URL to view the bypass request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/exemptions/1 code-scanning-analysis-tool-name: type: string description: The name of the tool used to generate the code scanning analysis. @@ -94152,132 +94322,6 @@ components: - created_at - updated_at - visibility - secret-scanning-bypass-request: - title: Secret scanning bypass request - description: A bypass request made by a user asking to be exempted from push - protection in this repository. - type: object - properties: - id: - type: integer - description: The unique identifier of the bypass request. - number: - type: integer - description: The number uniquely identifying the bypass request within its - repository. - repository: - type: object - description: The repository the bypass request is for. - properties: - id: - type: integer - description: The ID of the repository the bypass request is for. - name: - type: string - description: The name of the repository the bypass request is for. - full_name: - type: string - description: The full name of the repository the bypass request is for. - organization: - type: object - description: The organization associated with the repository the bypass - request is for. - properties: - id: - type: integer - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the bypass. - properties: - actor_id: - type: integer - description: The ID of the GitHub user who requested the bypass. - actor_name: - type: string - description: The name of the GitHub user who requested the bypass. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the push rules that are being requested to - be bypassed. - items: - type: object - properties: - secret_type: - type: string - description: The type of secret that secret scanning detected. - bypass_reason: - type: string - enum: - - used_in_tests - - false_positive - - fix_later - description: The reason the bypass was requested. - path: - type: string - description: The path in the repo where the secret was located during - the request. - branch: - type: string - description: The branch in the repo where the secret was located during - the request. - resource_identifier: - type: string - description: The unique identifier for the request type of the bypass request. - For example, a commit SHA. - examples: - - 827efc6d56897b048c772eb4087f854f46256132 - status: - type: string - description: The status of the bypass request. - enum: - - pending - - denied - - approved - - cancelled - - completed - - expired - - open - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the bypass - request. - expires_at: - type: string - format: date-time - description: The date and time the bypass request will expire. - created_at: - type: string - format: date-time - description: The date and time the bypass request was created. - responses: - type: - - array - - 'null' - description: The responses to the bypass request. - items: - "$ref": "#/components/schemas/bypass-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: - type: string - description: The URL to view the bypass request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/exemptions/1 campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -224782,6 +224826,72 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/bypass-requests/push-rules/2 html_url: https://github.com/octo-org/smile/exemptions/2 + secret-scanning-bypass-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: used_in_tests + path: "/tests/README.md:16:0" + branch: refs/heads/main + resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 + status: denied + requester_comment: Test token used in the readme as an example + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 + html_url: https://github.com/octo-org/smile/exemptions/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: secret_scanning + data: + - secret_type: adafruit_io_key + bypass_reason: fix_later + path: README.md:17:0 + branch: refs/heads/my-branch + resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 + status: denied + requester_comment: Token is already revoked, I'll remove it later + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 + html_url: https://github.com/octo-org/smile/exemptions/2 code-scanning-organization-alert-items: value: - number: 4 @@ -228587,72 +228697,6 @@ components: received_events_url: https://api.github.com/users/octocat/received_events type: User site_admin: false - secret-scanning-bypass-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: used_in_tests - path: "/tests/README.md:16:0" - branch: refs/heads/main - resource_identifier: 827efc6d56897b048c772eb4087f854f46256132 - status: denied - requester_comment: Test token used in the readme as an example - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/1 - html_url: https://github.com/octo-org/smile/exemptions/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: secret_scanning - data: - - secret_type: adafruit_io_key - bypass_reason: fix_later - path: README.md:17:0 - branch: refs/heads/my-branch - resource_identifier: 827efc6d56897b048c772eb4087f854f46255555 - status: denied - requester_comment: Token is already revoked, I'll remove it later - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/bypass-requests/secret-scanning/2 - html_url: https://github.com/octo-org/smile/exemptions/2 campaign-org-items: value: - number: 3