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 98bc27949..9de90e158 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -88972,6 +88972,584 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "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": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + } + } + } + } + }, + "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", 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 f35209887..a2919ed21 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -922,7 +922,7 @@ paths: - subscriptions_url - type - url - type: &458 + type: &459 type: string description: The type of credit the user is receiving. enum: @@ -1055,7 +1055,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &256 + schema: &257 title: Validation Error Simple description: Validation Error Simple type: object @@ -1088,7 +1088,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: - - &779 + - &780 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4204,7 +4204,7 @@ paths: schema: type: integer default: 30 - - &359 + - &360 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 @@ -4213,7 +4213,7 @@ paths: required: false schema: type: string - - &360 + - &361 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4233,7 +4233,7 @@ paths: application/json: schema: type: array - items: &361 + items: &362 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4329,7 +4329,7 @@ paths: - installation_id - repository_id examples: - default: &362 + default: &363 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4361,7 +4361,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &788 + schema: &789 title: Scim Error description: Scim Error type: object @@ -4392,7 +4392,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &255 + schema: &256 title: Validation Error description: Validation Error type: object @@ -4464,7 +4464,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4599,7 +4599,7 @@ paths: - request - response examples: - default: &364 + default: &365 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4803,7 +4803,7 @@ paths: parameters: - *17 - *19 - - &226 + - &227 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) @@ -5650,7 +5650,7 @@ paths: license: anyOf: - type: 'null' - - &223 + - &224 title: License Simple description: License Simple type: object @@ -10575,7 +10575,7 @@ paths: description: Response content: application/json: - schema: &257 + schema: &258 type: object properties: total_active_caches_count: @@ -10590,7 +10590,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &258 + default: &259 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10805,7 +10805,7 @@ paths: - public_ip_enabled - platform examples: - default: &259 + default: &260 value: total_count: 2 runners: @@ -11109,7 +11109,7 @@ paths: application/json: schema: *47 examples: - default: &260 + default: &261 value: id: 1 platform: linux-x64 @@ -11254,7 +11254,7 @@ paths: application/json: schema: *50 examples: - default: &261 + default: &262 value: version: 1.0.0 size_gb: 75 @@ -11422,7 +11422,7 @@ paths: description: Response content: application/json: - schema: &262 + schema: &263 type: object properties: public_ips: @@ -11449,7 +11449,7 @@ paths: required: - public_ips examples: - default: &263 + default: &264 value: public_ips: current_usage: 17 @@ -11489,7 +11489,7 @@ paths: type: array items: *54 examples: - default: &264 + default: &265 value: id: 4-core cpu_cores: 4 @@ -11807,7 +11807,7 @@ paths: required: true content: application/json: - schema: &265 + schema: &266 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11918,7 +11918,7 @@ paths: - all - local_only - selected - selected_actions_url: &267 + selected_actions_url: &268 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` @@ -11998,7 +11998,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &269 + schema: &270 type: object properties: days: @@ -12016,7 +12016,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &789 + '401': &790 description: Authorization failure '404': *6 x-github: @@ -12044,7 +12044,7 @@ paths: required: true content: application/json: - schema: &270 + schema: &271 type: object properties: days: @@ -12093,7 +12093,7 @@ paths: required: - approval_policy examples: - default: &271 + default: &272 value: approval_policy: first_time_contributors '404': *6 @@ -12151,7 +12151,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &273 type: object required: - run_workflows_from_fork_pull_requests @@ -12205,7 +12205,7 @@ paths: required: true content: application/json: - schema: &273 + schema: &274 type: object required: - run_workflows_from_fork_pull_requests @@ -12641,7 +12641,7 @@ paths: description: Success response content: application/json: - schema: &276 + schema: &277 type: object properties: default_workflow_permissions: &67 @@ -12689,7 +12689,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 type: object properties: default_workflow_permissions: *67 @@ -13545,7 +13545,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Runner Application description: Runner Application type: object @@ -13570,7 +13570,7 @@ paths: - download_url - filename examples: - default: &282 + default: &283 value: - os: osx architecture: x64 @@ -13654,7 +13654,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &283 + '201': &284 description: Response content: application/json: @@ -13773,7 +13773,7 @@ paths: - token - expires_at examples: - default: &284 + default: &285 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13813,7 +13813,7 @@ paths: application/json: schema: *79 examples: - default: &285 + default: &286 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13845,7 +13845,7 @@ paths: application/json: schema: *76 examples: - default: &286 + default: &287 value: id: 23 name: MBP @@ -14062,7 +14062,7 @@ paths: - *39 - *75 responses: - '200': &287 + '200': &288 description: Response content: application/json: @@ -14118,7 +14118,7 @@ paths: parameters: - *39 - *75 - - &288 + - &289 name: name description: The name of a self-hosted runner's custom label. in: path @@ -14215,7 +14215,7 @@ paths: required: true content: application/json: - schema: &302 + schema: &303 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14866,7 +14866,7 @@ paths: required: false schema: type: string - - &305 + - &306 name: include description: |- The event types to include: @@ -14922,7 +14922,7 @@ paths: application/json: schema: type: array - items: &306 + items: &307 type: object properties: "@timestamp": @@ -15044,7 +15044,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &307 + default: &308 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15712,7 +15712,7 @@ paths: application/json: schema: type: array - items: &308 + items: &309 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15884,7 +15884,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &309 + default: &310 value: - id: 21 number: 42 @@ -15989,7 +15989,7 @@ paths: application/json: schema: type: array - items: &311 + items: &312 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -16120,7 +16120,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &312 + default: &313 value: - id: 21 number: 42 @@ -16205,7 +16205,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &317 + - &318 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`, @@ -16215,7 +16215,7 @@ paths: schema: &111 type: string description: The name of the tool used to generate the code scanning analysis. - - &318 + - &319 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 @@ -16239,7 +16239,7 @@ paths: be returned. in: query required: false - schema: &319 + schema: &320 type: string description: State of a code scanning alert. enum: @@ -16272,7 +16272,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 type: object properties: number: &130 @@ -16301,7 +16301,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &546 + instances_url: &547 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16337,7 +16337,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &547 + dismissed_reason: &548 type: - string - 'null' @@ -16348,14 +16348,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &548 + dismissed_comment: &549 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &549 + rule: &550 type: object properties: id: @@ -16416,7 +16416,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &550 + tool: &551 type: object properties: name: *111 @@ -16427,26 +16427,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *112 - most_recent_instance: &551 + most_recent_instance: &552 type: object properties: - ref: &544 + ref: &545 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &561 + analysis_key: &562 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &562 + environment: &563 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &563 + category: &564 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16466,7 +16466,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &564 + location: &565 type: object description: Describe a region within a file for the alert. properties: @@ -16487,7 +16487,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &565 + items: &566 type: - string - 'null' @@ -16843,7 +16843,7 @@ paths: - most_recent_instance - repository examples: - default: &321 + default: &322 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17739,7 +17739,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 type: array description: A list of default code security configurations items: @@ -17755,7 +17755,7 @@ paths: default configuration: *114 examples: - default: &324 + default: &325 value: - default_for_new_repos: public configuration: @@ -18213,7 +18213,7 @@ paths: default: value: default_for_new_repos: all - configuration: &322 + configuration: &323 value: id: 1325 target_type: organization @@ -18303,7 +18303,7 @@ paths: application/json: schema: type: array - items: &325 + items: &326 type: object description: Repositories associated with a code security configuration and attachment status @@ -18327,7 +18327,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &326 + repository: &327 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18828,7 +18828,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &313 + - &314 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18917,7 +18917,7 @@ paths: parent: anyOf: - type: 'null' - - &399 + - &400 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -19704,7 +19704,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': &333 + '413': &334 description: Payload Too Large content: application/json: @@ -20864,7 +20864,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &338 + - &339 name: classification in: query description: |- @@ -20873,7 +20873,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &339 + - &340 name: state in: query description: |- @@ -20882,7 +20882,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &340 + - &341 name: severity in: query description: |- @@ -20891,7 +20891,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &341 + - &342 name: ecosystem in: query description: |- @@ -20900,14 +20900,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &342 + - &343 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 - - &343 + - &344 name: epss_percentage in: query description: |- @@ -20919,7 +20919,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 - - &604 + - &605 name: has in: query description: |- @@ -20933,7 +20933,7 @@ paths: type: string enum: - patch - - &344 + - &345 name: assignee in: query description: |- @@ -20942,7 +20942,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &345 + - &346 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20952,7 +20952,7 @@ paths: enum: - development - runtime - - &346 + - &347 name: sort in: query description: |- @@ -20978,7 +20978,7 @@ paths: application/json: schema: type: array - items: &347 + items: &348 type: object description: A Dependabot alert. properties: @@ -21046,7 +21046,7 @@ paths: - transitive - inconclusive - - security_advisory: &605 + security_advisory: &606 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21289,7 +21289,7 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: &606 + auto_dismissed_at: &607 type: - string - 'null' @@ -21297,7 +21297,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &607 + dismissal_request: &608 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21360,7 +21360,7 @@ paths: - repository additionalProperties: false examples: - default: &348 + default: &349 value: - number: 2 state: dismissed @@ -21745,7 +21745,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &350 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21771,7 +21771,7 @@ paths: - *120 additionalProperties: false examples: - default: &350 + default: &351 value: default_level: public accessible_repositories: @@ -21994,7 +21994,7 @@ paths: - *103 - *104 - *105 - - &352 + - &353 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -22020,7 +22020,7 @@ paths: application/json: schema: type: array - items: &354 + items: &355 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22147,7 +22147,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &355 + default: &356 value: - id: 21 number: 42 @@ -23245,7 +23245,7 @@ paths: application/json: schema: *20 examples: - default: &376 + default: &377 value: id: 1 account: @@ -23506,7 +23506,7 @@ paths: - name - created_on examples: - default: &462 + default: &463 value: total_count: 2 network_configurations: @@ -23757,7 +23757,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 - - &463 + - &464 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23769,7 +23769,7 @@ paths: description: Response content: application/json: - schema: &464 + schema: &465 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23808,7 +23808,7 @@ paths: - subnet_id - region examples: - default: &465 + default: &466 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24661,7 +24661,7 @@ paths: required: true content: application/json: - schema: &430 + schema: &431 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25902,7 +25902,7 @@ paths: conditions: anyOf: - *161 - - &434 + - &435 title: Organization ruleset conditions type: object description: |- @@ -25952,7 +25952,7 @@ paths: - object rules: type: array - items: &744 + items: &745 title: Repository Rule type: object description: A repository rule. @@ -25961,7 +25961,7 @@ paths: - *170 - *171 - *172 - - &741 + - &742 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -26052,7 +26052,7 @@ paths: - *183 - *184 - *185 - - &742 + - &743 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26301,7 +26301,7 @@ paths: type: string format: date-time examples: - default: &437 + default: &438 value: - version_id: 3 actor: @@ -26354,7 +26354,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &439 allOf: - *194 - type: object @@ -26409,7 +26409,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &439 + - &440 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26420,7 +26420,7 @@ paths: enum: - open - resolved - - &440 + - &441 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26430,7 +26430,7 @@ paths: required: false schema: type: string - - &441 + - &442 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26441,7 +26441,7 @@ paths: required: false schema: type: string - - &442 + - &443 name: exclude_providers in: query description: |- @@ -26452,7 +26452,7 @@ paths: required: false schema: type: string - - &443 + - &444 name: providers in: query description: |- @@ -26463,7 +26463,7 @@ paths: required: false schema: type: string - - &444 + - &445 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26472,7 +26472,7 @@ paths: required: false schema: type: string - - &445 + - &446 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26491,7 +26491,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &446 + - &447 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. @@ -26507,7 +26507,7 @@ paths: - *17 - *108 - *109 - - &447 + - &448 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26516,7 +26516,7 @@ paths: required: false schema: type: string - - &448 + - &449 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26525,7 +26525,7 @@ paths: schema: type: boolean default: false - - &449 + - &450 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26534,7 +26534,7 @@ paths: schema: type: boolean default: false - - &450 + - &451 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26543,7 +26543,7 @@ paths: schema: type: boolean default: false - - &451 + - &452 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26554,7 +26554,7 @@ paths: required: false schema: type: boolean - - &452 + - &453 name: included_metadata in: query description: |- @@ -26565,7 +26565,7 @@ paths: required: false schema: type: string - - &453 + - &454 name: owner_email_hash in: query description: |- @@ -26584,7 +26584,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 type: object properties: number: *130 @@ -26600,14 +26600,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &757 + state: &758 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: &758 + resolution: &759 type: - string - 'null' @@ -26726,14 +26726,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &759 + - &760 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &761 + - &762 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26797,7 +26797,7 @@ paths: - blob_url - commit_sha - commit_url - - &762 + - &763 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. @@ -26858,7 +26858,7 @@ paths: - page_url - commit_sha - commit_url - - &763 + - &764 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26880,7 +26880,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &764 + - &765 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26902,7 +26902,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &765 + - &766 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26924,7 +26924,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &766 + - &767 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26939,7 +26939,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &767 + - &768 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26954,7 +26954,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &768 + - &769 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26969,7 +26969,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &769 + - &770 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. @@ -26991,7 +26991,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &770 + - &771 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. @@ -27013,7 +27013,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &771 + - &772 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. @@ -27035,7 +27035,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &772 + - &773 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. @@ -27057,7 +27057,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &773 + - &774 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 @@ -27103,7 +27103,7 @@ paths: - type: 'null' - *4 examples: - default: &455 + default: &456 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27312,7 +27312,7 @@ paths: description: Response content: application/json: - schema: &456 + schema: &457 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27399,7 +27399,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *196 examples: - default: &457 + default: &458 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27535,7 +27535,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &459 + - &460 name: advanced_security_product in: query description: | @@ -27555,7 +27555,7 @@ paths: description: Success content: application/json: - schema: &460 + schema: &461 type: object properties: total_advanced_security_committers: @@ -27618,7 +27618,7 @@ paths: required: - repositories examples: - default: &461 + default: &462 value: total_advanced_security_committers: 2 total_count: 2 @@ -30825,7 +30825,7 @@ paths: type: array items: *73 examples: - default: &250 + default: &251 value: - login: github id: 1 @@ -31113,6 +31113,197 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: &217 + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio + subscription assignment in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This + is a GUID that comes from the Visual Studio management + portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + examples: + - true + examples: + default: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -31202,7 +31393,7 @@ paths: application/json: schema: type: array - items: &245 + items: &246 title: Event description: Event type: object @@ -31213,7 +31404,7 @@ paths: type: - string - 'null' - actor: &217 + actor: &218 title: Actor description: Actor type: object @@ -31254,7 +31445,7 @@ paths: - id - name - url - org: *217 + org: *218 payload: oneOf: - title: CreateEvent @@ -31301,7 +31492,7 @@ paths: properties: action: type: string - discussion: &897 + discussion: &898 title: Discussion description: A Discussion in a repository. type: object @@ -31598,7 +31789,7 @@ paths: - id labels: type: array - items: &220 + items: &221 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -31681,7 +31872,7 @@ paths: properties: action: type: string - issue: &221 + issue: &222 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -31802,7 +31993,7 @@ paths: milestone: anyOf: - type: 'null' - - &420 + - &421 title: Milestone description: A collection of related issues and pull requests. @@ -31974,7 +32165,7 @@ paths: timeline_url: type: string format: uri - type: &386 + type: &387 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -32035,7 +32226,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &218 + author_association: &219 title: author_association type: string description: How the author is associated with the @@ -32051,7 +32242,7 @@ paths: - OWNER examples: - OWNER - reactions: &219 + reactions: &220 title: Reaction Rollup type: object properties: @@ -32087,7 +32278,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &816 + sub_issues_summary: &817 title: Sub-issues Summary type: object properties: @@ -32111,7 +32302,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &222 + - &223 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -32162,16 +32353,16 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - &688 + - &689 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -32192,7 +32383,7 @@ paths: minimized: anyOf: - type: 'null' - - &689 + - &690 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -32217,7 +32408,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &817 + issue_dependencies_summary: &818 title: Issue Dependencies Summary type: object properties: @@ -32236,7 +32427,7 @@ paths: - total_blocking issue_field_values: type: array - items: &672 + items: &673 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32372,10 +32563,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - issue @@ -32384,8 +32575,8 @@ paths: properties: action: type: string - issue: *221 - comment: *222 + issue: *222 + comment: *223 required: - action - issue @@ -32564,7 +32755,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 allow_forking: type: boolean is_template: @@ -32655,7 +32846,7 @@ paths: type: string number: type: integer - pull_request: &224 + pull_request: &225 title: Pull Request Minimal type: object properties: @@ -32726,10 +32917,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - number @@ -32739,7 +32930,7 @@ paths: properties: action: type: string - pull_request: *224 + pull_request: *225 comment: type: object properties: @@ -32993,7 +33184,7 @@ paths: - pull_request updated_at: type: string - pull_request: *224 + pull_request: *225 required: - action - review @@ -33042,7 +33233,7 @@ paths: updated_at: type: string format: date-time - reactions: *219 + reactions: *220 required: - action - comment @@ -33053,7 +33244,7 @@ paths: type: string release: allOf: - - &734 + - &735 title: Release description: A release. type: object @@ -33135,7 +33326,7 @@ paths: author: *4 assets: type: array - items: &735 + items: &736 title: Release Asset description: Data related to a release. type: object @@ -33210,7 +33401,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *219 + reactions: *220 required: - assets_url - upload_url @@ -33393,7 +33584,7 @@ paths: _links: type: object properties: - timeline: &225 + timeline: &226 title: Link With Type description: Hypermedia Link with Type type: object @@ -33405,17 +33596,17 @@ paths: required: - href - type - user: *225 - security_advisories: *225 - current_user: *225 - current_user_public: *225 - current_user_actor: *225 - current_user_organization: *225 + user: *226 + security_advisories: *226 + current_user: *226 + current_user_public: *226 + current_user_actor: *226 + current_user_organization: *226 current_user_organizations: type: array - items: *225 - repository_discussions: *225 - repository_discussions_category: *225 + items: *226 + repository_discussions: *226 + repository_discussions_category: *226 required: - timeline - user @@ -33477,7 +33668,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *226 + - *227 - *17 - *19 responses: @@ -33487,7 +33678,7 @@ paths: application/json: schema: type: array - items: &227 + items: &228 title: Base Gist description: Base Gist type: object @@ -33584,7 +33775,7 @@ paths: - created_at - updated_at examples: - default: &228 + default: &229 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -33708,7 +33899,7 @@ paths: description: Response content: application/json: - schema: &229 + schema: &230 title: Gist Simple description: Gist Simple type: object @@ -33726,7 +33917,7 @@ paths: url: type: string format: uri - user: &825 + user: &826 title: Public User description: Public User type: object @@ -34100,7 +34291,7 @@ paths: truncated: type: boolean examples: - default: &230 + default: &231 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -34204,7 +34395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -34214,9 +34405,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -34238,7 +34429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -34248,9 +34439,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '401': *23 @@ -34277,7 +34468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &231 + - &232 name: gist_id description: The unique identifier of the gist. in: path @@ -34289,10 +34480,10 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 - '403': &234 + default: *231 + '403': &235 description: Forbidden Gist content: application/json: @@ -34340,7 +34531,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *231 + - *232 requestBody: required: true content: @@ -34404,9 +34595,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - updateGist: *230 + updateGist: *231 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -34564,7 +34755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -34592,7 +34783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *231 + - *232 - *17 - *19 responses: @@ -34602,7 +34793,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 title: Gist Comment description: A comment made to a gist. type: object @@ -34640,7 +34831,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *218 + author_association: *219 required: - url - id @@ -34704,7 +34895,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *231 + - *232 requestBody: required: true content: @@ -34730,9 +34921,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: &233 + default: &234 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -34789,8 +34980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *231 - - &235 + - *232 + - &236 name: comment_id description: The unique identifier of the comment. in: path @@ -34803,12 +34994,12 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '304': *35 '404': *6 - '403': *234 + '403': *235 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34829,8 +35020,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 requestBody: required: true content: @@ -34856,9 +35047,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '404': *6 x-github: githubCloudOnly: false @@ -34875,8 +35066,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 responses: '204': description: Response @@ -34899,7 +35090,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *231 + - *232 - *17 - *19 responses: @@ -35000,7 +35191,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *231 + - *232 - *17 - *19 responses: @@ -35010,7 +35201,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -35075,13 +35266,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *231 + - *232 responses: '201': description: Response content: application/json: - schema: *227 + schema: *228 examples: default: value: @@ -35152,7 +35343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *231 + - *232 responses: '204': description: Response if gist is starred @@ -35182,7 +35373,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -35204,7 +35395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -35232,7 +35423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *231 + - *232 - name: sha in: path required: true @@ -35243,9 +35434,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '422': *15 '404': *6 '403': *27 @@ -35628,7 +35819,7 @@ paths: - closed - all default: open - - &389 + - &390 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -35647,7 +35838,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - name: collab in: query required: false @@ -35677,9 +35868,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &390 + default: &391 value: - id: 1 node_id: MDU6SXNzdWUx @@ -35959,7 +36150,7 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: default: value: @@ -36257,7 +36448,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &236 + X-CommonMarker-Version: &237 example: 0.17.4 schema: type: string @@ -36312,7 +36503,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *236 + X-CommonMarker-Version: *237 content: text/html: schema: @@ -36341,7 +36532,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: - - &239 + - &240 name: account_id description: account_id parameter in: path @@ -36353,7 +36544,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -36387,7 +36578,7 @@ paths: - 'null' id: type: integer - plan: &237 + plan: &238 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -36490,7 +36681,7 @@ paths: - 'null' updated_at: type: string - plan: *237 + plan: *238 required: - url - id @@ -36498,7 +36689,7 @@ paths: - login - marketplace_purchase examples: - default: &240 + default: &241 value: url: https://api.github.com/orgs/github type: Organization @@ -36583,9 +36774,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: &241 + default: &242 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -36625,14 +36816,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &242 + - &243 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &243 + - &244 name: sort description: The property to sort the results by. in: query @@ -36662,9 +36853,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: &244 + default: &245 value: - url: https://api.github.com/orgs/github type: Organization @@ -36738,15 +36929,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: - - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *240 + default: *241 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -36778,9 +36969,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: *241 + default: *242 headers: Link: *45 '401': *23 @@ -36803,8 +36994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *242 - *243 + - *244 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -36824,9 +37015,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: *244 + default: *245 headers: Link: *45 '401': *23 @@ -37091,14 +37282,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: - - &474 + - &475 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &475 + - &476 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -37115,7 +37306,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -37160,7 +37351,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &480 + '301': &481 description: Moved permanently content: application/json: @@ -37182,7 +37373,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &708 + - &709 name: all description: If `true`, show notifications marked as read. in: query @@ -37190,7 +37381,7 @@ paths: schema: type: boolean default: false - - &709 + - &710 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -37199,8 +37390,8 @@ paths: schema: type: boolean default: false - - *226 - - &710 + - *227 + - &711 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: @@ -37225,14 +37416,14 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Thread description: Thread type: object properties: id: type: string - repository: &280 + repository: &281 title: Minimal Repository description: Minimal Repository type: object @@ -37582,7 +37773,7 @@ paths: type: boolean examples: - false - security_and_analysis: &431 + security_and_analysis: &432 type: - object - 'null' @@ -37801,7 +37992,7 @@ paths: - url - subscription_url examples: - default: &711 + default: &712 value: - id: '1' repository: @@ -37967,7 +38158,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &247 + - &248 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 @@ -37981,7 +38172,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -38084,7 +38275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *247 + - *248 responses: '205': description: Reset Content @@ -38107,7 +38298,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *247 + - *248 responses: '204': description: No content @@ -38130,13 +38321,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: - - *247 + - *248 responses: '200': description: Response content: application/json: - schema: &248 + schema: &249 title: Thread Subscription description: Thread Subscription type: object @@ -38180,7 +38371,7 @@ paths: - url - subscribed examples: - default: &249 + default: &250 value: subscribed: true ignored: false @@ -38211,7 +38402,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *247 + - *248 requestBody: required: false content: @@ -38232,9 +38423,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 '304': *35 '403': *27 '401': *23 @@ -38257,7 +38448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *247 + - *248 responses: '204': description: Response @@ -38354,7 +38545,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: example: ; rel="next" @@ -38406,7 +38597,7 @@ paths: - 3 custom_roles: type: array - items: &334 + items: &335 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -38455,7 +38646,7 @@ paths: - created_at - updated_at examples: - default: &335 + default: &336 value: id: 8030 name: Security Engineer @@ -38508,7 +38699,7 @@ paths: description: Response content: application/json: - schema: &251 + schema: &252 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -38547,7 +38738,7 @@ paths: required: true content: application/json: - schema: *251 + schema: *252 examples: selected_actions: *42 responses: @@ -38582,7 +38773,7 @@ paths: description: Response content: application/json: - schema: &252 + schema: &253 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -38621,7 +38812,7 @@ paths: required: true content: application/json: - schema: *252 + schema: *253 examples: selected_actions: *44 responses: @@ -38664,7 +38855,7 @@ paths: type: array items: *155 examples: - default: &717 + default: &718 value: - property_name: environment value: production @@ -38714,7 +38905,7 @@ paths: required: - properties examples: - default: &718 + default: &719 value: properties: - property_name: environment @@ -38761,7 +38952,7 @@ paths: description: Response content: application/json: - schema: &253 + schema: &254 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -39171,7 +39362,7 @@ paths: - updated_at - archived_at examples: - default-response: &254 + default-response: &255 value: login: github id: 1 @@ -39497,17 +39688,17 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: - default: *254 + default: *255 '422': description: Validation failed content: application/json: schema: oneOf: - - *255 - *256 + - *257 '409': *119 x-github: githubCloudOnly: false @@ -39562,9 +39753,9 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: - default: *258 + default: *259 headers: Link: *45 x-github: @@ -39605,7 +39796,7 @@ paths: type: integer repository_cache_usages: type: array - items: &487 + items: &488 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -39683,7 +39874,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -39850,7 +40041,7 @@ paths: application/json: schema: *47 examples: - default: *260 + default: *261 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39942,7 +40133,7 @@ paths: application/json: schema: *50 examples: - default: *261 + default: *262 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40061,9 +40252,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40099,7 +40290,7 @@ paths: type: array items: *54 examples: - default: *264 + default: *265 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40343,7 +40534,7 @@ paths: required: true content: application/json: - schema: *265 + schema: *266 examples: default: *58 responses: @@ -40436,7 +40627,7 @@ paths: required: - include_claim_keys examples: - default: &266 + default: &267 value: include_claim_keys: - repo @@ -40481,13 +40672,13 @@ paths: format. type: boolean examples: - default: *266 + default: *267 responses: '201': description: Empty response content: application/json: - schema: &291 + schema: &292 title: Empty Object description: An object without any properties. type: object @@ -40526,7 +40717,7 @@ paths: schema: type: object properties: - enabled_repositories: &268 + enabled_repositories: &269 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -40540,7 +40731,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled_repositories @@ -40582,7 +40773,7 @@ paths: schema: type: object properties: - enabled_repositories: *268 + enabled_repositories: *269 allowed_actions: *60 sha_pinning_required: *61 required: @@ -40618,7 +40809,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: response: summary: Example response @@ -40649,7 +40840,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: application/json: value: @@ -40687,7 +40878,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -40744,7 +40935,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -40769,7 +40960,7 @@ paths: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -40821,7 +41012,7 @@ paths: type: array items: *78 examples: - default: &275 + default: &276 value: total_count: 1 repositories: @@ -41006,7 +41197,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - &274 + - &275 name: repository_id description: The unique identifier of the repository. in: path @@ -41035,7 +41226,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -41231,7 +41422,7 @@ paths: type: array items: *78 examples: - default: *275 + default: *276 '403': *27 '404': *6 x-github: @@ -41300,7 +41491,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -41327,7 +41518,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -41361,7 +41552,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -41395,7 +41586,7 @@ paths: required: false content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -41442,7 +41633,7 @@ paths: type: number runner_groups: type: array - items: &278 + items: &279 type: object properties: id: @@ -41632,9 +41823,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: &279 + default: &280 value: id: 2 name: octo-runner-group @@ -41676,7 +41867,7 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: default: value: @@ -41769,9 +41960,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: *279 + default: *280 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -41835,7 +42026,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -41876,9 +42067,9 @@ paths: type: number repositories: type: array - items: *280 + items: *281 examples: - default: &332 + default: &333 value: total_count: 1 repositories: @@ -42177,7 +42368,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -42201,7 +42392,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -42419,9 +42610,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42486,7 +42677,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -42525,7 +42716,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42561,7 +42752,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42592,7 +42783,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42767,7 +42958,7 @@ paths: - *87 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -42796,7 +42987,7 @@ paths: parameters: - *87 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -42841,7 +43032,7 @@ paths: type: integer secrets: type: array - items: &289 + items: &290 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -42875,7 +43066,7 @@ paths: - updated_at - visibility examples: - default: &295 + default: &296 value: total_count: 3 secrets: @@ -42922,7 +43113,7 @@ paths: description: Response content: application/json: - schema: &296 + schema: &297 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -42957,7 +43148,7 @@ paths: - key_id - key examples: - default: &297 + default: &298 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42983,7 +43174,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *87 - - &290 + - &291 name: secret_name description: The name of the secret. in: path @@ -42995,9 +43186,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: &298 + default: &299 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43026,7 +43217,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43083,7 +43274,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43110,7 +43301,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -43137,7 +43328,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -43155,9 +43346,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: &294 + default: &295 value: total_count: 1 repositories: @@ -43250,7 +43441,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43303,7 +43494,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43337,7 +43528,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43370,7 +43561,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *87 - - &299 + - &300 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)." @@ -43394,7 +43585,7 @@ paths: type: integer variables: type: array - items: &292 + items: &293 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -43442,7 +43633,7 @@ paths: - updated_at - visibility examples: - default: &300 + default: &301 value: total_count: 3 variables: @@ -43532,7 +43723,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43558,7 +43749,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *87 - - &293 + - &294 name: name description: The name of the variable. in: path @@ -43570,9 +43761,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &301 + default: &302 value: name: USERNAME value: octocat @@ -43601,7 +43792,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -43664,7 +43855,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -43691,7 +43882,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -43709,9 +43900,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -43738,7 +43929,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -43788,7 +43979,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -43823,7 +44014,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -43875,9 +44066,9 @@ paths: type: integer secrets: type: array - items: *289 + items: *290 examples: - default: *295 + default: *296 headers: Link: *45 x-github: @@ -43908,9 +44099,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43933,15 +44124,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43964,7 +44155,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -44021,7 +44212,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -44048,7 +44239,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -44075,7 +44266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -44093,9 +44284,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44119,7 +44310,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -44172,7 +44363,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -44206,7 +44397,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -44240,7 +44431,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *87 - - *299 + - *300 - *19 responses: '200': @@ -44257,9 +44448,9 @@ paths: type: integer variables: type: array - items: *292 + items: *293 examples: - default: *300 + default: *301 headers: Link: *45 x-github: @@ -44330,7 +44521,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -44356,15 +44547,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '200': description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *301 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44386,7 +44577,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44449,7 +44640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -44476,7 +44667,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -44494,9 +44685,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -44523,7 +44714,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44573,7 +44764,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44608,7 +44799,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44666,7 +44857,7 @@ paths: required: true content: application/json: - schema: *302 + schema: *303 examples: default: *85 parameters: @@ -44853,7 +45044,7 @@ paths: type: integer deployment_records: type: array - items: &303 + items: &304 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -44900,7 +45091,7 @@ paths: required: - total_count examples: - default: &304 + default: &305 value: total_count: 1 deployment_records: @@ -45082,11 +45273,11 @@ paths: type: integer deployment_records: type: array - items: *303 + items: *304 required: - total_count examples: - default: *304 + default: *305 '403': description: Forbidden content: @@ -45338,9 +45529,9 @@ paths: - 3 deployment_records: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45470,12 +45661,12 @@ paths: required: - subject_digests examples: - default: &857 + default: &858 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &858 + withPredicateType: &859 value: subject_digests: - sha256:abc123 @@ -45534,7 +45725,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &859 + default: &860 value: attestations_subject_digests: - sha256:abc: @@ -45885,7 +46076,7 @@ paths: initiator: type: string examples: - default: &520 + default: &521 value: attestations: - bundle: @@ -46011,7 +46202,7 @@ paths: required: false schema: type: string - - *305 + - *306 - *127 - *128 - *129 @@ -46023,9 +46214,9 @@ paths: application/json: schema: type: array - items: *306 + items: *307 examples: - default: *307 + default: *308 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46148,7 +46339,7 @@ paths: subcategory: bypass-requests parameters: - *87 - - &310 + - &311 name: repository_name description: The name of the repository to filter on. in: query @@ -46167,9 +46358,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -46193,7 +46384,7 @@ paths: subcategory: delegated-bypass parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 @@ -46207,9 +46398,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -46236,7 +46427,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &314 + schema: &315 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -46262,7 +46453,7 @@ paths: application/json: schema: type: array - items: &315 + items: &316 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -46293,7 +46484,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *313 + items: *314 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -46312,7 +46503,7 @@ paths: - string - 'null' format: date-time - state: *314 + state: *315 contact_link: description: The contact link of the campaign. type: @@ -46535,9 +46726,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: &316 + default: &317 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -46620,9 +46811,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '404': *6 '422': description: Unprocessable Entity @@ -46700,7 +46891,7 @@ paths: - string - 'null' format: uri - state: *314 + state: *315 examples: default: value: @@ -46710,9 +46901,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '400': description: Bad Request content: @@ -46779,8 +46970,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *87 - - *317 - *318 + - *319 - *108 - *109 - *19 @@ -46791,7 +46982,7 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: sort description: The property by which to sort the results. in: query @@ -46807,7 +46998,7 @@ paths: be returned. in: query required: false - schema: &545 + schema: &546 type: string description: Severity of a code scanning alert. enum: @@ -46833,9 +47024,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 headers: Link: *45 '404': *6 @@ -47210,7 +47401,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47238,9 +47429,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '304': *35 '403': *27 '404': *6 @@ -47329,7 +47520,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 '304': *35 '403': *27 '404': *6 @@ -47774,7 +47965,7 @@ paths: default: value: default_for_new_repos: all - configuration: *322 + configuration: *323 '403': *27 '404': *6 x-github: @@ -47827,13 +48018,13 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *326 + repository: *327 '403': *27 '404': *6 x-github: @@ -47873,7 +48064,7 @@ paths: type: integer codespaces: type: array - items: &391 + items: &392 type: object title: Codespace description: A codespace. @@ -47904,11 +48095,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *280 + repository: *281 machine: anyOf: - type: 'null' - - &577 + - &578 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -48195,7 +48386,7 @@ paths: - pulls_url - recent_folders examples: - default: &392 + default: &393 value: total_count: 3 codespaces: @@ -48819,7 +49010,7 @@ paths: type: integer secrets: type: array - items: &327 + items: &328 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -48860,7 +49051,7 @@ paths: - updated_at - visibility examples: - default: &578 + default: &579 value: total_count: 2 secrets: @@ -48898,7 +49089,7 @@ paths: description: Response content: application/json: - schema: &579 + schema: &580 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -48933,7 +49124,7 @@ paths: - key_id - key examples: - default: &580 + default: &581 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -48957,15 +49148,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &582 + default: &583 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48993,7 +49184,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -49048,7 +49239,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -49075,7 +49266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -49101,7 +49292,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -49119,9 +49310,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '404': *6 x-github: githubCloudOnly: false @@ -49144,7 +49335,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -49195,7 +49386,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -49229,7 +49420,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -49299,7 +49490,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &328 + items: &329 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -49696,9 +49887,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &329 + default: &330 summary: Example response for an organization copilot space value: id: 84 @@ -49803,9 +49994,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 x-github: @@ -49934,9 +50125,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 '422': *15 @@ -50019,7 +50210,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &330 + items: &331 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -50244,7 +50435,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -50374,7 +50565,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -50525,7 +50716,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &331 + items: &332 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -50669,7 +50860,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50685,7 +50876,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50740,7 +50931,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50809,7 +51000,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51537,12 +51728,12 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 required: - total_count - repositories examples: - default: *332 + default: *333 '500': *38 '401': *23 '403': *27 @@ -51628,7 +51819,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -51662,7 +51853,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -51810,7 +52001,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': *333 + '413': *334 '422': *7 x-github: githubCloudOnly: @@ -52266,7 +52457,7 @@ paths: - 3 custom_roles: type: array - items: *334 + items: *335 examples: default: value: @@ -52358,7 +52549,7 @@ paths: required: true content: application/json: - schema: &336 + schema: &337 type: object properties: name: @@ -52400,9 +52591,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52433,9 +52624,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52463,7 +52654,7 @@ paths: required: true content: application/json: - schema: &337 + schema: &338 type: object properties: name: @@ -52502,9 +52693,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52562,7 +52753,7 @@ paths: required: true content: application/json: - schema: *336 + schema: *337 examples: default: value: @@ -52576,9 +52767,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52615,9 +52806,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52651,7 +52842,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *338 examples: default: value: @@ -52666,9 +52857,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52728,12 +52919,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *87 - - *338 - *339 - *340 - *341 - *342 - *343 + - *344 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -52763,7 +52954,7 @@ paths: enum: - patch - deployment - - *344 + - *345 - name: runtime_risk in: query description: |- @@ -52772,8 +52963,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *345 - *346 + - *347 - *110 - *108 - *109 @@ -52785,9 +52976,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *348 + default: *349 '304': *35 '400': *14 '403': *27 @@ -52836,9 +53027,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *350 examples: - default: *350 + default: *351 '403': *27 '404': *6 x-github: @@ -53002,7 +53193,7 @@ paths: type: integer secrets: type: array - items: &351 + items: &352 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -53081,7 +53272,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -53100,7 +53291,7 @@ paths: - key_id - key examples: - default: &611 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -53124,13 +53315,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -53159,7 +53350,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -53216,7 +53407,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -53241,7 +53432,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -53266,7 +53457,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -53284,9 +53475,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53308,7 +53499,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -53359,7 +53550,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53391,7 +53582,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53428,7 +53619,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - &620 + - &621 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -53436,7 +53627,7 @@ paths: required: false schema: type: string - - &621 + - &622 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -53444,7 +53635,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: time_period description: |- The time period to filter by. @@ -53460,7 +53651,7 @@ paths: - week - month default: month - - &623 + - &624 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -53475,7 +53666,7 @@ paths: - denied - all default: all - - *310 + - *311 - *17 - *19 responses: @@ -53485,7 +53676,7 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -53595,7 +53786,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &353 + items: &354 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -53648,7 +53839,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &625 + default: &626 value: - id: 21 number: 42 @@ -53736,11 +53927,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -53750,7 +53941,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -53860,7 +54051,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *353 + items: *354 url: type: string format: uri @@ -53873,7 +54064,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &627 + default: &628 value: - id: 21 number: 42 @@ -53961,11 +54152,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -53975,9 +54166,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -54003,7 +54194,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Package description: A software package type: object @@ -54056,7 +54247,7 @@ paths: repository: anyOf: - type: 'null' - - *280 + - *281 created_at: type: string format: date-time @@ -54074,7 +54265,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &403 value: - id: 197 name: hello_docker @@ -54162,7 +54353,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -54261,7 +54452,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &472 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -54351,7 +54542,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &472 + default: &473 value: group_id: '123' group_name: Octocat admins @@ -54406,7 +54597,7 @@ paths: description: Response content: application/json: - schema: &468 + schema: &469 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -54446,7 +54637,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &469 + default: &470 value: groups: - group_id: '123' @@ -54491,7 +54682,7 @@ paths: application/json: schema: type: array - items: &380 + items: &381 title: Organization Invitation description: Organization Invitation type: object @@ -54545,7 +54736,7 @@ paths: - invitation_teams_url - node_id examples: - default: &381 + default: &382 value: - id: 1 login: monalisa @@ -54612,7 +54803,7 @@ paths: application/json: schema: type: array - items: &432 + items: &433 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -54626,7 +54817,7 @@ paths: - name - description examples: - default: &433 + default: &434 value: - name: add_assignee description: Assign or remove a user @@ -54667,7 +54858,7 @@ paths: application/json: schema: type: array - items: &356 + items: &357 title: Org Hook description: Org Hook type: object @@ -54850,9 +55041,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: &357 + default: &358 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -54897,7 +55088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *87 - - &358 + - &359 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. @@ -54910,9 +55101,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *357 + default: *358 '404': *6 x-github: githubCloudOnly: false @@ -54934,7 +55125,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -54980,7 +55171,7 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: default: value: @@ -55020,7 +55211,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -55046,7 +55237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 responses: '200': description: Response @@ -55075,7 +55266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -55124,10 +55315,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *87 - - *358 - - *17 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -55135,9 +55326,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -55161,16 +55352,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -55194,7 +55385,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '202': *37 @@ -55221,7 +55412,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -55244,7 +55435,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *87 - - &369 + - &370 name: actor_type in: path description: The type of the actor @@ -55257,14 +55448,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &370 + - &371 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &365 + - &366 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`.' @@ -55272,7 +55463,7 @@ paths: required: true schema: type: string - - &366 + - &367 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) @@ -55367,12 +55558,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *87 - - *365 - *366 + - *367 - *19 - *17 - *110 - - &375 + - &376 name: sort description: The property to sort the results by. in: query @@ -55451,14 +55642,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *87 - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: &367 + schema: &368 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -55474,7 +55665,7 @@ paths: type: integer format: int64 examples: - default: &368 + default: &369 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -55495,23 +55686,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *87 - - &371 + - &372 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55530,18 +55721,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *87 - - *365 - *366 - - *369 + - *367 - *370 + - *371 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55559,9 +55750,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *87 - - *365 - *366 - - &372 + - *367 + - &373 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -55574,7 +55765,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &374 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -55590,7 +55781,7 @@ paths: type: integer format: int64 examples: - default: &374 + default: &375 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -55627,18 +55818,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *87 - - *371 - - *365 - - *366 - *372 + - *366 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -55656,19 +55847,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *87 - - *369 - *370 - - *365 + - *371 - *366 - - *372 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -55686,13 +55877,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *87 - - *371 - - *365 + - *372 - *366 + - *367 - *19 - *17 - *110 - - *375 + - *376 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -55776,7 +55967,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55896,12 +56087,12 @@ paths: application/json: schema: anyOf: - - &378 + - &379 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &377 + limit: &378 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -55929,7 +56120,7 @@ paths: properties: {} additionalProperties: false examples: - default: &379 + default: &380 value: limit: collaborators_only origin: organization @@ -55958,13 +56149,13 @@ paths: required: true content: application/json: - schema: &656 + schema: &657 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *377 + limit: *378 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -55989,9 +56180,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *379 + default: *380 '422': *15 x-github: githubCloudOnly: false @@ -56069,9 +56260,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 '404': *6 @@ -56149,7 +56340,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *381 examples: default: value: @@ -56206,7 +56397,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *87 - - &382 + - &383 name: invitation_id description: The unique identifier of the invitation. in: path @@ -56240,7 +56431,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *87 - - *382 + - *383 - *17 - *19 responses: @@ -56250,9 +56441,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: &400 + default: &401 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -56295,7 +56486,7 @@ paths: application/json: schema: type: array - items: &383 + items: &384 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -56558,9 +56749,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: &384 + default: &385 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -56616,7 +56807,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *87 - - &385 + - &386 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -56726,9 +56917,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: *384 + default: *385 '404': *6 '422': *7 x-github: @@ -56753,7 +56944,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *87 - - *385 + - *386 responses: '204': *126 '404': *6 @@ -56783,9 +56974,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: &660 + default: &661 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -56871,9 +57062,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -56906,7 +57097,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *87 - - &388 + - &389 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -56962,9 +57153,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 '422': *7 x-github: @@ -56989,7 +57180,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *87 - - *388 + - *389 responses: '204': description: Response @@ -57052,7 +57243,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: type description: Can be the name of an issue type. in: query @@ -57071,7 +57262,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -57081,9 +57272,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -57242,9 +57433,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -57271,7 +57462,7 @@ paths: parameters: - *87 - *143 - - &393 + - &394 name: codespace_name in: path required: true @@ -57306,15 +57497,15 @@ paths: parameters: - *87 - *143 - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: &576 + default: &577 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -57570,7 +57761,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &395 title: Org Membership description: Org Membership type: object @@ -57639,7 +57830,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &395 + response-if-user-has-an-active-admin-membership-with-organization: &396 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -57740,9 +57931,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: - response-if-user-already-had-membership-with-organization: *395 + response-if-user-already-had-membership-with-organization: *396 '422': *15 '403': *27 x-github: @@ -57814,7 +58005,7 @@ paths: application/json: schema: type: array - items: &396 + items: &397 title: Migration description: A migration. type: object @@ -58152,7 +58343,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -58331,7 +58522,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *87 - - &397 + - &398 name: migration_id description: The unique identifier of the migration. in: path @@ -58359,7 +58550,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -58529,7 +58720,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '302': description: Response @@ -58551,7 +58742,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '204': description: Response @@ -58575,8 +58766,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *87 - - *397 - - &840 + - *398 + - &841 name: repo_name description: repo_name parameter in: path @@ -58604,7 +58795,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *87 - - *397 + - *398 - *17 - *19 responses: @@ -58614,9 +58805,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: &407 + default: &408 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -58827,7 +59018,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &398 + items: &399 title: Organization Role description: Organization roles type: object @@ -59036,7 +59227,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59266,7 +59457,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59363,7 +59554,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59522,7 +59713,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 type: description: The ownership type of the team type: string @@ -59555,7 +59746,7 @@ paths: - type - parent examples: - default: *400 + default: *401 headers: Link: *45 '404': @@ -59614,7 +59805,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *399 + items: *400 name: type: - string @@ -59924,7 +60115,7 @@ paths: - nuget - container - *87 - - &841 + - &842 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -59960,12 +60151,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 '403': *27 '401': *23 - '400': &843 + '400': &844 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -59987,7 +60178,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &403 + - &404 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 @@ -60005,7 +60196,7 @@ paths: - docker - nuget - container - - &404 + - &405 name: package_name description: The name of the package. in: path @@ -60018,7 +60209,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -60070,8 +60261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 responses: '204': @@ -60104,8 +60295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - name: token description: package token @@ -60138,8 +60329,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: - - *403 - *404 + - *405 - *87 - *19 - *17 @@ -60160,7 +60351,7 @@ paths: application/json: schema: type: array - items: &405 + items: &406 title: Package Version description: A version of a software package type: object @@ -60295,10 +60486,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: - - *403 - *404 + - *405 - *87 - - &406 + - &407 name: package_version_id description: Unique identifier of the package version. in: path @@ -60310,7 +60501,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -60346,10 +60537,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -60381,10 +60572,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -60414,7 +60605,7 @@ paths: - *87 - *17 - *19 - - &408 + - &409 name: sort description: The property by which to sort the results. in: query @@ -60425,7 +60616,7 @@ paths: - created_at default: created_at - *110 - - &409 + - &410 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -60437,7 +60628,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &410 + - &411 name: repository description: The name of the repository to use to filter the results. in: query @@ -60446,7 +60637,7 @@ paths: type: string examples: - Hello-World - - &411 + - &412 name: permission description: The permission to use to filter the results. in: query @@ -60455,7 +60646,7 @@ paths: type: string examples: - issues_read - - &412 + - &413 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) @@ -60465,7 +60656,7 @@ paths: schema: type: string format: date-time - - &413 + - &414 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) @@ -60475,7 +60666,7 @@ paths: schema: type: string format: date-time - - &414 + - &415 name: token_id description: The ID of the token in: query @@ -60792,9 +60983,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -60820,14 +61011,14 @@ paths: - *87 - *17 - *19 - - *408 - - *110 - *409 + - *110 - *410 - *411 - *412 - *413 - *414 + - *415 responses: '500': *38 '422': *15 @@ -61109,9 +61300,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -61153,7 +61344,7 @@ paths: type: integer configurations: type: array - items: &415 + items: &416 title: Organization private registry description: Private registry configuration for an organization type: object @@ -61670,7 +61861,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &416 + org-private-registry-with-selected-visibility: &417 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -61762,15 +61953,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *415 + schema: *416 examples: - default: *416 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -61793,7 +61984,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -61982,7 +62173,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -62022,7 +62213,7 @@ paths: application/json: schema: type: array - items: &417 + items: &418 title: Projects v2 Project description: A projects v2 project type: object @@ -62096,7 +62287,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &930 + - &931 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -62181,7 +62372,7 @@ paths: - deleted_at - deleted_by examples: - default: &418 + default: &419 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -62284,7 +62475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &419 + - &420 name: project_number description: The project's number. in: path @@ -62297,9 +62488,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -62322,7 +62513,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -62356,7 +62547,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &425 title: Projects v2 Item description: An item belonging to a project type: object @@ -62369,8 +62560,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *221 - - &591 + - *222 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -62490,7 +62681,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -62539,7 +62730,7 @@ paths: items: *4 requested_teams: type: array - items: *313 + items: *314 head: type: object properties: @@ -62583,7 +62774,7 @@ paths: _links: type: object properties: - comments: &421 + comments: &422 title: Link description: Hypermedia Link type: object @@ -62592,13 +62783,13 @@ paths: type: string required: - href - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -62608,8 +62799,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: &720 + author_association: *219 + auto_merge: &721 title: Auto merge description: The status of auto merging a pull request. type: @@ -62711,7 +62902,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &423 + content_type: &424 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -62755,7 +62946,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &425 + draft_issue: &426 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -62829,7 +63020,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *419 + - *420 - *87 - *17 - *108 @@ -62841,7 +63032,7 @@ paths: application/json: schema: type: array - items: &422 + items: &423 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -62994,7 +63185,7 @@ paths: - updated_at - project_url examples: - default: &863 + default: &864 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63124,7 +63315,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *419 + - *420 - *87 requestBody: required: true @@ -63171,7 +63362,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &864 + items: &865 type: object properties: name: @@ -63208,7 +63399,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &865 + iteration_configuration: &866 type: object description: The configuration for iteration fields. properties: @@ -63258,7 +63449,7 @@ paths: value: name: Due date data_type: date - single_select_field: &866 + single_select_field: &867 summary: Create a single select field value: name: Priority @@ -63285,7 +63476,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &867 + iteration_field: &868 summary: Create an iteration field value: name: Sprint @@ -63309,9 +63500,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *422 + schema: *423 examples: - text_field: &868 + text_field: &869 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -63320,7 +63511,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &869 + number_field: &870 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -63329,7 +63520,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &870 + date_field: &871 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -63338,7 +63529,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &871 + single_select_field: &872 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63372,7 +63563,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &872 + iteration_field: &873 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -63417,8 +63608,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *419 - - &873 + - *420 + - &874 name: field_id description: The unique identifier of the field. in: path @@ -63431,9 +63622,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: &874 + default: &875 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63489,7 +63680,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: - - *419 + - *420 - *87 - 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) @@ -63522,7 +63713,7 @@ paths: application/json: schema: type: array - items: &426 + items: &427 title: Projects v2 Item description: An item belonging to a project type: object @@ -63539,7 +63730,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: *423 + content_type: *424 content: type: - object @@ -63589,7 +63780,7 @@ paths: - updated_at - archived_at examples: - default: &427 + default: &428 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -64287,7 +64478,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -64357,22 +64548,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -64392,9 +64583,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: - - *419 + - *420 - *87 - - &428 + - &429 name: item_id description: The unique identifier of the project item. in: path @@ -64420,9 +64611,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -64443,9 +64634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -64518,13 +64709,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -64544,9 +64735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 responses: '204': description: Response @@ -64570,7 +64761,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true content: @@ -64644,7 +64835,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &854 + schema: &855 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -64748,7 +64939,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &429 + value: &430 value: id: 1 number: 1 @@ -64794,10 +64985,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -64825,9 +65016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *419 + - *420 - *87 - - &875 + - &876 name: view_number description: The number that identifies the project view. in: path @@ -64859,9 +65050,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -65025,7 +65216,7 @@ paths: required: true content: application/json: - schema: *430 + schema: *431 examples: default: value: @@ -65391,9 +65582,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -65597,7 +65788,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &480 title: Full Repository description: Full Repository type: object @@ -66056,7 +66247,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -66075,7 +66266,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &596 + code_of_conduct: &597 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -66105,7 +66296,7 @@ paths: - key - name - html_url - security_and_analysis: *431 + security_and_analysis: *432 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -66189,7 +66380,7 @@ paths: - network_count - subscribers_count examples: - default: &481 + default: &482 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -66715,9 +66906,9 @@ paths: application/json: schema: type: array - items: *432 + items: *433 examples: - default: *433 + default: *434 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -66742,7 +66933,7 @@ paths: - *87 - *17 - *19 - - &743 + - &744 name: targets description: | A comma-separated list of rule targets to filter by. @@ -66834,11 +67025,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: type: array description: An array of rules within the ruleset. - items: &436 + items: &437 title: Repository Rule type: object description: A repository rule. @@ -66903,7 +67094,7 @@ paths: application/json: schema: *190 examples: - default: &435 + default: &436 value: id: 21 name: super cool ruleset @@ -66959,7 +67150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *87 - - &745 + - &746 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 @@ -66969,16 +67160,16 @@ paths: schema: type: string x-multi-segment: true - - *310 + - *311 - *105 - - &746 + - &747 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 - - &747 + - &748 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -66991,7 +67182,7 @@ paths: - bypass - all default: all - - &748 + - &749 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -67014,7 +67205,7 @@ paths: description: Response content: application/json: - schema: &749 + schema: &750 title: Rule Suites description: Response type: array @@ -67070,7 +67261,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &750 + default: &751 value: - id: 21 actor_id: 12 @@ -67114,7 +67305,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &751 + - &752 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -67130,7 +67321,7 @@ paths: description: Response content: application/json: - schema: &752 + schema: &753 title: Rule Suite description: Response type: object @@ -67237,7 +67428,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &753 + default: &754 value: id: 21 actor_id: 12 @@ -67312,7 +67503,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '500': *38 put: @@ -67361,11 +67552,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: description: An array of rules within the ruleset. type: array - items: *436 + items: *437 examples: default: value: @@ -67402,7 +67593,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '422': *15 '500': *38 @@ -67462,7 +67653,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -67499,7 +67690,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -67562,7 +67753,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *87 - - *439 - *440 - *441 - *442 @@ -67570,10 +67760,11 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - &755 + - &756 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 @@ -67583,7 +67774,7 @@ paths: required: false schema: type: string - - &756 + - &757 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 @@ -67593,13 +67784,13 @@ paths: required: false schema: type: string - - *447 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -67607,9 +67798,9 @@ paths: application/json: schema: type: array - items: *454 + items: *455 examples: - default: *455 + default: *456 headers: Link: *45 '404': *6 @@ -67644,9 +67835,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: - default: *457 + default: *458 '403': *27 '404': *6 patch: @@ -67799,7 +67990,7 @@ paths: application/json: schema: type: array - items: &777 + items: &778 description: A repository security advisory. type: object properties: @@ -68043,7 +68234,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 credits_detailed: type: - array @@ -68054,7 +68245,7 @@ paths: type: object properties: user: *4 - type: *458 + type: *459 state: type: string description: The state of the user's acceptance of the @@ -68080,7 +68271,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *313 + items: *314 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -68118,7 +68309,7 @@ paths: - private_fork additionalProperties: false examples: - default: &778 + default: &779 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -68505,7 +68696,7 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: default: value: @@ -68604,7 +68795,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *87 - - *459 + - *460 - *17 - *19 responses: @@ -68612,9 +68803,9 @@ paths: description: Success content: application/json: - schema: *460 + schema: *461 examples: - default: *461 + default: *462 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -68760,9 +68951,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68831,7 +69022,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -68854,7 +69045,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -68897,7 +69088,7 @@ paths: type: array items: *148 examples: - default: *462 + default: *463 headers: Link: *45 x-github: @@ -69126,15 +69317,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: - *87 - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *465 + default: *466 headers: Link: *45 x-github: @@ -69172,7 +69363,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -69224,7 +69415,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &477 + default: &478 value: groups: - group_id: '123' @@ -69279,9 +69470,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '403': *27 @@ -69375,7 +69566,7 @@ paths: description: Response content: application/json: - schema: &466 + schema: &467 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -69449,7 +69640,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 members_count: type: integer examples: @@ -69774,7 +69965,7 @@ paths: - repos_count - organization examples: - default: &467 + default: &468 value: id: 1 node_id: MDQ6VGVhbTE= @@ -69851,9 +70042,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -69938,16 +70129,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -69977,7 +70168,7 @@ paths: responses: '204': description: Response - '422': &470 + '422': &471 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -70006,10 +70197,10 @@ paths: description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 - '422': *470 + default: *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -70053,10 +70244,10 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 - '422': *470 + default: *473 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70080,7 +70271,7 @@ paths: responses: '204': description: Response - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70112,12 +70303,12 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 - '422': *470 + '422': *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70161,7 +70352,7 @@ paths: application/json: schema: type: array - items: &819 + items: &820 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -70304,7 +70495,7 @@ paths: - type - url examples: - default: &820 + default: &821 value: - login: octocat id: 1 @@ -70363,7 +70554,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &474 title: Team Membership description: Team Membership type: object @@ -70391,7 +70582,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &821 + response-if-user-is-a-team-maintainer: &822 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -70454,9 +70645,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: &822 + response-if-users-membership-with-team-is-now-pending: &823 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -70530,9 +70721,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -70563,14 +70754,14 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &823 + schema: &824 title: Team Repository description: A team's access to a repository. type: object @@ -70596,7 +70787,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 forks: type: integer permissions: @@ -71213,8 +71404,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 requestBody: required: false content: @@ -71261,8 +71452,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '204': description: Response @@ -71295,10 +71486,10 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 - '422': *470 + default: *478 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71364,7 +71555,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -71376,7 +71567,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71408,9 +71599,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: &824 + response-if-child-teams-exist: &825 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -71563,7 +71754,7 @@ paths: resources: type: object properties: - core: &478 + core: &479 title: Rate Limit type: object properties: @@ -71580,21 +71771,21 @@ paths: - remaining - reset - used - graphql: *478 - search: *478 - code_search: *478 - source_import: *478 - integration_manifest: *478 - actions_runner_registration: *478 - scim: *478 - dependency_snapshots: *478 - dependency_sbom: *478 - code_scanning_autofix: *478 - copilot_usage_records: *478 + graphql: *479 + search: *479 + code_search: *479 + source_import: *479 + integration_manifest: *479 + actions_runner_registration: *479 + scim: *479 + dependency_snapshots: *479 + dependency_sbom: *479 + code_scanning_autofix: *479 + copilot_usage_records: *479 required: - core - search - rate: *478 + rate: *479 required: - rate - resources @@ -71694,14 +71885,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *479 + schema: *480 examples: default-response: summary: Default response @@ -72210,7 +72401,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72228,8 +72419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -72550,10 +72741,10 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 - '307': &482 + default: *482 + '307': &483 description: Temporary Redirect content: application/json: @@ -72582,8 +72773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -72605,7 +72796,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *482 + '307': *483 '404': *6 '409': *119 x-github: @@ -72629,11 +72820,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 - - &498 + - &499 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -72656,7 +72847,7 @@ paths: type: integer artifacts: type: array - items: &483 + items: &484 title: Artifact description: An artifact type: object @@ -72751,7 +72942,7 @@ paths: - expires_at - updated_at examples: - default: &499 + default: &500 value: total_count: 2 artifacts: @@ -72812,9 +73003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *474 - *475 - - &484 + - *476 + - &485 name: artifact_id description: The unique identifier of the artifact. in: path @@ -72826,7 +73017,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -72864,9 +73055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 responses: '204': description: Response @@ -72890,9 +73081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 - name: archive_format in: path required: true @@ -72902,11 +73093,11 @@ paths: '302': description: Response headers: - Location: &613 + Location: &614 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': &661 + '410': &662 description: Gone content: application/json: @@ -72931,14 +73122,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &485 + schema: &486 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -72972,13 +73163,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *485 + schema: *486 examples: selected_actions: *42 responses: @@ -73007,14 +73198,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &486 + schema: &487 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -73048,13 +73239,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *486 + schema: *487 examples: selected_actions: *44 responses: @@ -73085,14 +73276,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *487 + schema: *488 examples: default: value: @@ -73118,11 +73309,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: - - *474 - *475 + - *476 - *17 - *19 - - &488 + - &489 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 @@ -73156,7 +73347,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: Repository actions caches description: Repository actions caches type: object @@ -73206,7 +73397,7 @@ paths: - total_count - actions_caches examples: - default: &490 + default: &491 value: total_count: 1 actions_caches: @@ -73238,23 +73429,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: - - *474 - *475 + - *476 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *488 + - *489 responses: '200': description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 + default: *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73274,8 +73465,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: - - *474 - *475 + - *476 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -73304,8 +73495,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *109 responses: @@ -73388,8 +73579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *474 - *475 + - *476 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -73545,9 +73736,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: - - *474 - *475 - - &491 + - *476 + - &492 name: job_id description: The unique identifier of the job. in: path @@ -73559,7 +73750,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Job description: Information of a job execution in a workflow run type: object @@ -73906,9 +74097,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: - - *474 - *475 - - *491 + - *476 + - *492 responses: '302': description: Response @@ -73936,9 +74127,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: - - *474 - *475 - - *491 + - *476 + - *492 requestBody: required: false content: @@ -73965,7 +74156,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -73989,8 +74180,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: - - *474 - *475 + - *476 responses: '200': description: Status response @@ -74049,8 +74240,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -74089,7 +74280,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -74118,8 +74309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -74137,7 +74328,7 @@ paths: type: integer secrets: type: array - items: &504 + items: &505 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -74158,7 +74349,7 @@ paths: - created_at - updated_at examples: - default: &505 + default: &506 value: total_count: 2 secrets: @@ -74191,9 +74382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -74210,7 +74401,7 @@ paths: type: integer variables: type: array - items: &506 + items: &507 title: Actions Variable type: object properties: @@ -74244,7 +74435,7 @@ paths: - created_at - updated_at examples: - default: &507 + default: &508 value: total_count: 2 variables: @@ -74277,8 +74468,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74287,11 +74478,11 @@ paths: schema: type: object properties: - enabled: &492 + enabled: &493 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled @@ -74322,8 +74513,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74334,7 +74525,7 @@ paths: schema: type: object properties: - enabled: *492 + enabled: *493 allowed_actions: *60 sha_pinning_required: *61 required: @@ -74367,14 +74558,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &493 + schema: &494 type: object properties: access_level: @@ -74392,7 +74583,7 @@ paths: required: - access_level examples: - default: &494 + default: &495 value: access_level: organization x-github: @@ -74417,15 +74608,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 responses: '204': description: Response @@ -74449,14 +74640,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -74480,8 +74671,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: - - *474 - *475 + - *476 responses: '204': description: Empty response for successful settings update @@ -74491,7 +74682,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: default: summary: Set retention days @@ -74515,8 +74706,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74524,7 +74715,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -74543,8 +74734,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74578,14 +74769,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -74607,13 +74798,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -74639,8 +74830,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74671,8 +74862,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74704,14 +74895,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -74734,8 +74925,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: - - *474 - *475 + - *476 responses: '204': description: Success response @@ -74746,7 +74937,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -74775,8 +74966,8 @@ paths: in: query schema: type: string - - *474 - *475 + - *476 - *17 - *19 responses: @@ -74820,8 +75011,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74829,9 +75020,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74853,8 +75044,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -74897,7 +75088,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -74928,8 +75119,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -74937,7 +75128,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74965,8 +75156,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -74974,7 +75165,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74996,8 +75187,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: - - *474 - *475 + - *476 - *75 responses: '200': @@ -75006,7 +75197,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75027,8 +75218,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: - - *474 - *475 + - *476 - *75 responses: '204': @@ -75055,8 +75246,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: - - *474 - *475 + - *476 - *75 responses: '200': *81 @@ -75081,8 +75272,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -75131,8 +75322,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -75182,11 +75373,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: - - *474 - *475 + - *476 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -75213,10 +75404,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: - - *474 - *475 + - *476 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -75244,9 +75435,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: - - *474 - *475 - - &510 + - *476 + - &511 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. @@ -75254,7 +75445,7 @@ paths: required: false schema: type: string - - &511 + - &512 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -75262,7 +75453,7 @@ paths: required: false schema: type: string - - &512 + - &513 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -75271,7 +75462,7 @@ paths: required: false schema: type: string - - &513 + - &514 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 @@ -75298,7 +75489,7 @@ paths: - pending - *17 - *19 - - &514 + - &515 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)." @@ -75307,7 +75498,7 @@ paths: schema: type: string format: date-time - - &495 + - &496 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -75316,13 +75507,13 @@ paths: schema: type: boolean default: false - - &515 + - &516 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &516 + - &517 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -75345,7 +75536,7 @@ paths: type: integer workflow_runs: type: array - items: &496 + items: &497 title: Workflow Run description: An invocation of a workflow type: object @@ -75462,7 +75653,7 @@ paths: type: - array - 'null' - items: *224 + items: *225 created_at: type: string format: date-time @@ -75523,7 +75714,7 @@ paths: head_commit: anyOf: - type: 'null' - - &540 + - &541 title: Simple Commit description: A commit. type: object @@ -75597,8 +75788,8 @@ paths: - timestamp - author - committer - repository: *280 - head_repository: *280 + repository: *281 + head_repository: *281 head_repository_id: type: integer examples: @@ -75638,7 +75829,7 @@ paths: - workflow_url - pull_requests examples: - default: &517 + default: &518 value: total_count: 1 workflow_runs: @@ -75874,24 +76065,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *474 - *475 - - &497 + - *476 + - &498 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &500 + default: &501 value: id: 30433642 name: Build @@ -76132,9 +76323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -76157,9 +76348,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -76287,15 +76478,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76322,12 +76513,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *19 - - *498 + - *499 - *110 responses: '200': @@ -76344,9 +76535,9 @@ paths: type: integer artifacts: type: array - items: *483 + items: *484 examples: - default: *499 + default: *500 headers: Link: *45 x-github: @@ -76370,25 +76561,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *474 - *475 - - *497 - - &501 + - *476 + - *498 + - &502 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *500 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76411,10 +76602,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: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 - *17 - *19 responses: @@ -76432,9 +76623,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: &503 + default: &504 value: total_count: 1 jobs: @@ -76547,10 +76738,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 responses: '302': description: Response @@ -76578,15 +76769,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76626,9 +76817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *108 - *109 @@ -76805,9 +76996,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -76874,15 +77065,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76909,9 +77100,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: - - *474 - *475 - - *497 + - *476 + - *498 - 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 @@ -76941,9 +77132,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: *503 + default: *504 headers: Link: *45 x-github: @@ -76968,9 +77159,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '302': description: Response @@ -76997,9 +77188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -77026,9 +77217,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -77097,7 +77288,7 @@ paths: items: type: object properties: - type: &628 + type: &629 type: string description: The type of reviewer. enum: @@ -77108,7 +77299,7 @@ paths: reviewer: anyOf: - *4 - - *313 + - *314 required: - environment - wait_timer @@ -77183,9 +77374,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -77235,7 +77426,7 @@ paths: application/json: schema: type: array - items: &615 + items: &616 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -77347,7 +77538,7 @@ paths: - created_at - updated_at examples: - default: &616 + default: &617 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -77403,9 +77594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -77427,7 +77618,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77450,9 +77641,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -77474,7 +77665,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77507,9 +77698,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -77646,8 +77837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -77665,9 +77856,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -77692,16 +77883,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77723,17 +77914,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: &518 + default: &519 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -77759,9 +77950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -77792,7 +77983,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77818,9 +78009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -77845,9 +78036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -77864,9 +78055,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -77889,8 +78080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -77917,7 +78108,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77942,17 +78133,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &519 + default: &520 value: name: USERNAME value: octocat @@ -77978,9 +78169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -78022,9 +78213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -78049,8 +78240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78068,7 +78259,7 @@ paths: type: integer workflows: type: array - items: &508 + items: &509 title: Workflow description: A GitHub Actions workflow type: object @@ -78186,9 +78377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *474 - *475 - - &509 + - *476 + - &510 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -78203,7 +78394,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default: value: @@ -78236,9 +78427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -78263,9 +78454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -78352,9 +78543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -78381,19 +78572,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: - - *474 - *475 - - *509 + - *476 - *510 - *511 - *512 - *513 + - *514 - *17 - *19 - - *514 - - *495 - *515 + - *496 - *516 + - *517 responses: '200': description: Response @@ -78409,9 +78600,9 @@ paths: type: integer workflow_runs: type: array - items: *496 + items: *497 examples: - default: *517 + default: *518 headers: Link: *45 x-github: @@ -78444,9 +78635,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '200': description: Response @@ -78507,8 +78698,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *474 - *475 + - *476 - *110 - *17 - *108 @@ -78681,8 +78872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78700,9 +78891,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -78726,9 +78917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -78745,9 +78936,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -78772,8 +78963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78791,9 +78982,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -78818,16 +79009,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78849,17 +79040,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78881,9 +79072,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -78914,7 +79105,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78940,9 +79131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -78967,9 +79158,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -78986,9 +79177,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -79011,8 +79202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79039,7 +79230,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -79064,17 +79255,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79095,9 +79286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -79139,9 +79330,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -79162,8 +79353,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -79200,8 +79391,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: - - *474 - *475 + - *476 - name: assignee in: path required: true @@ -79237,8 +79428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79348,8 +79539,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *474 - *475 + - *476 - *17 - *108 - *109 @@ -79406,7 +79597,7 @@ paths: initiator: type: string examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79426,8 +79617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -79435,7 +79626,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Autolink reference description: An autolink reference. type: object @@ -79494,8 +79685,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79534,9 +79725,9 @@ paths: description: response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: id: 1 key_prefix: TICKET- @@ -79567,9 +79758,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: - - *474 - *475 - - &523 + - *476 + - &524 name: autolink_id description: The unique identifier of the autolink. in: path @@ -79581,9 +79772,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '404': *6 x-github: githubCloudOnly: false @@ -79603,9 +79794,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: - - *474 - *475 - - *523 + - *476 + - *524 responses: '204': description: Response @@ -79629,8 +79820,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: - - *474 - *475 + - *476 responses: '200': description: Response if Dependabot is enabled @@ -79680,8 +79871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -79702,8 +79893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -79723,8 +79914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *474 - *475 + - *476 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -79762,7 +79953,7 @@ paths: - url protected: type: boolean - protection: &525 + protection: &526 title: Branch Protection description: Branch Protection type: object @@ -79805,7 +79996,7 @@ paths: required: - contexts - checks - enforce_admins: &528 + enforce_admins: &529 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -79822,7 +80013,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &530 + required_pull_request_reviews: &531 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -79844,7 +80035,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *313 + items: *314 apps: description: The list of apps with review dismissal access. @@ -79876,7 +80067,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *313 + items: *314 apps: description: The list of apps allowed to bypass pull request requirements. @@ -79906,7 +80097,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &527 + restrictions: &528 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -79969,7 +80160,7 @@ paths: type: string teams: type: array - items: *313 + items: *314 apps: type: array items: @@ -80199,9 +80390,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *474 - *475 - - &526 + - *476 + - &527 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). @@ -80215,14 +80406,14 @@ paths: description: Response content: application/json: - schema: &536 + schema: &537 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &587 + commit: &588 title: Commit description: Commit type: object @@ -80261,7 +80452,7 @@ paths: author: anyOf: - type: 'null' - - &524 + - &525 title: Git User description: Metaproperties for Git author/committer information. @@ -80283,7 +80474,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 message: type: string examples: @@ -80307,7 +80498,7 @@ paths: required: - sha - url - verification: &646 + verification: &647 title: Verification type: object properties: @@ -80343,14 +80534,14 @@ paths: author: oneOf: - *4 - - *291 + - *292 type: - 'null' - object committer: oneOf: - *4 - - *291 + - *292 type: - 'null' - object @@ -80387,7 +80578,7 @@ paths: type: integer files: type: array - items: &598 + items: &599 title: Diff Entry description: Diff Entry type: object @@ -80483,7 +80674,7 @@ paths: - self protected: type: boolean - protection: *525 + protection: *526 protection_url: type: string format: uri @@ -80592,7 +80783,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *480 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -80614,15 +80805,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: default: value: @@ -80816,9 +81007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -81078,7 +81269,7 @@ paths: url: type: string format: uri - required_status_checks: &533 + required_status_checks: &534 title: Status Check Policy description: Status Check Policy type: object @@ -81159,7 +81350,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -81177,7 +81368,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -81237,7 +81428,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *527 + restrictions: *528 required_conversation_resolution: type: object properties: @@ -81349,9 +81540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81376,17 +81567,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -81408,17 +81599,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81437,9 +81628,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81464,17 +81655,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: &531 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -81570,9 +81761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81670,9 +81861,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '422': *15 x-github: githubCloudOnly: false @@ -81693,9 +81884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81722,17 +81913,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &532 + default: &533 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -81755,17 +81946,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *532 + default: *533 '404': *6 x-github: githubCloudOnly: false @@ -81785,9 +81976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81812,17 +82003,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &534 + default: &535 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -81848,9 +82039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81902,9 +82093,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '404': *6 '422': *15 x-github: @@ -81926,9 +82117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81952,9 +82143,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -81988,9 +82179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82057,9 +82248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82123,9 +82314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -82191,15 +82382,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: default: value: @@ -82290,9 +82481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82315,9 +82506,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82327,7 +82518,7 @@ paths: type: array items: *5 examples: - default: &535 + default: &536 value: - id: 1 slug: octoapp @@ -82384,9 +82575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82420,7 +82611,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -82441,9 +82632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82477,7 +82668,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -82498,9 +82689,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82534,7 +82725,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -82556,9 +82747,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82566,9 +82757,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -82588,9 +82779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82626,9 +82817,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82649,9 +82840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82687,9 +82878,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82710,9 +82901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -82747,9 +82938,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82771,9 +82962,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82807,9 +82998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82867,9 +83058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82927,9 +83118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82989,9 +83180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83013,7 +83204,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -83127,8 +83318,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -83142,9 +83333,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -83164,8 +83355,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -83179,7 +83370,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: default: value: @@ -83238,8 +83429,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -83253,9 +83444,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '403': *27 '500': *38 @@ -83279,8 +83470,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -83292,7 +83483,7 @@ paths: description: A single bypass request. content: application/json: - schema: *311 + schema: *312 examples: default: value: @@ -83350,8 +83541,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -83422,8 +83613,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_response_id in: path required: true @@ -83456,8 +83647,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -83736,7 +83927,7 @@ paths: description: Response content: application/json: - schema: &537 + schema: &538 title: CheckRun description: A check performed on the code of a given code change type: object @@ -83871,8 +84062,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *224 - deployment: &886 + items: *225 + deployment: &887 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -84159,9 +84350,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *474 - *475 - - &538 + - *476 + - &539 name: check_run_id description: The unique identifier of the check run. in: path @@ -84173,9 +84364,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: &539 + default: &540 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -84275,9 +84466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 requestBody: required: true content: @@ -84517,9 +84708,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84539,9 +84730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *474 - *475 - - *538 + - *476 + - *539 - *17 - *19 responses: @@ -84651,15 +84842,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -84697,8 +84888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -84720,7 +84911,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &541 + schema: &542 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -84802,12 +84993,12 @@ paths: type: - array - 'null' - items: *224 + items: *225 app: anyOf: - type: 'null' - *5 - repository: *280 + repository: *281 created_at: type: - string @@ -84818,7 +85009,7 @@ paths: - string - 'null' format: date-time - head_commit: *540 + head_commit: *541 latest_check_runs_count: type: integer check_runs_url: @@ -84846,7 +85037,7 @@ paths: - check_runs_url - pull_requests examples: - default: &542 + default: &543 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -85137,9 +85328,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85158,8 +85349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -85220,7 +85411,7 @@ paths: required: - app_id - setting - repository: *280 + repository: *281 examples: default: value: @@ -85468,9 +85659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *474 - *475 - - &543 + - *476 + - &544 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -85482,9 +85673,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85507,17 +85698,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: - - *474 - *475 - - *543 - - &593 + - *476 + - *544 + - &594 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &594 + - &595 name: status description: Returns check runs with the specified `status`. in: query @@ -85556,9 +85747,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: &595 + default: &596 value: total_count: 1 check_runs: @@ -85660,15 +85851,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *474 - *475 - - *543 + - *476 + - *544 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -85695,21 +85886,21 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - &559 + - &560 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: *544 - - &560 + schema: *545 + - &561 name: pr description: The number of the pull request for the results you want to list. in: query @@ -85734,13 +85925,13 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *545 + schema: *546 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -85764,7 +85955,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -85772,11 +85963,11 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 - rule: *549 - tool: *550 - most_recent_instance: *551 + dismissed_reason: *548 + dismissed_comment: *549 + rule: *550 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -85899,7 +86090,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &552 + '403': &553 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -85926,9 +86117,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: - - *474 - *475 - - &553 + - *476 + - &554 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -85942,7 +86133,7 @@ paths: description: Response content: application/json: - schema: &554 + schema: &555 type: object properties: number: *130 @@ -85950,7 +86141,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -85958,8 +86149,8 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 rule: type: object properties: @@ -86021,8 +86212,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *550 - most_recent_instance: *551 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -86118,7 +86309,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86138,9 +86329,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -86155,8 +86346,8 @@ paths: enum: - open - dismissed - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -86184,7 +86375,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -86260,7 +86451,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &558 + '403': &559 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -86287,15 +86478,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 type: object properties: status: @@ -86322,13 +86513,13 @@ paths: - description - started_at examples: - default: &556 + default: &557 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &557 + '400': &558 description: Bad Request content: application/json: @@ -86339,7 +86530,7 @@ 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': *552 + '403': *553 '404': *6 '500': *38 x-github: @@ -86364,29 +86555,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: OK content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '202': description: Accepted content: application/json: - schema: *555 + schema: *556 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *557 + '400': *558 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -86418,9 +86609,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: false content: @@ -86466,8 +86657,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *557 - '403': *558 + '400': *558 + '403': *559 '404': *6 '422': description: Unprocessable Entity @@ -86491,13 +86682,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 - - *559 - *560 + - *561 responses: '200': description: Response @@ -86508,10 +86699,10 @@ paths: items: type: object properties: - ref: *544 - analysis_key: *561 - environment: *562 - category: *563 + ref: *545 + analysis_key: *562 + environment: *563 + category: *564 state: type: - string @@ -86528,7 +86719,7 @@ paths: properties: text: type: string - location: *564 + location: *565 html_url: type: string classifications: @@ -86536,7 +86727,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *565 + items: *566 examples: default: value: @@ -86573,7 +86764,7 @@ paths: end_column: 50 classifications: - source - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86607,25 +86798,25 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - *560 + - *561 - 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: *544 + schema: *545 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &566 + schema: &567 type: string description: An identifier for the upload. examples: @@ -86647,23 +86838,23 @@ paths: application/json: schema: type: array - items: &567 + items: &568 type: object properties: - ref: *544 - commit_sha: &575 + ref: *545 + commit_sha: &576 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *561 + analysis_key: *562 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *563 + category: *564 error: type: string examples: @@ -86688,8 +86879,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *566 - tool: *550 + sarif_id: *567 + tool: *551 deletable: type: boolean warning: @@ -86751,7 +86942,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86787,8 +86978,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -86801,7 +86992,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: response: summary: application/json response @@ -86855,7 +87046,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *552 + '403': *553 '404': *6 '422': description: Response if analysis could not be processed @@ -86942,8 +87133,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -86999,7 +87190,7 @@ 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': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -87021,8 +87212,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -87030,7 +87221,7 @@ paths: application/json: schema: type: array - items: &568 + items: &569 title: CodeQL Database description: A CodeQL database. type: object @@ -87142,7 +87333,7 @@ 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': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87171,8 +87362,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: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -87184,7 +87375,7 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: default: value: @@ -87216,9 +87407,9 @@ 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': &602 + '302': &603 description: Found - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87240,8 +87431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -87251,7 +87442,7 @@ paths: responses: '204': description: Response - '403': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -87279,8 +87470,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -87289,7 +87480,7 @@ paths: type: object additionalProperties: false properties: - language: &569 + language: &570 type: string description: The language targeted by the CodeQL query enum: @@ -87369,7 +87560,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &573 + schema: &574 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -87379,7 +87570,7 @@ paths: description: The ID of the variant analysis. controller_repo: *120 actor: *4 - query_language: *569 + query_language: *570 query_pack_url: type: string description: The download url for the query pack. @@ -87427,7 +87618,7 @@ paths: items: type: object properties: - repository: &570 + repository: &571 title: Repository Identifier description: Repository Identifier type: object @@ -87469,7 +87660,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &574 + analysis_status: &575 type: string description: The new status of the CodeQL variant analysis repository task. @@ -87501,7 +87692,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &571 + access_mismatch_repos: &572 type: object properties: repository_count: @@ -87516,7 +87707,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: *570 + items: *571 required: - repository_count - repositories @@ -87539,8 +87730,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *571 - over_limit_repos: *571 + no_codeql_db_repos: *572 + over_limit_repos: *572 required: - access_mismatch_repos - not_found_repos @@ -87556,7 +87747,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &572 + value: &573 summary: Default response value: id: 1 @@ -87702,10 +87893,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *572 + value: *573 repository_lists: summary: Response for a successful variant analysis submission - value: *572 + value: *573 '404': *6 '422': description: Unable to process variant analysis submission @@ -87733,8 +87924,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: - - *474 - *475 + - *476 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -87746,9 +87937,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *572 + default: *573 '404': *6 '503': *195 x-github: @@ -87771,7 +87962,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: - - *474 + - *475 - name: repo in: path description: The name of the controller repository. @@ -87806,7 +87997,7 @@ paths: type: object properties: repository: *120 - analysis_status: *574 + analysis_status: *575 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -87931,8 +88122,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -88025,7 +88216,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -88046,8 +88237,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88116,7 +88307,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -88141,7 +88332,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *558 + '403': *559 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -88212,8 +88403,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88221,7 +88412,7 @@ paths: schema: type: object properties: - commit_sha: *575 + commit_sha: *576 ref: type: string description: |- @@ -88281,7 +88472,7 @@ paths: schema: type: object properties: - id: *566 + id: *567 url: type: string description: The REST API URL for checking the status of the upload. @@ -88295,7 +88486,7 @@ 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': *558 + '403': *559 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -88318,8 +88509,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: - - *474 - *475 + - *476 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -88367,7 +88558,7 @@ 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': *552 + '403': *553 '404': description: Not Found if the sarif id does not match any upload '503': *195 @@ -88392,8 +88583,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -88474,8 +88665,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *474 - *475 + - *476 - 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 @@ -88603,8 +88794,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -88620,7 +88811,7 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: default: value: @@ -88918,8 +89109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88983,17 +89174,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '400': *14 '401': *23 '403': *27 @@ -89022,8 +89213,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -89087,8 +89278,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: - - *474 - *475 + - *476 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -89125,9 +89316,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: &830 + default: &831 value: total_count: 2 machines: @@ -89167,8 +89358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *474 - *475 + - *476 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -89255,8 +89446,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: - - *474 - *475 + - *476 - 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 @@ -89325,8 +89516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -89344,7 +89535,7 @@ paths: type: integer secrets: type: array - items: &581 + items: &582 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -89365,7 +89556,7 @@ paths: - created_at - updated_at examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -89388,16 +89579,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89417,17 +89608,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89447,9 +89638,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: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -89477,7 +89668,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -89501,9 +89692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -89531,8 +89722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *474 - *475 + - *476 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -89570,7 +89761,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Collaborator description: Collaborator type: object @@ -89763,8 +89954,8 @@ 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: - - *474 - *475 + - *476 - *143 responses: '204': @@ -89811,8 +90002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 requestBody: required: false @@ -89839,7 +90030,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &659 + schema: &660 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -89851,7 +90042,7 @@ paths: format: int64 examples: - 42 - repository: *280 + repository: *281 invitee: anyOf: - type: 'null' @@ -90027,7 +90218,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *255 + schema: *256 '403': *27 x-github: triggersNotification: true @@ -90067,8 +90258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 responses: '204': @@ -90100,8 +90291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *474 - *475 + - *476 - *143 responses: '200': @@ -90122,7 +90313,7 @@ paths: user: anyOf: - type: 'null' - - *583 + - *584 required: - permission - role_name @@ -90176,8 +90367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -90187,7 +90378,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Commit Comment description: Commit Comment type: object @@ -90228,8 +90419,8 @@ paths: updated_at: type: string format: date-time - author_association: *218 - reactions: *219 + author_association: *219 + reactions: *220 required: - url - html_url @@ -90245,7 +90436,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &590 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90304,17 +90495,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &590 + default: &591 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90371,9 +90562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -90395,7 +90586,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: default: value: @@ -90446,9 +90637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -90469,9 +90660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -90497,7 +90688,7 @@ paths: application/json: schema: type: array - items: &585 + items: &586 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -90541,7 +90732,7 @@ paths: - content - created_at examples: - default: &663 + default: &664 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90586,9 +90777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -90620,9 +90811,9 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: &586 + default: &587 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90651,9 +90842,9 @@ paths: description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -90675,10 +90866,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *474 - *475 - - *235 - - &664 + - *476 + - *236 + - &665 name: reaction_id description: The unique identifier of the reaction. in: path @@ -90733,8 +90924,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *474 - *475 + - *476 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -90790,9 +90981,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: &727 + default: &728 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -90886,9 +91077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *474 - *475 - - &588 + - *476 + - &589 name: commit_sha description: The SHA of the commit. in: path @@ -90960,9 +91151,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -90972,9 +91163,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *589 + default: *590 headers: Link: *45 x-github: @@ -91002,9 +91193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *474 - *475 - - *588 + - *476 + - *589 requestBody: required: true content: @@ -91039,9 +91230,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *590 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91069,9 +91260,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: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -91081,9 +91272,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: &719 + default: &720 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91620,11 +91811,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *474 - *475 + - *476 - *19 - *17 - - &592 + - &593 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)" @@ -91639,9 +91830,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &705 + default: &706 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -91729,7 +91920,7 @@ paths: schema: type: string examples: - default: &599 + default: &600 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -91742,7 +91933,7 @@ paths: schema: type: string examples: - default: &600 + default: &601 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -91795,11 +91986,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: - - *474 - *475 - - *592 + - *476 - *593 - *594 + - *595 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -91833,9 +92024,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: *595 + default: *596 headers: Link: *45 x-github: @@ -91860,9 +92051,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: - - *474 - *475 - - *592 + - *476 + - *593 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -91870,7 +92061,7 @@ paths: schema: type: integer example: 1 - - *593 + - *594 - *17 - *19 responses: @@ -91888,7 +92079,7 @@ paths: type: integer check_suites: type: array - items: *541 + items: *542 examples: default: value: @@ -92088,9 +92279,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: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -92161,7 +92352,7 @@ paths: type: string total_count: type: integer - repository: *280 + repository: *281 commit_url: type: string format: uri @@ -92292,9 +92483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -92304,7 +92495,7 @@ paths: application/json: schema: type: array - items: &782 + items: &783 title: Status description: The status of a commit. type: object @@ -92385,7 +92576,7 @@ paths: site_admin: false headers: Link: *45 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92413,8 +92604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -92447,11 +92638,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *596 + - *597 code_of_conduct_file: anyOf: - type: 'null' - - &597 + - &598 title: Community Health File type: object properties: @@ -92467,23 +92658,23 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 contributing: anyOf: - type: 'null' - - *597 + - *598 readme: anyOf: - type: 'null' - - *597 + - *598 issue_template: anyOf: - type: 'null' - - *597 + - *598 pull_request_template: anyOf: - type: 'null' - - *597 + - *598 required: - code_of_conduct - code_of_conduct_file @@ -92612,8 +92803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *474 - *475 + - *476 - *19 - *17 - name: basehead @@ -92661,8 +92852,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *587 - merge_base_commit: *587 + base_commit: *588 + merge_base_commit: *588 status: type: string enum: @@ -92686,10 +92877,10 @@ paths: - 6 commits: type: array - items: *587 + items: *588 files: type: array - items: *598 + items: *599 required: - url - html_url @@ -92935,12 +93126,12 @@ paths: schema: type: string examples: - default: *599 + default: *600 application/vnd.github.patch: schema: type: string examples: - default: *600 + default: *601 '404': *6 '500': *38 '503': *195 @@ -92985,8 +93176,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -93156,7 +93347,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &601 + response-if-content-is-a-file-github-object: &602 summary: Response if content is a file value: type: file @@ -93293,7 +93484,7 @@ paths: - size - type - url - - &732 + - &733 title: Content File description: Content File type: object @@ -93511,7 +93702,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *601 + response-if-content-is-a-file: *602 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -93580,7 +93771,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *602 + '302': *603 '304': *35 x-github: githubCloudOnly: false @@ -93603,8 +93794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -93699,7 +93890,7 @@ paths: description: Response content: application/json: - schema: &603 + schema: &604 title: File Commit description: File Commit type: object @@ -93855,7 +94046,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: example-for-creating-a-file: value: @@ -93909,7 +94100,7 @@ paths: schema: oneOf: - *3 - - &641 + - &642 description: Repository rule violation was detected type: object properties: @@ -93930,7 +94121,7 @@ paths: items: type: object properties: - placeholder_id: &774 + placeholder_id: &775 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -93962,8 +94153,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -94024,7 +94215,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: default: value: @@ -94079,8 +94270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *474 - *475 + - *476 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -94210,8 +94401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -94344,24 +94535,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *474 - *475 - - *338 + - *476 - *339 - *340 - *341 - *342 + - *343 - 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 - - *343 - - *604 - *344 + - *605 - *345 - *346 + - *347 - *110 - *108 - *109 @@ -94373,7 +94564,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 type: object description: A Dependabot alert. properties: @@ -94424,7 +94615,7 @@ paths: - transitive - inconclusive - - security_advisory: *605 + security_advisory: *606 security_vulnerability: *134 url: *135 html_url: *136 @@ -94455,8 +94646,8 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: *606 - dismissal_request: *607 + auto_dismissed_at: *607 + dismissal_request: *608 assignees: type: array description: The users assigned to this alert. @@ -94711,9 +94902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *474 - *475 - - &609 + - *476 + - &610 name: alert_number in: path description: |- @@ -94728,7 +94919,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -94860,9 +95051,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *474 - *475 - - *609 + - *476 + - *610 requestBody: required: true content: @@ -94935,7 +95126,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -95065,8 +95256,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -95084,7 +95275,7 @@ paths: type: integer secrets: type: array - items: &612 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -95138,16 +95329,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95167,15 +95358,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -95201,9 +95392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -95231,7 +95422,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -95255,9 +95446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -95279,8 +95470,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: - - *474 - *475 + - *476 - 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 @@ -95457,8 +95648,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -95717,8 +95908,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 - name: sbom_uuid in: path required: true @@ -95729,7 +95920,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *613 + Location: *614 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -95750,8 +95941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -95789,8 +95980,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -95873,7 +96064,7 @@ paths: - version - url additionalProperties: false - metadata: &614 + metadata: &615 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -95912,7 +96103,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *614 + metadata: *615 resolved: type: object description: A collection of resolved package dependencies. @@ -95926,7 +96117,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *614 + metadata: *615 relationship: type: string description: A notation of whether a dependency is requested @@ -96059,8 +96250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *474 - *475 + - *476 - name: sha description: The SHA recorded at creation time. in: query @@ -96101,9 +96292,9 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: - default: *616 + default: *617 headers: Link: *45 x-github: @@ -96169,8 +96360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -96252,7 +96443,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: simple-example: summary: Simple example @@ -96325,9 +96516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *474 - *475 - - &617 + - *476 + - &618 name: deployment_id description: deployment_id parameter in: path @@ -96339,7 +96530,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: default: value: @@ -96404,9 +96595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *474 - *475 - - *617 + - *476 + - *618 responses: '204': description: Response @@ -96428,9 +96619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *474 - *475 - - *617 + - *476 + - *618 - *17 - *19 responses: @@ -96440,7 +96631,7 @@ paths: application/json: schema: type: array - items: &618 + items: &619 title: Deployment Status description: The status of a deployment. type: object @@ -96604,9 +96795,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 requestBody: required: true content: @@ -96681,9 +96872,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: &619 + default: &620 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -96739,9 +96930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 - name: status_id in: path required: true @@ -96752,9 +96943,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: *619 + default: *620 '404': *6 x-github: githubCloudOnly: false @@ -96781,12 +96972,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -96796,9 +96987,9 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: - default: *625 + default: *626 '404': *6 '403': *27 '500': *38 @@ -96822,8 +97013,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96835,7 +97026,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -96891,8 +97082,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96951,12 +97142,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -96966,9 +97157,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *627 + default: *628 '404': *6 '403': *27 '500': *38 @@ -96992,8 +97183,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97005,7 +97196,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -97056,8 +97247,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97095,7 +97286,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -97146,8 +97337,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97218,8 +97409,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97252,12 +97443,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -97267,9 +97458,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -97294,8 +97485,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97307,7 +97498,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *354 + schema: *355 examples: default: value: @@ -97365,8 +97556,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97435,8 +97626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -97493,8 +97684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -97512,7 +97703,7 @@ paths: - 5 environments: type: array - items: &629 + items: &630 title: Environment description: Details of a deployment environment type: object @@ -97574,7 +97765,7 @@ paths: type: string examples: - wait_timer - wait_timer: &631 + wait_timer: &632 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -97616,11 +97807,11 @@ paths: items: type: object properties: - type: *628 + type: *629 reviewer: anyOf: - *4 - - *313 + - *314 required: - id - node_id @@ -97643,7 +97834,7 @@ paths: - id - node_id - type - deployment_branch_policy: &632 + deployment_branch_policy: &633 type: - object - 'null' @@ -97760,9 +97951,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *474 - *475 - - &630 + - *476 + - &631 name: environment_name in: path required: true @@ -97775,9 +97966,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &633 + default: &634 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -97861,9 +98052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: false content: @@ -97873,7 +98064,7 @@ paths: - object - 'null' properties: - wait_timer: *631 + wait_timer: *632 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -97892,14 +98083,14 @@ paths: items: type: object properties: - type: *628 + type: *629 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *632 + deployment_branch_policy: *633 additionalProperties: false examples: default: @@ -97919,9 +98110,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *633 + default: *634 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -97945,9 +98136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '204': description: Default response @@ -97972,9 +98163,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -97993,7 +98184,7 @@ paths: - 2 branch_policies: type: array - items: &634 + items: &635 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -98054,9 +98245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -98104,9 +98295,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - example-wildcard: &635 + example-wildcard: &636 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -98148,10 +98339,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - &636 + - *476 + - *631 + - &637 name: branch_policy_id in: path required: true @@ -98163,9 +98354,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98184,10 +98375,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 requestBody: required: true content: @@ -98216,9 +98407,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98237,10 +98428,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 responses: '204': description: Response @@ -98265,9 +98456,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: - - *630 + - *631 + - *476 - *475 - - *474 responses: '200': description: List of deployment protection rules @@ -98284,7 +98475,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &637 + items: &638 title: Deployment protection rule description: Deployment protection rule type: object @@ -98306,7 +98497,7 @@ paths: for the environment. examples: - true - app: &638 + app: &639 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -98409,9 +98600,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: - - *630 + - *631 + - *476 - *475 - - *474 requestBody: content: application/json: @@ -98432,9 +98623,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *637 + schema: *638 examples: - default: &639 + default: &640 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -98469,9 +98660,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: - - *630 + - *631 + - *476 - *475 - - *474 - *19 - *17 responses: @@ -98491,7 +98682,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *638 + items: *639 examples: default: value: @@ -98526,10 +98717,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: - - *474 - *475 - - *630 - - &640 + - *476 + - *631 + - &641 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -98541,9 +98732,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *639 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98564,10 +98755,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: - - *630 + - *631 + - *476 - *475 - - *474 - - *640 + - *641 responses: '204': description: Response @@ -98593,9 +98784,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -98613,9 +98804,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -98640,17 +98831,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98672,18 +98863,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98705,10 +98896,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 requestBody: required: true content: @@ -98739,7 +98930,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -98765,10 +98956,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '204': description: Default response @@ -98793,10 +98984,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *474 - *475 - - *630 - - *299 + - *476 + - *631 + - *300 - *19 responses: '200': @@ -98813,9 +99004,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -98838,9 +99029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -98867,7 +99058,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -98892,18 +99083,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *474 - *475 - - *630 - - *293 + - *476 + - *631 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98924,10 +99115,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 requestBody: required: true content: @@ -98969,10 +99160,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 responses: '204': description: Response @@ -98994,8 +99185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -99005,7 +99196,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -99063,8 +99254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *474 - *475 + - *476 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -99086,7 +99277,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -99223,8 +99414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -99257,9 +99448,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -99280,8 +99471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -99340,8 +99531,8 @@ paths: application/json: schema: oneOf: - - *255 - - *641 + - *256 + - *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99366,8 +99557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *474 - *475 + - *476 - name: file_sha in: path required: true @@ -99467,8 +99658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -99577,7 +99768,7 @@ paths: description: Response content: application/json: - schema: &642 + schema: &643 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -99804,15 +99995,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *474 - *475 - - *588 + - *476 + - *589 responses: '200': description: Response content: application/json: - schema: *642 + schema: *643 examples: default: value: @@ -99868,9 +100059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *474 - *475 - - &643 + - *476 + - &644 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. @@ -99887,7 +100078,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 title: Git Reference description: Git references within a repository type: object @@ -99963,17 +100154,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '200': description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &645 + default: &646 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -100002,8 +100193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100032,9 +100223,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -100060,9 +100251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 requestBody: required: true content: @@ -100091,9 +100282,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 '422': *15 '409': *119 x-github: @@ -100111,9 +100302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '204': description: Response @@ -100168,8 +100359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100236,7 +100427,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &648 title: Git Tag description: Metadata for a Git tag type: object @@ -100292,7 +100483,7 @@ paths: - sha - type - url - verification: *646 + verification: *647 required: - sha - url @@ -100302,7 +100493,7 @@ paths: - tag - message examples: - default: &648 + default: &649 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -100375,8 +100566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *474 - *475 + - *476 - name: tag_sha in: path required: true @@ -100387,9 +100578,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '404': *6 '409': *119 x-github: @@ -100413,8 +100604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100488,7 +100679,7 @@ paths: description: Response content: application/json: - schema: &649 + schema: &650 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -100590,8 +100781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *474 - *475 + - *476 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -100614,7 +100805,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *650 examples: default-response: summary: Default response @@ -100672,8 +100863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -100717,8 +100908,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -100728,7 +100919,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Webhook description: Webhooks for repositories. type: object @@ -100791,7 +100982,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &922 + last_response: &923 title: Hook Response type: object properties: @@ -100868,8 +101059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -100922,9 +101113,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: &651 + default: &652 value: type: Repository id: 12345678 @@ -100972,17 +101163,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '404': *6 x-github: githubCloudOnly: false @@ -101002,9 +101193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: true content: @@ -101049,9 +101240,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '422': *15 '404': *6 x-github: @@ -101072,9 +101263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -101098,9 +101289,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: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response @@ -101127,9 +101318,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: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: false content: @@ -101173,12 +101364,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *474 - *475 - - *358 - - *17 + - *476 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -101186,9 +101377,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -101207,18 +101398,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -101237,9 +101428,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '202': *37 @@ -101262,9 +101453,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -101289,9 +101480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -101314,8 +101505,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response if immutable releases are enabled @@ -101363,8 +101554,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -101384,8 +101575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -101442,14 +101633,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &652 + schema: &653 title: Import description: A repository import from an external source. type: object @@ -101556,7 +101747,7 @@ paths: - html_url - authors_url examples: - default: &655 + default: &656 value: vcs: subversion use_lfs: true @@ -101572,7 +101763,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': &653 + '503': &654 description: Unavailable due to service under maintenance. content: application/json: @@ -101601,8 +101792,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -101650,7 +101841,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -101675,7 +101866,7 @@ paths: type: string '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101703,8 +101894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -101756,7 +101947,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: example-1: summary: Example 1 @@ -101804,7 +101995,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101827,12 +102018,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *474 - *475 + - *476 responses: '204': description: Response - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101858,9 +102049,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *474 - *475 - - &852 + - *476 + - &853 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -101874,7 +102065,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: Porter Author description: Porter Author type: object @@ -101928,7 +102119,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101953,8 +102144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *474 - *475 + - *476 - name: author_id in: path required: true @@ -101984,7 +102175,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: default: value: @@ -101997,7 +102188,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102021,8 +102212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102063,7 +102254,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102091,8 +102282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102119,11 +102310,11 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *655 + default: *656 '422': *15 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102146,8 +102337,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102155,8 +102346,8 @@ paths: application/json: schema: *20 examples: - default: *376 - '301': *480 + default: *377 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -102176,8 +102367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102185,12 +102376,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: &657 + default: &658 value: limit: collaborators_only origin: repository @@ -102215,13 +102406,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *656 + schema: *657 examples: default: summary: Example request body @@ -102233,9 +102424,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *657 + default: *658 '409': description: Response x-github: @@ -102257,8 +102448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -102285,8 +102476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102340,13 +102531,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: &658 + schema: &659 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -102396,13 +102587,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *658 + schema: *659 examples: default: summary: Example request body @@ -102435,8 +102626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102489,8 +102680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102566,8 +102757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -102577,9 +102768,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: &845 + default: &846 value: - id: 1 repository: @@ -102710,9 +102901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 requestBody: required: false content: @@ -102741,7 +102932,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: default: value: @@ -102872,9 +103063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 responses: '204': description: Response @@ -102897,8 +103088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102906,9 +103097,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: *660 + default: *661 '404': *6 x-github: githubCloudOnly: false @@ -102937,8 +103128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *474 - *475 + - *476 - 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 @@ -103000,7 +103191,7 @@ paths: required: false schema: type: string - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -103013,7 +103204,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -103023,9 +103214,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &671 + default: &672 value: - id: 1 node_id: MDU6SXNzdWUx @@ -103174,7 +103365,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *480 + '301': *481 '422': *15 '404': *6 x-github: @@ -103203,8 +103394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -103319,9 +103510,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: &668 + default: &669 value: id: 1 node_id: MDU6SXNzdWUx @@ -103478,7 +103669,7 @@ paths: '422': *15 '503': *195 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -103506,9 +103697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *474 - *475 - - *243 + - *476 + - *244 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -103518,7 +103709,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -103528,9 +103719,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: &670 + default: &671 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103589,17 +103780,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: &662 + default: &663 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103655,9 +103846,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -103679,9 +103870,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 '422': *15 x-github: githubCloudOnly: false @@ -103699,9 +103890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -103729,15 +103920,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: default: value: @@ -103793,7 +103984,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -103810,16 +104001,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '503': *195 x-github: githubCloudOnly: false @@ -103837,9 +104028,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -103865,9 +104056,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -103888,9 +104079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -103922,16 +104113,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -103953,10 +104144,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -103976,8 +104167,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -103987,7 +104178,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: Issue Event description: Issue Event type: object @@ -104034,7 +104225,7 @@ paths: issue: anyOf: - type: 'null' - - *221 + - *222 label: title: Issue Event Label description: Issue Event Label @@ -104067,7 +104258,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *313 + requested_team: *314 dismissed_review: title: Issue Event Dismissed Review type: object @@ -104134,7 +104325,7 @@ paths: required: - from - to - issue_type: &665 + issue_type: &666 title: Issue Type description: The type of issue. type: @@ -104165,11 +104356,11 @@ paths: required: - id - name - prev_issue_type: *665 + prev_issue_type: *666 sub_issue: anyOf: - type: 'null' - - &666 + - &667 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -104227,16 +104418,16 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 blocked_by: anyOf: - type: 'null' - - *666 + - *667 blocking: anyOf: - type: 'null' - - *666 - author_association: *218 + - *667 + author_association: *219 lock_reason: type: - string @@ -104429,8 +104620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *474 - *475 + - *476 - name: event_id in: path required: true @@ -104441,7 +104632,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -104634,7 +104825,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *661 + '410': *662 '403': *27 x-github: githubCloudOnly: false @@ -104668,9 +104859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *474 - *475 - - &669 + - *476 + - &670 name: issue_number description: The number that identifies the issue. in: path @@ -104682,11 +104873,11 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: summary: Issue - value: *668 + value: *669 pinned_comment: summary: Issue with pinned comment value: @@ -104885,9 +105076,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 '304': *35 x-github: githubCloudOnly: false @@ -104912,9 +105103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -105070,17 +105261,17 @@ paths: application/json: schema: allOf: - - *221 + - *222 - type: object properties: {} examples: - default: *668 + default: *669 '422': *15 '503': *195 '403': *27 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105098,9 +105289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -105126,9 +105317,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105144,9 +105335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: content: application/json: @@ -105171,9 +105362,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105195,9 +105386,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: assignee in: path required: true @@ -105237,10 +105428,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *474 - *475 - - *669 - - *226 + - *476 + - *670 + - *227 - *17 - *19 responses: @@ -105250,13 +105441,13 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *670 + default: *671 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105285,9 +105476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -105309,16 +105500,16 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -105346,9 +105537,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -105358,14 +105549,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105393,9 +105584,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: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -105417,17 +105608,17 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *480 + '301': *481 '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -105458,9 +105649,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -105472,15 +105663,15 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -105506,9 +105697,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -105518,14 +105709,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105542,9 +105733,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -105558,7 +105749,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &675 + - &676 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -105607,7 +105798,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &676 + - &677 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -105735,7 +105926,7 @@ paths: - performed_via_github_app - assignee - assigner - - &677 + - &678 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -105781,7 +105972,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &679 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -105827,7 +106018,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &680 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -105876,7 +106067,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &681 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -105905,7 +106096,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -105918,7 +106109,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &682 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -105947,7 +106138,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -105960,7 +106151,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &683 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -106016,7 +106207,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &684 title: Locked Issue Event description: Locked Issue Event type: object @@ -106061,7 +106252,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &685 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -106122,7 +106313,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &686 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -106183,7 +106374,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &686 + - &687 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -106244,7 +106435,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &688 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -106302,7 +106493,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &691 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -106330,7 +106521,7 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 + issue_type: *666 required: - issue_type - id @@ -106342,7 +106533,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &692 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -106370,7 +106561,7 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *665 + prev_issue_type: *666 required: - prev_issue_type - id @@ -106382,7 +106573,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &693 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -106410,8 +106601,8 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 - prev_issue_type: *665 + issue_type: *666 + prev_issue_type: *666 required: - issue_type - prev_issue_type @@ -106424,7 +106615,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &694 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -106455,7 +106646,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -106467,7 +106658,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &695 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -106498,7 +106689,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -106510,7 +106701,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &696 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -106541,7 +106732,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -106553,7 +106744,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &697 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -106584,7 +106775,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -106596,7 +106787,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &697 + - &698 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -106627,7 +106818,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -106639,7 +106830,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &698 + - &699 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -106670,7 +106861,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -106682,7 +106873,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &699 + - &700 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -106713,7 +106904,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -106725,7 +106916,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &700 + - &701 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -106756,7 +106947,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -106803,7 +106994,7 @@ paths: color: red headers: Link: *45 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106820,9 +107011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106832,9 +107023,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &673 + default: &674 value: - issue_field_id: 1 issue_field_name: DRI @@ -106874,9 +107065,9 @@ paths: color: green headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106905,9 +107096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -106979,9 +107170,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -107017,9 +107208,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107086,9 +107277,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -107119,10 +107310,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *474 - *475 - - *669 - - *385 + - *476 + - *670 + - *386 responses: '204': description: Issue field value deleted successfully @@ -107147,9 +107338,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107159,9 +107350,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: &674 + default: &675 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -107179,9 +107370,9 @@ paths: default: false headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107197,9 +107388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -107242,12 +107433,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -107264,9 +107455,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -107326,12 +107517,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -107348,15 +107539,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107375,9 +107566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - name: name in: path required: true @@ -107390,7 +107581,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -107401,9 +107592,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107423,9 +107614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -107454,7 +107645,7 @@ paths: '204': description: Response '403': *27 - '410': *661 + '410': *662 '404': *6 '422': *15 x-github: @@ -107472,9 +107663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response @@ -107504,20 +107695,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '200': description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107534,9 +107725,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - 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. @@ -107562,13 +107753,13 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107586,9 +107777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107620,16 +107811,16 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -107651,10 +107842,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *474 - *475 - - *669 - - *664 + - *476 + - *670 + - *665 responses: '204': description: Response @@ -107683,9 +107874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107707,9 +107898,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -107742,9 +107933,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107754,13 +107945,13 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107788,9 +107979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107817,16 +108008,16 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -107846,9 +108037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107879,9 +108070,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 '403': *27 '404': *6 '422': *7 @@ -107903,9 +108094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107920,7 +108111,6 @@ paths: description: Timeline Event type: object anyOf: - - *675 - *676 - *677 - *678 @@ -107933,6 +108123,7 @@ paths: - *685 - *686 - *687 + - *688 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -107980,20 +108171,20 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - event - actor @@ -108024,7 +108215,7 @@ paths: properties: type: type: string - issue: *221 + issue: *222 required: - event - created_at @@ -108246,7 +108437,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - event - id @@ -108269,7 +108460,7 @@ paths: type: string comments: type: array - items: &721 + items: &722 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -108377,7 +108568,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: @@ -108472,7 +108663,7 @@ paths: enum: - line - file - reactions: *219 + reactions: *220 body_html: type: string examples: @@ -108510,7 +108701,7 @@ paths: type: string comments: type: array - items: *584 + items: *585 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -108630,7 +108821,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *690 - *691 - *692 - *693 @@ -108641,6 +108831,7 @@ paths: - *698 - *699 - *700 + - *701 examples: default: value: @@ -108797,7 +108988,7 @@ paths: Link: *45 '404': *6 '400': *14 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108814,8 +109005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -108825,7 +109016,7 @@ paths: application/json: schema: type: array - items: &701 + items: &702 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -108893,8 +109084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -108930,9 +109121,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: &702 + default: &703 value: id: 1 key: ssh-rsa AAA... @@ -108966,9 +109157,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *474 - *475 - - &703 + - *476 + - &704 name: key_id description: The unique identifier of the key. in: path @@ -108980,9 +109171,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -109000,9 +109191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *474 - *475 - - *703 + - *476 + - *704 responses: '204': description: Response @@ -109022,8 +109213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -109033,9 +109224,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 '404': *6 @@ -109056,8 +109247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109093,9 +109284,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: &704 + default: &705 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -109127,8 +109318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109139,9 +109330,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *704 + default: *705 '404': *6 x-github: githubCloudOnly: false @@ -109158,8 +109349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109198,7 +109389,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -109224,8 +109415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109251,8 +109442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -109288,8 +109479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '202': *37 '403': @@ -109317,8 +109508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -109344,9 +109535,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *474 - *475 - - *559 + - *476 + - *560 responses: '200': description: Response @@ -109412,7 +109603,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 required: - _links - git_url @@ -109493,8 +109684,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109559,8 +109750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109594,9 +109785,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *587 + schema: *588 examples: - default: *705 + default: *706 '204': description: Response when already merged '404': @@ -109621,8 +109812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *474 - *475 + - *476 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -109663,7 +109854,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -109719,8 +109910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109760,9 +109951,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: &706 + default: &707 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -109821,9 +110012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *474 - *475 - - &707 + - *476 + - &708 name: milestone_number description: The number that identifies the milestone. in: path @@ -109835,9 +110026,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 '404': *6 x-github: githubCloudOnly: false @@ -109854,9 +110045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 requestBody: required: false content: @@ -109894,9 +110085,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109912,9 +110103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 responses: '204': description: Response @@ -109935,9 +110126,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: - - *474 - *475 - - *707 + - *476 + - *708 - *17 - *19 responses: @@ -109947,9 +110138,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 x-github: @@ -109968,12 +110159,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: - - *474 - *475 - - *708 + - *476 - *709 - - *226 - *710 + - *227 + - *711 - *17 - *19 responses: @@ -109983,9 +110174,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *711 + default: *712 headers: Link: *45 x-github: @@ -110009,8 +110200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -110068,14 +110259,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &712 + schema: &713 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -110219,7 +110410,7 @@ paths: - custom_404 - public examples: - default: &713 + default: &714 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -110260,8 +110451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110316,9 +110507,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: - default: *713 + default: *714 '422': *15 '409': *119 x-github: @@ -110341,8 +110532,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110450,8 +110641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -110477,8 +110668,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -110488,7 +110679,7 @@ paths: application/json: schema: type: array - items: &714 + items: &715 title: Page Build description: Page Build type: object @@ -110580,8 +110771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -110628,16 +110819,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: &715 + default: &716 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -110685,8 +110876,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *474 - *475 + - *476 - name: build_id in: path required: true @@ -110697,9 +110888,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110719,8 +110910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110828,9 +111019,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: - - *474 - *475 - - &716 + - *476 + - &717 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -110888,9 +111079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *474 - *475 - - *716 + - *476 + - *717 responses: '204': *126 '404': *6 @@ -110917,8 +111108,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -111186,7 +111377,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -111213,8 +111404,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: - - *474 - *475 + - *476 responses: '200': description: Private vulnerability reporting status @@ -111251,8 +111442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -111273,8 +111464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -111296,8 +111487,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -111307,7 +111498,7 @@ paths: type: array items: *155 examples: - default: *717 + default: *718 '403': *27 '404': *6 x-github: @@ -111329,8 +111520,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111346,7 +111537,7 @@ paths: required: - properties examples: - default: *718 + default: *719 responses: '204': description: No Content when custom property values are successfully created @@ -111384,8 +111575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *474 - *475 + - *476 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -111445,9 +111636,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *719 + default: *720 headers: Link: *45 '304': *35 @@ -111479,8 +111670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111547,7 +111738,7 @@ paths: description: Response content: application/json: - schema: &723 + schema: &724 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -111676,7 +111867,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -111725,7 +111916,7 @@ paths: items: *4 requested_teams: type: array - items: *399 + items: *400 head: type: object properties: @@ -111763,14 +111954,14 @@ paths: _links: type: object properties: - comments: *421 - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + comments: *422 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -111780,8 +111971,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: *720 + author_association: *219 + auto_merge: *721 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -111883,7 +112074,7 @@ paths: - merged_by - review_comments examples: - default: &724 + default: &725 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -112410,8 +112601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *474 - *475 + - *476 - name: sort in: query required: false @@ -112430,7 +112621,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -112440,9 +112631,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: &726 + default: &727 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -112519,17 +112710,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: &722 + default: &723 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -112604,9 +112795,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -112628,9 +112819,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: *722 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112646,9 +112837,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -112669,9 +112860,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: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -112697,9 +112888,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -112720,9 +112911,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -112754,16 +112945,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -112785,10 +112976,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -112831,9 +113022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *474 - *475 - - &725 + - *476 + - &726 name: pull_number description: The number that identifies the pull request. in: path @@ -112846,9 +113037,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '304': *35 '404': *6 '406': @@ -112883,9 +113074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -112927,9 +113118,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '422': *15 '403': *27 x-github: @@ -112951,9 +113142,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -113014,17 +113205,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -113054,10 +113245,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: - - *474 - *475 - - *725 - - *243 + - *476 + - *726 + - *244 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -113067,7 +113258,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -113077,9 +113268,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: *726 + default: *727 headers: Link: *45 x-github: @@ -113112,9 +113303,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -113220,7 +113411,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: example-for-a-multi-line-comment: value: @@ -113308,10 +113499,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: - - *474 - *475 - - *725 - - *235 + - *476 + - *726 + - *236 requestBody: required: true content: @@ -113333,7 +113524,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: default: value: @@ -113419,9 +113610,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -113431,9 +113622,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *727 + default: *728 headers: Link: *45 x-github: @@ -113463,9 +113654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -113475,7 +113666,7 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: default: value: @@ -113513,9 +113704,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '204': description: Response if pull request has been merged @@ -113538,9 +113729,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -113652,9 +113843,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '200': description: Response @@ -113670,7 +113861,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 required: - users - teams @@ -113729,9 +113920,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -113768,7 +113959,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -114304,9 +114495,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -114340,7 +114531,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -114845,9 +115036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -114857,7 +115048,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -114931,7 +115122,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - id - node_id @@ -115013,9 +115204,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -115105,9 +115296,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &730 + default: &731 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -115170,10 +115361,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: - - *474 - *475 - - *725 - - &729 + - *476 + - *726 + - &730 name: review_id description: The unique identifier of the review. in: path @@ -115185,9 +115376,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &731 + default: &732 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -115246,10 +115437,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -115272,7 +115463,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -115334,18 +115525,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 responses: '200': description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *730 + default: *731 '422': *7 '404': *6 x-github: @@ -115372,10 +115563,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 - *17 - *19 responses: @@ -115469,13 +115660,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: - self: *421 - html: *421 - pull_request: *421 + self: *422 + html: *422 + pull_request: *422 required: - self - html @@ -115484,7 +115675,7 @@ paths: type: string body_html: type: string - reactions: *219 + reactions: *220 side: description: The side of the first line of the range for a multi-line comment. @@ -115633,10 +115824,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -115665,7 +115856,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -115728,10 +115919,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -115766,9 +115957,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *731 + default: *732 '404': *6 '422': *7 '403': *27 @@ -115790,9 +115981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -115856,8 +116047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *474 - *475 + - *476 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -115870,9 +116061,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: &733 + default: &734 value: type: file encoding: base64 @@ -115914,8 +116105,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: - - *474 - *475 + - *476 - name: dir description: The alternate path to look for a README file in: path @@ -115935,9 +116126,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: *733 + default: *734 '404': *6 '422': *15 x-github: @@ -115959,8 +116150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -115970,7 +116161,7 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: default: value: @@ -116064,8 +116255,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -116141,9 +116332,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &738 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -116248,9 +116439,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *474 - *475 - - &736 + - *476 + - &737 name: asset_id description: The unique identifier of the asset. in: path @@ -116262,9 +116453,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: &737 + default: &738 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 @@ -116299,7 +116490,7 @@ paths: type: User site_admin: false '404': *6 - '302': *602 + '302': *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116315,9 +116506,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 requestBody: required: false content: @@ -116346,9 +116537,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: *737 + default: *738 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116364,9 +116555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 responses: '204': description: Response @@ -116391,8 +116582,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -116478,16 +116669,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -116505,8 +116696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *474 - *475 + - *476 - name: tag description: tag parameter in: path @@ -116519,9 +116710,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -116543,9 +116734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *474 - *475 - - &739 + - *476 + - &740 name: release_id description: The unique identifier of the release. in: path @@ -116559,9 +116750,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: *734 + schema: *735 examples: - default: *738 + default: *739 '401': description: Unauthorized x-github: @@ -116579,9 +116770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: false content: @@ -116645,9 +116836,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': description: Not Found if the discussion category name is invalid content: @@ -116668,9 +116859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 responses: '204': description: Response @@ -116691,9 +116882,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *474 - *475 - - *739 + - *476 + - *740 - *17 - *19 responses: @@ -116703,7 +116894,7 @@ paths: application/json: schema: type: array - items: *735 + items: *736 examples: default: value: @@ -116785,9 +116976,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: - - *474 - *475 - - *739 + - *476 + - *740 - name: name in: query required: true @@ -116813,7 +117004,7 @@ paths: description: Response for successful upload content: application/json: - schema: *735 + schema: *736 examples: response-for-successful-upload: value: @@ -116868,9 +117059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 - 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. @@ -116894,9 +117085,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -116917,9 +117108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: true content: @@ -116949,16 +117140,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -116980,10 +117171,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *474 - *475 - - *739 - - *664 + - *476 + - *740 + - *665 responses: '204': description: Response @@ -117007,9 +117198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 - *17 - *19 responses: @@ -117026,7 +117217,7 @@ paths: oneOf: - allOf: - *169 - - &740 + - &741 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -117047,70 +117238,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *170 - - *740 + - *741 - allOf: - *171 - - *740 + - *741 - allOf: - *172 - - *740 + - *741 - allOf: + - *742 - *741 - - *740 - allOf: - *173 - - *740 + - *741 - allOf: - *174 - - *740 + - *741 - allOf: - *175 - - *740 + - *741 - allOf: - *176 - - *740 + - *741 - allOf: - *177 - - *740 + - *741 - allOf: - *178 - - *740 + - *741 - allOf: - *179 - - *740 + - *741 - allOf: - *180 - - *740 + - *741 - allOf: - *181 - - *740 + - *741 - allOf: - *182 - - *740 + - *741 - allOf: - *183 - - *740 + - *741 - allOf: - *184 - - *740 + - *741 - allOf: - *185 - - *740 + - *741 - allOf: - - *742 - - *740 + - *743 + - *741 - allOf: - *186 - - *740 + - *741 - allOf: - *187 - - *740 + - *741 - allOf: - *188 - - *740 + - *741 - allOf: - *189 - - *740 + - *741 examples: default: value: @@ -117149,8 +117340,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - *17 - *19 - name: includes_parents @@ -117161,7 +117352,7 @@ paths: schema: type: boolean default: true - - *743 + - *744 responses: '200': description: Response @@ -117216,8 +117407,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 requestBody: description: Request body required: true @@ -117246,7 +117437,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *744 + items: *745 required: - name - enforcement @@ -117279,7 +117470,7 @@ paths: application/json: schema: *190 examples: - default: &754 + default: &755 value: id: 42 name: super cool ruleset @@ -117327,13 +117518,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *474 - *475 - - *745 - - *105 + - *476 - *746 + - *105 - *747 - *748 + - *749 - *17 - *19 responses: @@ -117341,9 +117532,9 @@ paths: description: Response content: application/json: - schema: *749 + schema: *750 examples: - default: *750 + default: *751 '404': *6 '500': *38 x-github: @@ -117364,17 +117555,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *474 - *475 - - *751 + - *476 + - *752 responses: '200': description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 '500': *38 x-github: @@ -117402,8 +117593,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -117425,7 +117616,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '500': *38 put: @@ -117443,8 +117634,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -117478,7 +117669,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *744 + items: *745 examples: default: value: @@ -117508,7 +117699,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '422': *15 '500': *38 @@ -117527,8 +117718,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -117551,8 +117742,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *474 - *475 + - *476 - *17 - *19 - name: ruleset_id @@ -117570,7 +117761,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -117589,8 +117780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -117608,7 +117799,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -117663,9 +117854,8 @@ 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: - - *474 - *475 - - *439 + - *476 - *440 - *441 - *442 @@ -117673,18 +117863,19 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - *755 - *756 - - *447 + - *757 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -117708,8 +117899,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -117815,7 +118006,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -117974,16 +118165,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: - - *474 - *475 - - *553 - - *450 + - *476 + - *554 + - *451 responses: '200': description: Response content: application/json: - schema: &760 + schema: &761 type: object properties: number: *130 @@ -117998,8 +118189,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -118105,7 +118296,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -118128,7 +118319,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &941 + metadata: &942 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -118201,9 +118392,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -118211,8 +118402,8 @@ paths: schema: type: object properties: - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -118260,7 +118451,7 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: default: value: @@ -118362,9 +118553,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 responses: @@ -118375,7 +118566,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &943 + items: &944 type: object properties: type: @@ -118402,7 +118593,6 @@ paths: - commit details: oneOf: - - *761 - *762 - *763 - *764 @@ -118415,6 +118605,7 @@ paths: - *771 - *772 - *773 + - *774 examples: default: value: @@ -118500,8 +118691,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -118509,14 +118700,14 @@ paths: schema: type: object properties: - reason: &775 + reason: &776 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *774 + placeholder_id: *775 required: - reason - placeholder_id @@ -118533,7 +118724,7 @@ paths: schema: type: object properties: - reason: *775 + reason: *776 expire_at: type: - string @@ -118580,8 +118771,8 @@ 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: - - *474 - *475 + - *476 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -118596,7 +118787,7 @@ paths: properties: incremental_scans: type: array - items: &776 + items: &777 description: Information on a single scan performed by secret scanning on the repository type: object @@ -118629,15 +118820,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *776 + items: *777 backfill_scans: type: array - items: *776 + items: *777 custom_pattern_backfill_scans: type: array items: allOf: - - *776 + - *777 - type: object properties: pattern_name: @@ -118650,7 +118841,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *776 + items: *777 examples: default: value: @@ -118715,8 +118906,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *474 - *475 + - *476 - *110 - name: sort description: The property to sort the results by. @@ -118760,9 +118951,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *778 + default: *779 '400': *14 '404': *6 x-github: @@ -118785,8 +118976,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -118866,7 +119057,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -118956,9 +119147,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &780 + default: &781 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -119191,8 +119382,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -119305,7 +119496,7 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: default: value: @@ -119452,17 +119643,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '200': description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 + default: *781 '403': *27 '404': *6 x-github: @@ -119486,9 +119677,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: - - *474 - *475 - - *779 + - *476 + - *780 requestBody: required: true content: @@ -119568,7 +119759,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -119659,17 +119850,17 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 - add_credit: *780 + default: *781 + add_credit: *781 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *255 + schema: *256 examples: invalid_state_transition: value: @@ -119700,9 +119891,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': *37 '400': *14 @@ -119729,17 +119920,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -119765,8 +119956,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -119862,8 +120053,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -119872,7 +120063,7 @@ paths: application/json: schema: type: array - items: &781 + items: &782 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -119905,8 +120096,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -119984,8 +120175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -120079,8 +120270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *474 - *475 + - *476 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -120234,8 +120425,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: - - *474 - *475 + - *476 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -120245,7 +120436,7 @@ paths: application/json: schema: type: array - items: *781 + items: *782 examples: default: value: @@ -120278,8 +120469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *474 - *475 + - *476 - name: sha in: path required: true @@ -120335,7 +120526,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -120389,8 +120580,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120422,14 +120613,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &783 + schema: &784 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -120502,8 +120693,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -120529,7 +120720,7 @@ paths: description: Response content: application/json: - schema: *783 + schema: *784 examples: default: value: @@ -120556,8 +120747,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -120577,8 +120768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120660,8 +120851,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -120697,8 +120888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120708,9 +120899,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '404': *6 @@ -120730,8 +120921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *474 - *475 + - *476 - *19 - *17 responses: @@ -120739,7 +120930,7 @@ paths: description: Response content: application/json: - schema: &784 + schema: &785 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -120751,7 +120942,7 @@ paths: required: - names examples: - default: &785 + default: &786 value: names: - octocat @@ -120774,8 +120965,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -120806,9 +120997,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '404': *6 '422': *7 x-github: @@ -120829,9 +121020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *474 - *475 - - &786 + - *476 + - &787 name: per description: The time frame to display results for. in: query @@ -120862,7 +121053,7 @@ paths: - 128 clones: type: array - items: &787 + items: &788 title: Traffic type: object properties: @@ -120949,8 +121140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -121044,8 +121235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -121108,9 +121299,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *474 - *475 - - *786 + - *476 + - *787 responses: '200': description: Response @@ -121131,7 +121322,7 @@ paths: - 3782 views: type: array - items: *787 + items: *788 required: - uniques - count @@ -121208,8 +121399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -121245,7 +121436,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -121483,8 +121674,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: - - *474 - *475 + - *476 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -121507,8 +121698,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -121530,8 +121721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -121557,8 +121748,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -121650,9 +121841,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121693,7 +121884,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -121803,7 +121994,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &795 + - &796 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -121813,7 +122004,7 @@ paths: type: string examples: - members - - &800 + - &801 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -121825,7 +122016,7 @@ paths: format: int32 examples: - 1 - - &801 + - &802 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -121869,7 +122060,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &790 + items: &791 allOf: - type: object required: @@ -121951,7 +122142,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: &802 + meta: &803 type: object description: The metadata associated with the creation/updates to the user. @@ -122016,30 +122207,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &791 + '400': &792 description: Bad request content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '401': *789 - '403': &792 + schema: *789 + '401': *790 + '403': &793 description: Permission denied - '429': &793 + '429': &794 description: Too many requests content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '500': &794 + schema: *789 + '500': &795 description: Internal server error content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 + schema: *789 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122063,7 +122254,7 @@ paths: required: true content: application/json: - schema: &798 + schema: &799 type: object required: - schemas @@ -122127,9 +122318,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *790 + schema: *791 examples: - group: &796 + group: &797 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -122148,13 +122339,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': *791 - '401': *789 - '403': *792 - '409': &799 + '400': *792 + '401': *790 + '403': *793 + '409': &800 description: Duplicate record detected - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122171,7 +122362,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: - - &797 + - &798 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -122180,22 +122371,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *795 + - *796 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *790 + schema: *791 examples: - default: *796 - '400': *791 - '401': *789 - '403': *792 + default: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122214,13 +122405,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: *798 + schema: *799 examples: group: summary: Group @@ -122246,17 +122437,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - group: *796 - groupWithMembers: *796 - '400': *791 - '401': *789 - '403': *792 + group: *797 + groupWithMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122280,13 +122471,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: &809 + schema: &810 type: object required: - Operations @@ -122346,17 +122537,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - updateGroup: *796 - addMembers: *796 - '400': *791 - '401': *789 - '403': *792 + updateGroup: *797 + addMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122372,17 +122563,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: - - *797 + - *798 - *39 responses: '204': description: Group was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122416,8 +122607,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *800 - *801 + - *802 - *39 responses: '200': @@ -122451,7 +122642,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &804 + items: &805 allOf: - type: object required: @@ -122543,7 +122734,7 @@ paths: address. examples: - true - roles: &803 + roles: &804 type: array description: The roles assigned to the user. items: @@ -122602,7 +122793,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *802 + meta: *803 startIndex: type: integer description: A starting index for the returned page @@ -122641,11 +122832,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *791 - '401': *789 - '403': *792 - '429': *793 - '500': *794 + '400': *792 + '401': *790 + '403': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122669,7 +122860,7 @@ paths: required: true content: application/json: - schema: &807 + schema: &808 type: object required: - schemas @@ -122762,9 +122953,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *803 + roles: *804 examples: - user: &808 + user: &809 summary: User value: schemas: @@ -122811,9 +123002,9 @@ paths: description: User has been created content: application/scim+json: - schema: *804 + schema: *805 examples: - user: &805 + user: &806 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -122839,13 +123030,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: *805 - '400': *791 - '401': *789 - '403': *792 - '409': *799 - '429': *793 - '500': *794 + enterpriseOwner: *806 + '400': *792 + '401': *790 + '403': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122862,7 +123053,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: - - &806 + - &807 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -122875,15 +123066,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *804 + schema: *805 examples: - default: *805 - '400': *791 - '401': *789 - '403': *792 + default: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122934,30 +123125,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *807 + schema: *808 examples: - user: *808 + user: *809 responses: '200': description: User was updated content: application/scim+json: - schema: *804 + schema: *805 examples: - user: *805 - '400': *791 - '401': *789 - '403': *792 + user: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122998,13 +123189,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *809 + schema: *810 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -123044,18 +123235,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *804 - examples: - userMultiValuedProperties: *805 - userSingleValuedProperties: *805 - disableUser: *805 - '400': *791 - '401': *789 - '403': *792 + schema: *805 + examples: + userMultiValuedProperties: *806 + userSingleValuedProperties: *806 + disableUser: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123075,17 +123266,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: - - *806 + - *807 - *39 responses: '204': description: User was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123176,7 +123367,7 @@ paths: - 1 Resources: type: array - items: &810 + items: &811 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -123423,22 +123614,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': &811 + '404': &812 description: Resource not found content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '403': &812 + schema: *789 + '403': &813 description: Forbidden content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 - '429': *793 + schema: *789 + '400': *792 + '429': *794 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -123464,9 +123655,9 @@ paths: description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: &813 + default: &814 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -123489,17 +123680,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': *811 - '403': *812 - '500': *794 + '404': *812 + '403': *813 + '500': *795 '409': description: Conflict content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 + schema: *789 + '400': *792 requestBody: required: true content: @@ -123599,17 +123790,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 - '404': *811 - '403': *812 + default: *814 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -123633,18 +123824,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 + '404': *812 + '403': *813 requestBody: required: true content: @@ -123759,19 +123950,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 - '400': *791 + '404': *812 + '403': *813 + '400': *792 '429': description: Response content: @@ -123867,12 +124058,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *806 + - *807 responses: '204': description: Response - '404': *811 - '403': *812 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -123990,7 +124181,7 @@ paths: html_url: type: string format: uri - repository: *280 + repository: *281 score: type: number file_size: @@ -124009,7 +124200,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &814 + text_matches: &815 title: Search Result Text Matches type: array items: @@ -124173,7 +124364,7 @@ paths: enum: - author-date - committer-date - - &815 + - &816 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 @@ -124242,7 +124433,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 comment_count: type: integer message: @@ -124261,7 +124452,7 @@ paths: url: type: string format: uri - verification: *646 + verification: *647 required: - author - committer @@ -124276,7 +124467,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 parents: type: array items: @@ -124288,12 +124479,12 @@ paths: type: string sha: type: string - repository: *280 + repository: *281 score: type: number node_id: type: string - text_matches: *814 + text_matches: *815 required: - sha - node_id @@ -124486,7 +124677,7 @@ paths: - interactions - created - updated - - *815 + - *816 - *17 - *19 - name: advanced_search @@ -124600,11 +124791,11 @@ paths: type: - string - 'null' - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: type: string state_reason: @@ -124618,7 +124809,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 comments: type: integer created_at: @@ -124632,7 +124823,7 @@ paths: - string - 'null' format: date-time - text_matches: *814 + text_matches: *815 pull_request: type: object properties: @@ -124670,7 +124861,7 @@ paths: type: string score: type: number - author_association: *218 + author_association: *219 draft: type: boolean repository: *78 @@ -124681,7 +124872,7 @@ paths: timeline_url: type: string format: uri - type: *386 + type: *387 performed_via_github_app: anyOf: - type: 'null' @@ -124689,8 +124880,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *222 - reactions: *219 + - *223 + reactions: *220 required: - assignee - closed_at @@ -124908,7 +125099,7 @@ paths: enum: - created - updated - - *815 + - *816 - *17 - *19 responses: @@ -124953,7 +125144,7 @@ paths: - 'null' score: type: number - text_matches: *814 + text_matches: *815 required: - id - node_id @@ -125039,7 +125230,7 @@ paths: - forks - help-wanted-issues - updated - - *815 + - *816 - *17 - *19 responses: @@ -125267,7 +125458,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 permissions: type: object properties: @@ -125285,7 +125476,7 @@ paths: - admin - pull - push - text_matches: *814 + text_matches: *815 temp_clone_token: type: string allow_merge_commit: @@ -125594,7 +125785,7 @@ paths: - string - 'null' format: uri - text_matches: *814 + text_matches: *815 related: type: - array @@ -125789,7 +125980,7 @@ paths: - followers - repositories - joined - - *815 + - *816 - *17 - *19 responses: @@ -125899,7 +126090,7 @@ paths: type: - boolean - 'null' - text_matches: *814 + text_matches: *815 blog: type: - string @@ -125981,7 +126172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &818 + - &819 name: team_id description: The unique identifier of the team. in: path @@ -125993,9 +126184,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -126022,7 +126213,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *818 + - *819 requestBody: required: true content: @@ -126086,16 +126277,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -126123,7 +126314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *818 + - *819 responses: '204': description: Response @@ -126152,7 +126343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -126162,9 +126353,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 x-github: @@ -126192,7 +126383,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *818 + - *819 - name: role description: Filters members returned by their role in the team. in: query @@ -126213,9 +126404,9 @@ paths: application/json: schema: type: array - items: *819 + items: *820 examples: - default: *820 + default: *821 headers: Link: *45 '404': *6 @@ -126243,7 +126434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -126280,7 +126471,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -126320,7 +126511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -126357,16 +126548,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: - - *818 + - *819 - *143 responses: '200': description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-user-is-a-team-maintainer: *821 + response-if-user-is-a-team-maintainer: *822 '404': *6 x-github: githubCloudOnly: false @@ -126399,7 +126590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 requestBody: required: false @@ -126425,9 +126616,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: *822 + response-if-users-membership-with-team-is-now-pending: *823 '403': description: Forbidden if team synchronization is set up '422': @@ -126461,7 +126652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -126489,7 +126680,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -126499,9 +126690,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '404': *6 @@ -126531,15 +126722,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *823 + schema: *824 examples: alternative-response-with-extra-repository-information: value: @@ -126690,9 +126881,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: - - *818 - - *474 + - *819 - *475 + - *476 requestBody: required: false content: @@ -126742,9 +126933,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '204': description: Response @@ -126773,15 +126964,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: - - *818 + - *819 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 '403': *27 '404': *6 x-github: @@ -126808,7 +126999,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: - - *818 + - *819 requestBody: required: true content: @@ -126869,7 +127060,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -126900,7 +127091,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -126910,9 +127101,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: *824 + response-if-child-teams-exist: *825 headers: Link: *45 '404': *6 @@ -126945,7 +127136,7 @@ paths: application/json: schema: oneOf: - - &826 + - &827 title: Private User description: Private User type: object @@ -127195,7 +127386,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *825 + - *826 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -127355,7 +127546,7 @@ paths: description: Response content: application/json: - schema: *826 + schema: *827 examples: default: value: @@ -127558,9 +127749,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -127699,17 +127890,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -127753,7 +127944,7 @@ paths: type: integer secrets: type: array - items: &827 + items: &828 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -127795,7 +127986,7 @@ paths: - visibility - selected_repositories_url examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -127867,13 +128058,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: - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *827 + schema: *828 examples: default: value: @@ -127903,7 +128094,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: - - *290 + - *291 requestBody: required: true content: @@ -127948,7 +128139,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -127976,7 +128167,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: - - *290 + - *291 responses: '204': description: Response @@ -128001,7 +128192,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: - - *290 + - *291 responses: '200': description: Response @@ -128017,9 +128208,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *332 + default: *333 '401': *23 '403': *27 '404': *6 @@ -128044,7 +128235,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: - - *290 + - *291 requestBody: required: true content: @@ -128098,7 +128289,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -128131,7 +128322,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -128163,15 +128354,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '401': *23 @@ -128197,7 +128388,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: - - *393 + - *394 requestBody: required: false content: @@ -128227,9 +128418,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -128251,7 +128442,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: - - *393 + - *394 responses: '202': *37 '304': *35 @@ -128280,13 +128471,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: - - *393 + - *394 responses: '202': description: Response content: application/json: - schema: &828 + schema: &829 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -128339,7 +128530,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &829 + default: &830 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -128371,7 +128562,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *393 + - *394 - name: export_id in: path required: true @@ -128384,9 +128575,9 @@ paths: description: Response content: application/json: - schema: *828 + schema: *829 examples: - default: *829 + default: *830 '404': *6 x-github: githubCloudOnly: false @@ -128407,7 +128598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *393 + - *394 responses: '200': description: Response @@ -128423,9 +128614,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: *830 + default: *831 '304': *35 '500': *38 '401': *23 @@ -128454,7 +128645,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: - - *393 + - *394 requestBody: required: true content: @@ -128510,11 +128701,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *479 + repository: *480 machine: anyOf: - type: 'null' - - *577 + - *578 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -129311,15 +129502,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '400': *14 @@ -129351,15 +129542,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '500': *38 '401': *23 '403': *27 @@ -129389,9 +129580,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: &842 + default: &843 value: - id: 197 name: hello_docker @@ -129492,7 +129683,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 title: Email description: Email type: object @@ -129562,9 +129753,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: &844 + default: &845 value: - email: octocat@github.com verified: true @@ -129641,7 +129832,7 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: default: value: @@ -129899,7 +130090,7 @@ paths: application/json: schema: type: array - items: &832 + items: &833 title: GPG Key description: A unique encryption key type: object @@ -130044,7 +130235,7 @@ paths: - subkeys - revoked examples: - default: &861 + default: &862 value: - id: 3 name: Octocat's GPG Key @@ -130129,9 +130320,9 @@ paths: description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: &833 + default: &834 value: id: 3 name: Octocat's GPG Key @@ -130188,7 +130379,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: - - &834 + - &835 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -130200,9 +130391,9 @@ paths: description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: *833 + default: *834 '404': *6 '304': *35 '403': *27 @@ -130225,7 +130416,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: - - *834 + - *835 responses: '204': description: Response @@ -130427,7 +130618,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *275 + default: *276 headers: Link: *45 '404': *6 @@ -130453,7 +130644,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -130479,7 +130670,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -130513,12 +130704,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: *379 + default: *380 '204': description: Response when there are no restrictions x-github: @@ -130542,7 +130733,7 @@ paths: required: true content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -130553,7 +130744,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: default: value: @@ -130634,7 +130825,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -130647,7 +130838,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -130657,9 +130848,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -130692,7 +130883,7 @@ paths: application/json: schema: type: array - items: &835 + items: &836 title: Key description: Key type: object @@ -130795,9 +130986,9 @@ paths: description: Response content: application/json: - schema: *835 + schema: *836 examples: - default: &836 + default: &837 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -130830,15 +131021,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: - - *703 + - *704 responses: '200': description: Response content: application/json: - schema: *835 + schema: *836 examples: - default: *836 + default: *837 '404': *6 '304': *35 '403': *27 @@ -130861,7 +131052,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: - - *703 + - *704 responses: '204': description: Response @@ -130894,7 +131085,7 @@ paths: application/json: schema: type: array - items: &837 + items: &838 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -130962,7 +131153,7 @@ paths: - id - type - login - plan: *237 + plan: *238 required: - billing_cycle - next_billing_date @@ -130973,7 +131164,7 @@ paths: - account - plan examples: - default: &838 + default: &839 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -131035,9 +131226,9 @@ paths: application/json: schema: type: array - items: *837 + items: *838 examples: - default: *838 + default: *839 headers: Link: *45 '304': *35 @@ -131077,7 +131268,7 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: default: value: @@ -131191,7 +131382,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -131278,9 +131469,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: &839 + default: &840 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -131327,9 +131518,9 @@ paths: processed asynchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: *839 + default: *840 '403': *27 '404': *6 '422': *15 @@ -131358,7 +131549,7 @@ paths: application/json: schema: type: array - items: *396 + items: *397 examples: default: value: @@ -131620,7 +131811,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -131800,7 +131991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *397 + - *398 - name: exclude in: query required: false @@ -131813,7 +132004,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -132007,7 +132198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *397 + - *398 responses: '302': description: Response @@ -132033,7 +132224,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *397 + - *398 responses: '204': description: Response @@ -132062,8 +132253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *397 - - *840 + - *398 + - *841 responses: '204': description: Response @@ -132087,7 +132278,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *397 + - *398 - *17 - *19 responses: @@ -132097,9 +132288,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '404': *6 @@ -132136,7 +132327,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 '304': *35 @@ -132178,7 +132369,7 @@ paths: - docker - nuget - container - - *841 + - *842 - *19 - *17 responses: @@ -132188,10 +132379,10 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 - '400': *843 + default: *843 + '400': *844 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -132211,16 +132402,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: - - *403 - *404 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &862 + default: &863 value: id: 40201 name: octo-name @@ -132333,8 +132524,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: - - *403 - *404 + - *405 responses: '204': description: Response @@ -132364,8 +132555,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: - - *403 - *404 + - *405 - name: token description: package token schema: @@ -132397,8 +132588,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: - - *403 - *404 + - *405 - *19 - *17 - name: state @@ -132418,7 +132609,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -132467,15 +132658,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -132511,9 +132702,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -132543,9 +132734,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -132582,9 +132773,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: *844 + default: *845 headers: Link: *45 '304': *35 @@ -132697,7 +132888,7 @@ paths: type: array items: *78 examples: - default: &851 + default: &852 summary: Default response value: - id: 1296269 @@ -133015,9 +133206,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -133055,9 +133246,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: *845 + default: *846 headers: Link: *45 '304': *35 @@ -133080,7 +133271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -133103,7 +133294,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -133136,7 +133327,7 @@ paths: application/json: schema: type: array - items: &846 + items: &847 title: Social account description: Social media account type: object @@ -133153,7 +133344,7 @@ paths: - provider - url examples: - default: &847 + default: &848 value: - provider: twitter url: https://twitter.com/github @@ -133216,9 +133407,9 @@ paths: application/json: schema: type: array - items: *846 + items: *847 examples: - default: *847 + default: *848 '422': *15 '304': *35 '404': *6 @@ -133306,7 +133497,7 @@ paths: application/json: schema: type: array - items: &848 + items: &849 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -133326,7 +133517,7 @@ paths: - title - created_at examples: - default: &876 + default: &877 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -133391,9 +133582,9 @@ paths: description: Response content: application/json: - schema: *848 + schema: *849 examples: - default: &849 + default: &850 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -133423,7 +133614,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: - - &850 + - &851 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -133435,9 +133626,9 @@ paths: description: Response content: application/json: - schema: *848 + schema: *849 examples: - default: *849 + default: *850 '404': *6 '304': *35 '403': *27 @@ -133460,7 +133651,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: - - *850 + - *851 responses: '204': description: Response @@ -133489,7 +133680,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: - - &877 + - &878 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 @@ -133514,11 +133705,11 @@ paths: type: array items: *78 examples: - default-response: *851 + default-response: *852 application/vnd.github.v3.star+json: schema: type: array - items: &878 + items: &879 title: Starred Repository description: Starred Repository type: object @@ -133674,8 +133865,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: - - *474 - *475 + - *476 responses: '204': description: Response if this repository is starred by you @@ -133703,8 +133894,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -133728,8 +133919,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -133762,9 +133953,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '304': *35 @@ -133801,7 +133992,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -133879,7 +134070,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *239 + - *240 responses: '200': description: Response @@ -133887,10 +134078,10 @@ paths: application/json: schema: oneOf: + - *827 - *826 - - *825 examples: - default-response: &855 + default-response: &856 summary: Default response value: login: octocat @@ -133925,7 +134116,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &856 + response-with-git-hub-plan-information: &857 summary: Response with GitHub plan information value: login: octocat @@ -133982,14 +134173,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &853 + - &854 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -134023,9 +134214,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - draft_issue: *425 + draft_issue: *426 '304': *35 '403': *27 '401': *23 @@ -134048,7 +134239,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *852 + - *853 - *17 responses: '200': @@ -134083,8 +134274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *853 - - *419 + - *854 + - *420 requestBody: required: true content: @@ -134158,17 +134349,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *854 + schema: *855 examples: table_view: summary: Response for creating a table view - value: *429 + value: *430 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -134210,11 +134401,11 @@ paths: application/json: schema: oneOf: + - *827 - *826 - - *825 examples: - default-response: *855 - response-with-git-hub-plan-information: *856 + default-response: *856 + response-with-git-hub-plan-information: *857 '404': *6 x-github: githubCloudOnly: false @@ -134264,8 +134455,8 @@ paths: required: - subject_digests examples: - default: *857 - withPredicateType: *858 + default: *858 + withPredicateType: *859 responses: '200': description: Response @@ -134319,7 +134510,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *859 + default: *860 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -134524,12 +134715,12 @@ paths: initiator: type: string examples: - default: *520 + default: *521 '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -134591,7 +134782,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *328 + items: *329 examples: default: summary: Example response for listing user copilot spaces @@ -134806,9 +134997,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &860 + default: &861 summary: Example response for a user copilot space value: id: 42 @@ -134907,9 +135098,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 x-github: @@ -135033,9 +135224,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 '422': *15 @@ -135112,7 +135303,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *330 + items: *331 examples: default: value: @@ -135255,7 +135446,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -135366,7 +135557,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -135496,7 +135687,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *331 + items: *332 examples: default: value: @@ -135588,7 +135779,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135604,7 +135795,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135657,7 +135848,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135724,7 +135915,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135801,9 +135992,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 + default: *843 '403': *27 '401': *23 x-github: @@ -135836,7 +136027,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -135909,7 +136100,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -135996,7 +136187,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -136144,7 +136335,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *143 - - *226 + - *227 - *17 - *19 responses: @@ -136154,9 +136345,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -136187,9 +136378,9 @@ paths: application/json: schema: type: array - items: *832 + items: *833 examples: - default: *861 + default: *862 headers: Link: *45 x-github: @@ -136293,7 +136484,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -136379,7 +136570,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 x-github: @@ -136418,7 +136609,7 @@ paths: - docker - nuget - container - - *841 + - *842 - *143 - *19 - *17 @@ -136429,12 +136620,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 + default: *843 '403': *27 '401': *23 - '400': *843 + '400': *844 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -136454,17 +136645,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *862 + default: *863 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -136485,8 +136676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '204': @@ -136519,8 +136710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 - name: token description: package token @@ -136553,8 +136744,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-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': @@ -136563,7 +136754,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -136621,16 +136812,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: - - *403 - *404 - - *406 + - *405 + - *407 - *143 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -136665,10 +136856,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -136700,10 +136891,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -136744,9 +136935,9 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -136768,16 +136959,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *419 + - *420 - *143 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -136799,7 +136990,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *419 + - *420 - *143 - *17 - *108 @@ -136811,9 +137002,9 @@ paths: application/json: schema: type: array - items: *422 + items: *423 examples: - default: *863 + default: *864 headers: Link: *45 '304': *35 @@ -136835,7 +137026,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true content: @@ -136873,7 +137064,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *864 + items: *865 required: - name - data_type @@ -136889,7 +137080,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *865 + iteration_configuration: *866 required: - name - data_type @@ -136911,20 +137102,20 @@ paths: value: name: Due date data_type: date - single_select_field: *866 - iteration_field: *867 + single_select_field: *867 + iteration_field: *868 responses: '201': description: Response content: application/json: - schema: *422 + schema: *423 examples: - text_field: *868 - number_field: *869 - date_field: *870 - single_select_field: *871 - iteration_field: *872 + text_field: *869 + number_field: *870 + date_field: *871 + single_select_field: *872 + iteration_field: *873 '304': *35 '403': *27 '401': *23 @@ -136945,17 +137136,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *419 - - *873 + - *420 + - *874 - *143 responses: '200': description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: *874 + default: *875 headers: Link: *45 '304': *35 @@ -136978,7 +137169,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *419 + - *420 - *143 - *108 - *109 @@ -137011,9 +137202,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -137035,7 +137226,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -137105,22 +137296,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -137140,9 +137331,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: - - *419 + - *420 - *143 - - *428 + - *429 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -137162,9 +137353,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -137185,9 +137376,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -137260,13 +137451,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -137286,9 +137477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 responses: '204': description: Response @@ -137310,9 +137501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *419 + - *420 - *143 - - *875 + - *876 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -137338,9 +137529,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -137378,7 +137569,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -137453,7 +137644,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -137559,9 +137750,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -137591,9 +137782,9 @@ paths: application/json: schema: type: array - items: *846 + items: *847 examples: - default: *847 + default: *848 headers: Link: *45 x-github: @@ -137623,9 +137814,9 @@ paths: application/json: schema: type: array - items: *848 + items: *849 examples: - default: *876 + default: *877 headers: Link: *45 x-github: @@ -137650,7 +137841,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *143 - - *877 + - *878 - *110 - *17 - *19 @@ -137662,11 +137853,11 @@ paths: schema: anyOf: - type: array - items: *878 + items: *879 - type: array items: *78 examples: - default-response: *851 + default-response: *852 headers: Link: *45 x-github: @@ -137695,9 +137886,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -137826,7 +138017,7 @@ webhooks: type: string enum: - disabled - enterprise: &879 + enterprise: &880 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -137895,7 +138086,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &880 + installation: &881 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -137916,7 +138107,7 @@ webhooks: required: - id - node_id - organization: &881 + organization: &882 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -137989,7 +138180,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &882 + repository: &883 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -138018,7 +138209,7 @@ webhooks: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -138915,10 +139106,10 @@ webhooks: type: string enum: - enabled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -138994,11 +139185,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: &883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: &884 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) @@ -139221,11 +139412,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -139413,11 +139604,11 @@ webhooks: - everyone required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -139490,7 +139681,7 @@ webhooks: required: true content: application/json: - schema: &903 + schema: &904 title: Exemption request cancellation event type: object properties: @@ -139498,11 +139689,11 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: &884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: &885 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -139811,7 +140002,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &885 + items: &886 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -139923,7 +140114,7 @@ webhooks: required: true content: application/json: - schema: &904 + schema: &905 title: Exemption request completed event type: object properties: @@ -139931,11 +140122,11 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -140007,7 +140198,7 @@ webhooks: required: true content: application/json: - schema: &901 + schema: &902 title: Exemption request created event type: object properties: @@ -140015,11 +140206,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -140091,7 +140282,7 @@ webhooks: required: true content: application/json: - schema: &905 + schema: &906 title: Exemption response dismissed event type: object properties: @@ -140099,12 +140290,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -140178,7 +140369,7 @@ webhooks: required: true content: application/json: - schema: &902 + schema: &903 title: Exemption response submitted event type: object properties: @@ -140186,12 +140377,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -140275,7 +140466,7 @@ webhooks: type: string enum: - completed - check_run: &887 + check_run: &888 title: CheckRun description: A check performed on the code of a given code change type: object @@ -140340,8 +140531,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *224 - repository: *280 + items: *225 + repository: *281 status: type: string enum: @@ -140385,7 +140576,7 @@ webhooks: - examples: - neutral - deployment: *886 + deployment: *887 details_url: type: string examples: @@ -140445,7 +140636,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *224 + items: *225 started_at: type: string format: date-time @@ -140483,10 +140674,10 @@ webhooks: - output - app - pull_requests - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -140877,11 +141068,11 @@ webhooks: type: string enum: - created - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -141275,11 +141466,11 @@ webhooks: type: string enum: - requested_action - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 requested_action: description: The action requested by the user. type: object @@ -141682,11 +141873,11 @@ webhooks: type: string enum: - rerequested - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -142671,10 +142862,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -143388,10 +143579,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -144099,10 +144290,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -144271,7 +144462,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -144423,20 +144614,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &888 + commit_oid: &889 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: *879 - installation: *880 - organization: *881 - ref: &889 + enterprise: *880 + installation: *881 + organization: *882 + ref: &890 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: *882 + repository: *883 sender: *4 required: - action @@ -144603,7 +144794,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -144844,12 +145035,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -144947,7 +145138,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -145132,12 +145323,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -145306,7 +145497,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -145483,12 +145674,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -145589,7 +145780,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -145778,9 +145969,9 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -145788,7 +145979,7 @@ webhooks: type: - string - 'null' - repository: *882 + repository: *883 sender: *4 required: - action @@ -145887,7 +146078,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -146034,12 +146225,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -146208,7 +146399,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -146360,10 +146551,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -146623,10 +146814,10 @@ webhooks: - updated_at - author_association - body - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -146707,18 +146898,18 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *881 - pusher_type: &890 + organization: *882 + pusher_type: &891 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &891 + ref: &892 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -146728,7 +146919,7 @@ webhooks: enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -146811,9 +147002,9 @@ webhooks: enum: - created definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146898,9 +147089,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146978,9 +147169,9 @@ webhooks: enum: - promote_to_enterprise definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -147058,9 +147249,9 @@ webhooks: enum: - updated definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -147137,10 +147328,10 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - repository: *882 - organization: *881 + enterprise: *880 + installation: *881 + repository: *883 + organization: *882 sender: *4 new_property_values: type: array @@ -147225,18 +147416,18 @@ webhooks: title: delete event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - pusher_type: *890 - ref: *891 + enterprise: *880 + installation: *881 + organization: *882 + pusher_type: *891 + ref: *892 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -147316,11 +147507,11 @@ webhooks: type: string enum: - assignees_changed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147400,11 +147591,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147485,11 +147676,11 @@ webhooks: type: string enum: - auto_reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147570,11 +147761,11 @@ webhooks: type: string enum: - created - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147653,11 +147844,11 @@ webhooks: type: string enum: - dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147736,11 +147927,11 @@ webhooks: type: string enum: - fixed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147820,11 +148011,11 @@ webhooks: type: string enum: - reintroduced - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147903,11 +148094,11 @@ webhooks: type: string enum: - reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147984,9 +148175,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - key: &892 + enterprise: *880 + installation: *881 + key: &893 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -148024,8 +148215,8 @@ webhooks: - verified - created_at - read_only - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -148102,11 +148293,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - key: *892 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + key: *893 + organization: *882 + repository: *883 sender: *4 required: - action @@ -148673,12 +148864,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: &896 + workflow: &897 title: Workflow type: - object @@ -149429,13 +149620,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *615 + - *616 pull_requests: type: array - items: *723 - repository: *882 - organization: *881 - installation: *880 + items: *724 + repository: *883 + organization: *882 + installation: *881 sender: *4 responses: '200': @@ -149506,7 +149697,7 @@ webhooks: type: string enum: - approved - approver: &893 + approver: &894 type: object properties: avatar_url: @@ -149549,11 +149740,11 @@ webhooks: type: string comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: &894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: &895 type: array items: type: object @@ -149634,7 +149825,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &895 + workflow_job_run: &896 type: object properties: conclusion: @@ -150380,18 +150571,18 @@ webhooks: type: string enum: - rejected - approver: *893 + approver: *894 comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: *894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: *895 sender: *4 since: type: string - workflow_job_run: *895 + workflow_job_run: *896 workflow_job_runs: type: array items: @@ -151108,13 +151299,13 @@ webhooks: type: string enum: - requested - enterprise: *879 + enterprise: *880 environment: type: string - installation: *880 - organization: *881 - repository: *882 - requestor: &906 + installation: *881 + organization: *882 + repository: *883 + requestor: &907 title: User type: - object @@ -153047,12 +153238,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Deployment Workflow Run type: @@ -153743,7 +153934,7 @@ webhooks: type: string enum: - answered - answer: &899 + answer: &900 type: object properties: author_association: @@ -153903,11 +154094,11 @@ webhooks: - created_at - updated_at - body - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154034,11 +154225,11 @@ webhooks: - from required: - category - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154121,11 +154312,11 @@ webhooks: type: string enum: - closed - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154207,7 +154398,7 @@ webhooks: type: string enum: - created - comment: &898 + comment: &899 type: object properties: author_association: @@ -154367,11 +154558,11 @@ webhooks: - updated_at - body - reactions - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154454,12 +154645,12 @@ webhooks: type: string enum: - deleted - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154554,12 +154745,12 @@ webhooks: - from required: - body - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154643,11 +154834,11 @@ webhooks: type: string enum: - created - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154729,11 +154920,11 @@ webhooks: type: string enum: - deleted - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154833,11 +155024,11 @@ webhooks: type: string required: - from - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154919,10 +155110,10 @@ webhooks: type: string enum: - labeled - discussion: *897 - enterprise: *879 - installation: *880 - label: &900 + discussion: *898 + enterprise: *880 + installation: *881 + label: &901 title: Label type: object properties: @@ -154955,8 +155146,8 @@ webhooks: - color - default - description - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155039,11 +155230,11 @@ webhooks: type: string enum: - locked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155125,11 +155316,11 @@ webhooks: type: string enum: - pinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155211,11 +155402,11 @@ webhooks: type: string enum: - reopened - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155300,16 +155491,16 @@ webhooks: changes: type: object properties: - new_discussion: *897 - new_repository: *882 + new_discussion: *898 + new_repository: *883 required: - new_discussion - new_repository - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155392,10 +155583,10 @@ webhooks: type: string enum: - unanswered - discussion: *897 - old_answer: *899 - organization: *881 - repository: *882 + discussion: *898 + old_answer: *900 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155477,12 +155668,12 @@ webhooks: type: string enum: - unlabeled - discussion: *897 - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155565,11 +155756,11 @@ webhooks: type: string enum: - unlocked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155651,11 +155842,11 @@ webhooks: type: string enum: - unpinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155724,7 +155915,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155787,7 +155978,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155850,7 +156041,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155913,7 +156104,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155976,7 +156167,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156042,7 +156233,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156108,7 +156299,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156174,7 +156365,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156240,7 +156431,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156306,7 +156497,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156371,7 +156562,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156436,7 +156627,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156501,7 +156692,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156566,7 +156757,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156632,7 +156823,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156699,7 +156890,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *879 + enterprise: *880 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -157377,9 +157568,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - forkee @@ -157525,9 +157716,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pages: description: The pages that were updated. type: array @@ -157565,7 +157756,7 @@ webhooks: - action - sha - html_url - repository: *882 + repository: *883 sender: *4 required: - pages @@ -157641,10 +157832,10 @@ webhooks: type: string enum: - created - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: &907 + organization: *882 + repositories: &908 description: An array of repository objects that the installation can access. type: array @@ -157670,8 +157861,8 @@ webhooks: - name - full_name - private - repository: *882 - requester: *906 + repository: *883 + requester: *907 sender: *4 required: - action @@ -157746,11 +157937,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -157827,11 +158018,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -157908,10 +158099,10 @@ webhooks: type: string enum: - added - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: &908 + organization: *882 + repositories_added: &909 description: An array of repository objects, which were added to the installation. type: array @@ -157957,15 +158148,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *882 - repository_selection: &909 + repository: *883 + repository_selection: &910 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *906 + requester: *907 sender: *4 required: - action @@ -158044,10 +158235,10 @@ webhooks: type: string enum: - removed - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: *908 + organization: *882 + repositories_added: *909 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -158074,9 +158265,9 @@ webhooks: - name - full_name - private - repository: *882 - repository_selection: *909 - requester: *906 + repository: *883 + repository_selection: *910 + requester: *907 sender: *4 required: - action @@ -158155,11 +158346,11 @@ webhooks: type: string enum: - suspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -158342,10 +158533,10 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 target_type: type: string @@ -158424,11 +158615,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -158594,11 +158785,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 user: title: User type: @@ -158684,8 +158875,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159497,8 +159688,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159515,7 +159706,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -159859,8 +160050,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -159940,7 +160131,7 @@ webhooks: type: string enum: - deleted - comment: &910 + comment: &911 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -160097,11 +160288,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - url - html_url @@ -160115,8 +160306,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160924,8 +161115,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160942,7 +161133,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -161288,8 +161479,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -161369,7 +161560,7 @@ webhooks: type: string enum: - edited - changes: &934 + changes: &935 description: The changes to the comment. type: object properties: @@ -161381,9 +161572,9 @@ webhooks: type: string required: - from - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162194,8 +162385,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162212,7 +162403,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -162556,8 +162747,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -162638,9 +162829,9 @@ webhooks: type: string enum: - pinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163453,8 +163644,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163471,7 +163662,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -163817,8 +164008,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -163898,9 +164089,9 @@ webhooks: type: string enum: - unpinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -164713,8 +164904,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164731,7 +164922,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -165077,8 +165268,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165161,15 +165352,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165252,15 +165443,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165342,15 +165533,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165433,15 +165624,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165521,10 +165712,10 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - issue: &911 + assignee: *907 + enterprise: *880 + installation: *881 + issue: &912 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -166334,12 +166525,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166356,7 +166547,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -166459,8 +166650,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166540,8 +166731,8 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -167356,12 +167547,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167378,7 +167569,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -167624,8 +167815,8 @@ webhooks: required: - state - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -167704,8 +167895,8 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168511,12 +168702,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168533,7 +168724,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -168635,8 +168826,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -168715,8 +168906,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169545,12 +169736,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169567,7 +169758,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -169648,7 +169839,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &912 + milestone: &913 title: Milestone description: A collection of related issues and pull requests. type: object @@ -169791,8 +169982,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -169891,8 +170082,8 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170702,12 +170893,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170721,7 +170912,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -170827,9 +171018,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -170909,9 +171100,9 @@ webhooks: type: string enum: - field_added - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was set or updated on the @@ -171077,8 +171268,8 @@ webhooks: - id required: - from - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -171158,9 +171349,9 @@ webhooks: type: string enum: - field_removed - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -171247,8 +171438,8 @@ webhooks: - 'null' required: - id - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -171328,8 +171519,8 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172138,12 +172329,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172157,7 +172348,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -172263,9 +172454,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -172345,8 +172536,8 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173180,12 +173371,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173199,7 +173390,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -173282,8 +173473,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -173362,8 +173553,8 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174191,12 +174382,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174213,7 +174404,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -174293,9 +174484,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *912 - organization: *881 - repository: *882 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -175182,11 +175373,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175213,7 +175404,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -175286,7 +175477,7 @@ webhooks: required: - login - id - type: *386 + type: *387 required: - id - number @@ -175778,8 +175969,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176586,11 +176777,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176607,7 +176798,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -176618,7 +176809,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -176713,8 +176904,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -176794,9 +176985,9 @@ webhooks: type: string enum: - pinned - enterprise: *879 - installation: *880 - issue: &913 + enterprise: *880 + installation: *881 + issue: &914 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -177600,12 +177791,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177622,7 +177813,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -177724,8 +177915,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -177804,8 +177995,8 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -178637,12 +178828,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178739,9 +178930,9 @@ webhooks: format: uri user_view_type: type: string - type: *386 - organization: *881 - repository: *882 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -179628,12 +179819,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179650,7 +179841,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -180243,11 +180434,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180327,12 +180518,12 @@ webhooks: type: string enum: - typed - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180413,7 +180604,7 @@ webhooks: type: string enum: - unassigned - assignee: &937 + assignee: &938 title: User type: - object @@ -180485,11 +180676,11 @@ webhooks: required: - login - id - enterprise: *879 - installation: *880 - issue: *911 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180568,12 +180759,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - issue: *911 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180653,8 +180844,8 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -181486,12 +181677,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -181508,7 +181699,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -181588,8 +181779,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181669,11 +181860,11 @@ webhooks: type: string enum: - unpinned - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181752,12 +181943,12 @@ webhooks: type: string enum: - untyped - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181837,11 +182028,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181919,11 +182110,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182033,11 +182224,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182119,9 +182310,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: &914 + enterprise: *880 + installation: *881 + marketplace_purchase: &915 title: Marketplace Purchase type: object required: @@ -182209,8 +182400,8 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: &915 + organization: *882 + previous_marketplace_purchase: &916 title: Marketplace Purchase type: object properties: @@ -182294,7 +182485,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -182374,10 +182565,10 @@ webhooks: - changed effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -182465,7 +182656,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -182547,10 +182738,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -182636,7 +182827,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -182717,8 +182908,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 marketplace_purchase: title: Marketplace Purchase type: object @@ -182804,9 +182995,9 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -182886,12 +183077,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -182993,11 +183184,11 @@ webhooks: type: string required: - to - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183099,11 +183290,11 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183182,11 +183373,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183264,11 +183455,11 @@ webhooks: type: string enum: - added - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -183346,7 +183537,7 @@ webhooks: required: - login - id - team: &916 + team: &917 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -183576,11 +183767,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -183659,7 +183850,7 @@ webhooks: required: - login - id - team: *916 + team: *917 required: - action - scope @@ -183741,8 +183932,8 @@ webhooks: type: string enum: - checks_requested - installation: *880 - merge_group: &917 + installation: *881 + merge_group: &918 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -183761,15 +183952,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *540 + head_commit: *541 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183855,10 +184046,10 @@ webhooks: - merged - invalidated - dequeued - installation: *880 - merge_group: *917 - organization: *881 - repository: *882 + installation: *881 + merge_group: *918 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183931,7 +184122,7 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -184040,12 +184231,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *880 - organization: *881 + installation: *881 + organization: *882 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -184125,11 +184316,11 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184208,9 +184399,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - milestone: &918 + enterprise: *880 + installation: *881 + milestone: &919 title: Milestone description: A collection of related issues and pull requests. type: object @@ -184352,8 +184543,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184432,11 +184623,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184546,11 +184737,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184630,11 +184821,11 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - milestone: *918 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *919 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184713,11 +184904,11 @@ webhooks: type: string enum: - blocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184796,11 +184987,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184876,7 +185067,7 @@ webhooks: enum: - created definition: *151 - enterprise: *879 + enterprise: *880 sender: *4 required: - action @@ -184956,8 +185147,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -185030,8 +185221,8 @@ webhooks: enum: - updated definition: *151 - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -185103,9 +185294,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 new_property_values: type: array @@ -185193,9 +185384,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - membership: &919 + enterprise: *880 + installation: *881 + membership: &920 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -185305,8 +185496,8 @@ webhooks: - role - organization_url - user - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185384,11 +185575,11 @@ webhooks: type: string enum: - member_added - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185467,8 +185658,8 @@ webhooks: type: string enum: - member_invited - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -185590,10 +185781,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 - user: *906 + user: *907 required: - action - invitation @@ -185671,11 +185862,11 @@ webhooks: type: string enum: - member_removed - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185762,11 +185953,11 @@ webhooks: properties: from: type: string - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185844,9 +186035,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -186369,7 +186560,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &920 + items: &921 title: Ruby Gems metadata type: object properties: @@ -186466,7 +186657,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -186543,9 +186734,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -186907,7 +187098,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 source_url: type: string format: uri @@ -186978,7 +187169,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -187158,12 +187349,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *879 + enterprise: *880 id: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - id @@ -187240,7 +187431,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &921 + personal_access_token_request: &922 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -187390,10 +187581,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *879 - organization: *881 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187470,11 +187661,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187550,11 +187741,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187629,11 +187820,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *921 - organization: *881 - enterprise: *879 + personal_access_token_request: *922 + organization: *882 + enterprise: *880 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187738,7 +187929,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *922 + last_response: *923 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -187770,8 +187961,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 zen: description: Random string of GitHub zen. @@ -188016,10 +188207,10 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: &923 + enterprise: *880 + installation: *881 + organization: *882 + project_card: &924 title: Project Card type: object properties: @@ -188142,7 +188333,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -188223,11 +188414,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -188307,9 +188498,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: title: Project Card type: object @@ -188439,7 +188630,7 @@ webhooks: repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -188533,11 +188724,11 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -188631,9 +188822,9 @@ webhooks: - from required: - column_id - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: allOf: - title: Project Card @@ -188830,7 +189021,7 @@ webhooks: type: string required: - after_id - repository: *882 + repository: *883 sender: *4 required: - action @@ -188910,10 +189101,10 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - organization: *881 - project: &925 + enterprise: *880 + installation: *881 + organization: *882 + project: &926 title: Project type: object properties: @@ -189040,7 +189231,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -189120,10 +189311,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_column: &924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: &925 title: Project Column type: object properties: @@ -189163,7 +189354,7 @@ webhooks: - name - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -189242,14 +189433,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -189338,11 +189529,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -189422,11 +189613,11 @@ webhooks: type: string enum: - moved - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -189506,11 +189697,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189590,14 +189781,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project: *925 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -189698,11 +189889,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189781,11 +189972,11 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189866,9 +190057,9 @@ webhooks: type: string enum: - closed - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -189949,9 +190140,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -190032,9 +190223,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -190155,9 +190346,9 @@ webhooks: type: string to: type: string - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -190240,7 +190431,7 @@ webhooks: type: string enum: - archived - changes: &929 + changes: &930 type: object properties: archived_at: @@ -190256,9 +190447,9 @@ webhooks: - string - 'null' format: date-time - installation: *880 - organization: *881 - projects_v2_item: &926 + installation: *881 + organization: *882 + projects_v2_item: &927 title: Projects v2 Item description: An item belonging to a project type: object @@ -190276,7 +190467,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *423 + content_type: *424 creator: *4 created_at: type: string @@ -190398,9 +190589,9 @@ webhooks: - 'null' to: type: string - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190482,9 +190673,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190565,9 +190756,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190672,7 +190863,7 @@ webhooks: oneOf: - type: string - type: integer - - &927 + - &928 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -190696,7 +190887,7 @@ webhooks: required: - id - name - - &928 + - &929 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -190736,8 +190927,8 @@ webhooks: oneOf: - type: string - type: integer - - *927 - *928 + - *929 type: - 'null' - string @@ -190760,9 +190951,9 @@ webhooks: - 'null' required: - body - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190859,9 +191050,9 @@ webhooks: type: - string - 'null' - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190944,10 +191135,10 @@ webhooks: type: string enum: - restored - changes: *929 - installation: *880 - organization: *881 - projects_v2_item: *926 + changes: *930 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191029,9 +191220,9 @@ webhooks: type: string enum: - reopened - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -191112,9 +191303,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -191195,9 +191386,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -191343,9 +191534,9 @@ webhooks: - string - 'null' format: date - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -191416,10 +191607,10 @@ webhooks: title: public event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - repository @@ -191496,13 +191687,13 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - number: &931 + assignee: *907 + enterprise: *880 + installation: *881 + number: &932 description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -193873,7 +194064,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -193955,11 +194146,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -196323,7 +196514,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -196405,11 +196596,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -198773,7 +198964,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -198855,13 +199046,13 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: &932 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: &933 allOf: - - *723 + - *724 - type: object properties: allow_auto_merge: @@ -198923,7 +199114,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *882 + repository: *883 sender: *4 required: - action @@ -199004,12 +199195,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -199089,11 +199280,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: &933 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: &934 title: Pull Request type: object properties: @@ -201442,7 +201633,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -201521,11 +201712,11 @@ webhooks: type: string enum: - dequeued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -203893,7 +204084,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *882 + repository: *883 sender: *4 required: - action @@ -204017,12 +204208,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -204102,11 +204293,11 @@ webhooks: type: string enum: - enqueued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -206459,7 +206650,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -206539,11 +206730,11 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -208913,7 +209104,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -208994,10 +209185,10 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -211365,7 +211556,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -211445,12 +211636,12 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: *933 - repository: *882 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: *934 + repository: *883 sender: *4 required: - action @@ -211529,12 +211720,12 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -211615,12 +211806,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -211700,12 +211891,12 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -212080,9 +212271,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -214334,7 +214525,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -214414,7 +214605,7 @@ webhooks: type: string enum: - deleted - comment: &935 + comment: &936 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. @@ -214707,9 +214898,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -216949,7 +217140,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -217029,11 +217220,11 @@ webhooks: type: string enum: - edited - changes: *934 - comment: *935 - enterprise: *879 - installation: *880 - organization: *881 + changes: *935 + comment: *936 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -219276,7 +219467,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -219357,9 +219548,9 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -221614,7 +221805,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 review: description: The review that was affected. type: object @@ -221865,9 +222056,9 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -223981,8 +224172,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: &936 + repository: *883 + review: &937 description: The review that was affected. type: object properties: @@ -224220,12 +224411,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -226594,7 +226785,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -226680,12 +226871,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -229061,7 +229252,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -229256,12 +229447,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -231632,7 +231823,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -231719,12 +231910,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -234086,7 +234277,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -234270,9 +234461,9 @@ webhooks: type: string enum: - submitted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -236530,8 +236721,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: *936 + repository: *883 + review: *937 sender: *4 required: - action @@ -236611,9 +236802,9 @@ webhooks: type: string enum: - resolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -238766,7 +238957,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -239163,9 +239354,9 @@ webhooks: type: string enum: - unresolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -241301,7 +241492,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -241694,10 +241885,10 @@ webhooks: type: string enum: - stacked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -244067,7 +244258,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -244153,10 +244344,10 @@ webhooks: type: string before: type: string - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -246513,7 +246704,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -246595,11 +246786,11 @@ webhooks: type: string enum: - unassigned - assignee: *937 - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + assignee: *938 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -248971,7 +249162,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -249050,11 +249241,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -251415,7 +251606,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -251496,10 +251687,10 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -253850,7 +254041,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -254053,7 +254244,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *879 + enterprise: *880 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -254148,8 +254339,8 @@ webhooks: - url - author - committer - installation: *880 - organization: *881 + installation: *881 + organization: *882 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -254748,9 +254939,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -255227,7 +255418,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -255283,7 +255474,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -255361,9 +255552,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -255675,7 +255866,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -255725,7 +255916,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -255802,10 +255993,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - release: &938 + enterprise: *880 + installation: *881 + organization: *882 + release: &939 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -256136,7 +256327,7 @@ webhooks: - updated_at - zipball_url - body - repository: *882 + repository: *883 sender: *4 required: - action @@ -256213,11 +256404,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -256334,11 +256525,11 @@ webhooks: type: boolean required: - to - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -256416,9 +256607,9 @@ webhooks: type: string enum: - prereleased - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -256754,7 +256945,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -256830,10 +257021,10 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - release: &939 + enterprise: *880 + installation: *881 + organization: *882 + release: &940 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -257166,7 +257357,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -257242,11 +257433,11 @@ webhooks: type: string enum: - released - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -257322,11 +257513,11 @@ webhooks: type: string enum: - unpublished - enterprise: *879 - installation: *880 - organization: *881 - release: *939 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *940 + repository: *883 sender: *4 required: - action @@ -257402,11 +257593,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -257482,11 +257673,11 @@ webhooks: type: string enum: - reported - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -257562,10 +257753,10 @@ webhooks: type: string enum: - archived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257642,10 +257833,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257723,10 +257914,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257811,10 +258002,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257929,10 +258120,10 @@ webhooks: - 'null' items: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258004,10 +258195,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 status: type: string @@ -258088,10 +258279,10 @@ webhooks: type: string enum: - privatized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258168,10 +258359,10 @@ webhooks: type: string enum: - publicized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258265,10 +258456,10 @@ webhooks: - name required: - repository - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258348,10 +258539,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -258430,10 +258621,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -258512,10 +258703,10 @@ webhooks: type: string enum: - edited - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 changes: type: object @@ -258577,16 +258768,16 @@ webhooks: properties: added: type: array - items: *744 + items: *745 deleted: type: array - items: *744 + items: *745 updated: type: array items: type: object properties: - rule: *744 + rule: *745 changes: type: object properties: @@ -258823,10 +259014,10 @@ webhooks: - from required: - owner - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258904,10 +259095,10 @@ webhooks: type: string enum: - unarchived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258985,7 +259176,7 @@ webhooks: type: string enum: - create - alert: &940 + alert: &941 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -259110,10 +259301,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259323,10 +259514,10 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259404,11 +259595,11 @@ webhooks: type: string enum: - reopen - alert: *940 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *941 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259610,10 +259801,10 @@ webhooks: enum: - fixed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259691,7 +259882,7 @@ webhooks: type: string enum: - assigned - alert: &942 + alert: &943 type: object properties: number: *130 @@ -259830,12 +260021,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *941 + metadata: *942 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259913,11 +260104,11 @@ webhooks: type: string enum: - created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259998,11 +260189,11 @@ webhooks: type: string enum: - created - alert: *942 - installation: *880 - location: *943 - organization: *881 - repository: *882 + alert: *943 + installation: *881 + location: *944 + organization: *882 + repository: *883 sender: *4 required: - location @@ -260240,11 +260431,11 @@ webhooks: type: string enum: - metadata_created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260321,11 +260512,11 @@ webhooks: type: string enum: - metadata_removed - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260402,11 +260593,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260484,11 +260675,11 @@ webhooks: type: string enum: - reopened - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260566,11 +260757,11 @@ webhooks: type: string enum: - resolved - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260648,12 +260839,12 @@ webhooks: type: string enum: - unassigned - alert: *942 + alert: *943 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260731,11 +260922,11 @@ webhooks: type: string enum: - validated - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260865,10 +261056,10 @@ webhooks: - organization - enterprise - - repository: *882 - enterprise: *879 - installation: *880 - organization: *881 + repository: *883 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -260946,11 +261137,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: &944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: &945 description: The details of the security advisory, including summary, description, and severity. type: object @@ -261136,11 +261327,11 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: *944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: *945 sender: *4 required: - action @@ -261213,10 +261404,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -261402,11 +261593,11 @@ webhooks: from: type: object properties: - security_and_analysis: *431 - enterprise: *879 - installation: *880 - organization: *881 - repository: *479 + security_and_analysis: *432 + enterprise: *880 + installation: *881 + organization: *882 + repository: *480 sender: *4 required: - changes @@ -261484,12 +261675,12 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: &945 + sponsorship: &946 type: object properties: created_at: @@ -261794,12 +261985,12 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -261887,12 +262078,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -261969,17 +262160,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &946 + effective_date: &947 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: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -262053,7 +262244,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &947 + changes: &948 type: object properties: tier: @@ -262097,13 +262288,13 @@ webhooks: - from required: - tier - effective_date: *946 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + effective_date: *947 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -262180,13 +262371,13 @@ webhooks: type: string enum: - tier_changed - changes: *947 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + changes: *948 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -262260,10 +262451,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -262347,10 +262538,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -262784,15 +262975,15 @@ webhooks: type: - string - 'null' - enterprise: *879 + enterprise: *880 id: description: The unique identifier of the status. type: integer - installation: *880 + installation: *881 name: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 sha: description: The Commit SHA. @@ -262902,15 +263093,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262993,15 +263184,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -263084,15 +263275,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -263175,15 +263366,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -263259,12 +263450,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - team: &948 + team: &949 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -263494,9 +263685,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -263966,7 +264157,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -264042,9 +264233,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -264514,7 +264705,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -264591,9 +264782,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -265063,7 +265254,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -265207,9 +265398,9 @@ webhooks: - from required: - permissions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -265679,7 +265870,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - changes @@ -265757,9 +265948,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -266229,7 +266420,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -266305,10 +266496,10 @@ webhooks: type: string enum: - started - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -266381,17 +266572,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *879 + enterprise: *880 inputs: type: - object - 'null' additionalProperties: true - installation: *880 - organization: *881 + installation: *881 + organization: *882 ref: type: string - repository: *882 + repository: *883 sender: *4 workflow: type: string @@ -266473,10 +266664,10 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -266732,7 +266923,7 @@ webhooks: type: string required: - conclusion - deployment: *615 + deployment: *616 required: - action - repository @@ -266811,10 +267002,10 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -267096,7 +267287,7 @@ webhooks: required: - status - steps - deployment: *615 + deployment: *616 required: - action - repository @@ -267175,10 +267366,10 @@ webhooks: type: string enum: - queued - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -267324,7 +267515,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -267403,10 +267594,10 @@ webhooks: type: string enum: - waiting - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -267553,7 +267744,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -267633,12 +267824,12 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -268657,12 +268848,12 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -269666,12 +269857,12 @@ webhooks: type: string enum: - requested - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json index 2e5078f60..b934a28a8 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -88811,6 +88811,584 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "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": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + } + } + } + } + }, + "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml index 05762a8c2..b9152f06b 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -891,7 +891,7 @@ paths: - subscriptions_url - type - url - type: &458 + type: &459 type: string description: The type of credit the user is receiving. enum: @@ -1023,7 +1023,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &256 + schema: &257 title: Validation Error Simple description: Validation Error Simple type: object @@ -1056,7 +1056,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: - - &779 + - &780 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4169,7 +4169,7 @@ paths: schema: type: integer default: 30 - - &359 + - &360 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 @@ -4178,7 +4178,7 @@ paths: required: false schema: type: string - - &360 + - &361 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4198,7 +4198,7 @@ paths: application/json: schema: type: array - items: &361 + items: &362 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4294,7 +4294,7 @@ paths: - installation_id - repository_id examples: - default: &362 + default: &363 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4326,7 +4326,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &788 + schema: &789 title: Scim Error description: Scim Error type: object @@ -4357,7 +4357,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &255 + schema: &256 title: Validation Error description: Validation Error type: object @@ -4429,7 +4429,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4564,7 +4564,7 @@ paths: - request - response examples: - default: &364 + default: &365 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4768,7 +4768,7 @@ paths: parameters: - *17 - *19 - - &226 + - &227 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) @@ -5615,7 +5615,7 @@ paths: license: anyOf: - type: 'null' - - &223 + - &224 title: License Simple description: License Simple type: object @@ -10523,7 +10523,7 @@ paths: description: Response content: application/json: - schema: &257 + schema: &258 type: object properties: total_active_caches_count: @@ -10538,7 +10538,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &258 + default: &259 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10753,7 +10753,7 @@ paths: - public_ip_enabled - platform examples: - default: &259 + default: &260 value: total_count: 2 runners: @@ -11057,7 +11057,7 @@ paths: application/json: schema: *47 examples: - default: &260 + default: &261 value: id: 1 platform: linux-x64 @@ -11202,7 +11202,7 @@ paths: application/json: schema: *50 examples: - default: &261 + default: &262 value: version: 1.0.0 size_gb: 75 @@ -11370,7 +11370,7 @@ paths: description: Response content: application/json: - schema: &262 + schema: &263 type: object properties: public_ips: @@ -11397,7 +11397,7 @@ paths: required: - public_ips examples: - default: &263 + default: &264 value: public_ips: current_usage: 17 @@ -11437,7 +11437,7 @@ paths: type: array items: *54 examples: - default: &264 + default: &265 value: id: 4-core cpu_cores: 4 @@ -11755,7 +11755,7 @@ paths: required: true content: application/json: - schema: &265 + schema: &266 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11866,7 +11866,7 @@ paths: - all - local_only - selected - selected_actions_url: &267 + selected_actions_url: &268 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` @@ -11946,7 +11946,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &269 + schema: &270 type: object properties: days: @@ -11964,7 +11964,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &789 + '401': &790 description: Authorization failure '404': *6 x-github: @@ -11992,7 +11992,7 @@ paths: required: true content: application/json: - schema: &270 + schema: &271 type: object properties: days: @@ -12041,7 +12041,7 @@ paths: required: - approval_policy examples: - default: &271 + default: &272 value: approval_policy: first_time_contributors '404': *6 @@ -12099,7 +12099,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &273 type: object required: - run_workflows_from_fork_pull_requests @@ -12153,7 +12153,7 @@ paths: required: true content: application/json: - schema: &273 + schema: &274 type: object required: - run_workflows_from_fork_pull_requests @@ -12589,7 +12589,7 @@ paths: description: Success response content: application/json: - schema: &276 + schema: &277 type: object properties: default_workflow_permissions: &67 @@ -12637,7 +12637,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 type: object properties: default_workflow_permissions: *67 @@ -13493,7 +13493,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Runner Application description: Runner Application type: object @@ -13518,7 +13518,7 @@ paths: - download_url - filename examples: - default: &282 + default: &283 value: - os: osx architecture: x64 @@ -13602,7 +13602,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &283 + '201': &284 description: Response content: application/json: @@ -13721,7 +13721,7 @@ paths: - token - expires_at examples: - default: &284 + default: &285 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13761,7 +13761,7 @@ paths: application/json: schema: *79 examples: - default: &285 + default: &286 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13793,7 +13793,7 @@ paths: application/json: schema: *76 examples: - default: &286 + default: &287 value: id: 23 name: MBP @@ -14010,7 +14010,7 @@ paths: - *39 - *75 responses: - '200': &287 + '200': &288 description: Response content: application/json: @@ -14066,7 +14066,7 @@ paths: parameters: - *39 - *75 - - &288 + - &289 name: name description: The name of a self-hosted runner's custom label. in: path @@ -14163,7 +14163,7 @@ paths: required: true content: application/json: - schema: &302 + schema: &303 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14814,7 +14814,7 @@ paths: required: false schema: type: string - - &305 + - &306 name: include description: |- The event types to include: @@ -14870,7 +14870,7 @@ paths: application/json: schema: type: array - items: &306 + items: &307 type: object properties: "@timestamp": @@ -14992,7 +14992,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &307 + default: &308 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15660,7 +15660,7 @@ paths: application/json: schema: type: array - items: &308 + items: &309 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15832,7 +15832,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &309 + default: &310 value: - id: 21 number: 42 @@ -15937,7 +15937,7 @@ paths: application/json: schema: type: array - items: &311 + items: &312 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -16068,7 +16068,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &312 + default: &313 value: - id: 21 number: 42 @@ -16153,7 +16153,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &317 + - &318 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`, @@ -16163,7 +16163,7 @@ paths: schema: &111 type: string description: The name of the tool used to generate the code scanning analysis. - - &318 + - &319 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 @@ -16187,7 +16187,7 @@ paths: be returned. in: query required: false - schema: &319 + schema: &320 type: string description: State of a code scanning alert. enum: @@ -16220,7 +16220,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 type: object properties: number: &130 @@ -16249,7 +16249,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &546 + instances_url: &547 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16285,7 +16285,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &547 + dismissed_reason: &548 type: - string - 'null' @@ -16296,14 +16296,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &548 + dismissed_comment: &549 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &549 + rule: &550 type: object properties: id: @@ -16364,7 +16364,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &550 + tool: &551 type: object properties: name: *111 @@ -16375,26 +16375,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *112 - most_recent_instance: &551 + most_recent_instance: &552 type: object properties: - ref: &544 + ref: &545 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &561 + analysis_key: &562 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &562 + environment: &563 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &563 + category: &564 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16414,7 +16414,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &564 + location: &565 type: object description: Describe a region within a file for the alert. properties: @@ -16435,7 +16435,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &565 + items: &566 type: - string - 'null' @@ -16791,7 +16791,7 @@ paths: - most_recent_instance - repository examples: - default: &321 + default: &322 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17687,7 +17687,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 type: array description: A list of default code security configurations items: @@ -17703,7 +17703,7 @@ paths: default configuration: *114 examples: - default: &324 + default: &325 value: - default_for_new_repos: public configuration: @@ -18161,7 +18161,7 @@ paths: default: value: default_for_new_repos: all - configuration: &322 + configuration: &323 value: id: 1325 target_type: organization @@ -18251,7 +18251,7 @@ paths: application/json: schema: type: array - items: &325 + items: &326 type: object description: Repositories associated with a code security configuration and attachment status @@ -18275,7 +18275,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &326 + repository: &327 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18776,7 +18776,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &313 + - &314 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18865,7 +18865,7 @@ paths: parent: anyOf: - type: 'null' - - &399 + - &400 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -19652,7 +19652,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': &333 + '413': &334 description: Payload Too Large content: application/json: @@ -20812,7 +20812,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &338 + - &339 name: classification in: query description: |- @@ -20821,7 +20821,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &339 + - &340 name: state in: query description: |- @@ -20830,7 +20830,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &340 + - &341 name: severity in: query description: |- @@ -20839,7 +20839,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &341 + - &342 name: ecosystem in: query description: |- @@ -20848,14 +20848,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &342 + - &343 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 - - &343 + - &344 name: epss_percentage in: query description: |- @@ -20867,7 +20867,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 - - &604 + - &605 name: has in: query description: |- @@ -20881,7 +20881,7 @@ paths: type: string enum: - patch - - &344 + - &345 name: assignee in: query description: |- @@ -20890,7 +20890,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &345 + - &346 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20900,7 +20900,7 @@ paths: enum: - development - runtime - - &346 + - &347 name: sort in: query description: |- @@ -20926,7 +20926,7 @@ paths: application/json: schema: type: array - items: &347 + items: &348 type: object description: A Dependabot alert. properties: @@ -20994,7 +20994,7 @@ paths: - transitive - inconclusive - - security_advisory: &605 + security_advisory: &606 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21214,7 +21214,7 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: &606 + auto_dismissed_at: &607 type: - string - 'null' @@ -21222,7 +21222,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &607 + dismissal_request: &608 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21285,7 +21285,7 @@ paths: - repository additionalProperties: false examples: - default: &348 + default: &349 value: - number: 2 state: dismissed @@ -21670,7 +21670,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &350 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21696,7 +21696,7 @@ paths: - *120 additionalProperties: false examples: - default: &350 + default: &351 value: default_level: public accessible_repositories: @@ -21919,7 +21919,7 @@ paths: - *103 - *104 - *105 - - &352 + - &353 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21945,7 +21945,7 @@ paths: application/json: schema: type: array - items: &354 + items: &355 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22072,7 +22072,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &355 + default: &356 value: - id: 21 number: 42 @@ -23170,7 +23170,7 @@ paths: application/json: schema: *20 examples: - default: &376 + default: &377 value: id: 1 account: @@ -23431,7 +23431,7 @@ paths: - name - created_on examples: - default: &462 + default: &463 value: total_count: 2 network_configurations: @@ -23682,7 +23682,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 - - &463 + - &464 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23694,7 +23694,7 @@ paths: description: Response content: application/json: - schema: &464 + schema: &465 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23733,7 +23733,7 @@ paths: - subnet_id - region examples: - default: &465 + default: &466 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24586,7 +24586,7 @@ paths: required: true content: application/json: - schema: &430 + schema: &431 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25827,7 +25827,7 @@ paths: conditions: anyOf: - *161 - - &434 + - &435 title: Organization ruleset conditions type: object description: |- @@ -25877,7 +25877,7 @@ paths: - object rules: type: array - items: &744 + items: &745 title: Repository Rule type: object description: A repository rule. @@ -25886,7 +25886,7 @@ paths: - *170 - *171 - *172 - - &741 + - &742 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25977,7 +25977,7 @@ paths: - *183 - *184 - *185 - - &742 + - &743 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26226,7 +26226,7 @@ paths: type: string format: date-time examples: - default: &437 + default: &438 value: - version_id: 3 actor: @@ -26279,7 +26279,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &439 allOf: - *194 - type: object @@ -26334,7 +26334,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &439 + - &440 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26345,7 +26345,7 @@ paths: enum: - open - resolved - - &440 + - &441 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26355,7 +26355,7 @@ paths: required: false schema: type: string - - &441 + - &442 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26366,7 +26366,7 @@ paths: required: false schema: type: string - - &442 + - &443 name: exclude_providers in: query description: |- @@ -26377,7 +26377,7 @@ paths: required: false schema: type: string - - &443 + - &444 name: providers in: query description: |- @@ -26388,7 +26388,7 @@ paths: required: false schema: type: string - - &444 + - &445 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26397,7 +26397,7 @@ paths: required: false schema: type: string - - &445 + - &446 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26416,7 +26416,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &446 + - &447 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. @@ -26432,7 +26432,7 @@ paths: - *17 - *108 - *109 - - &447 + - &448 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26441,7 +26441,7 @@ paths: required: false schema: type: string - - &448 + - &449 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26450,7 +26450,7 @@ paths: schema: type: boolean default: false - - &449 + - &450 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26459,7 +26459,7 @@ paths: schema: type: boolean default: false - - &450 + - &451 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26468,7 +26468,7 @@ paths: schema: type: boolean default: false - - &451 + - &452 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26479,7 +26479,7 @@ paths: required: false schema: type: boolean - - &452 + - &453 name: included_metadata in: query description: |- @@ -26490,7 +26490,7 @@ paths: required: false schema: type: string - - &453 + - &454 name: owner_email_hash in: query description: |- @@ -26509,7 +26509,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 type: object properties: number: *130 @@ -26525,14 +26525,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &757 + state: &758 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: &758 + resolution: &759 type: - string - 'null' @@ -26651,14 +26651,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &759 + - &760 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &761 + - &762 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26722,7 +26722,7 @@ paths: - blob_url - commit_sha - commit_url - - &762 + - &763 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. @@ -26783,7 +26783,7 @@ paths: - page_url - commit_sha - commit_url - - &763 + - &764 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26805,7 +26805,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &764 + - &765 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26827,7 +26827,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &765 + - &766 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26849,7 +26849,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &766 + - &767 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26864,7 +26864,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &767 + - &768 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26879,7 +26879,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &768 + - &769 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26894,7 +26894,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &769 + - &770 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. @@ -26916,7 +26916,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &770 + - &771 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. @@ -26938,7 +26938,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &771 + - &772 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. @@ -26960,7 +26960,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &772 + - &773 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. @@ -26982,7 +26982,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &773 + - &774 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 @@ -27028,7 +27028,7 @@ paths: - type: 'null' - *4 examples: - default: &455 + default: &456 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27237,7 +27237,7 @@ paths: description: Response content: application/json: - schema: &456 + schema: &457 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27324,7 +27324,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *196 examples: - default: &457 + default: &458 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27460,7 +27460,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &459 + - &460 name: advanced_security_product in: query description: | @@ -27480,7 +27480,7 @@ paths: description: Success content: application/json: - schema: &460 + schema: &461 type: object properties: total_advanced_security_committers: @@ -27543,7 +27543,7 @@ paths: required: - repositories examples: - default: &461 + default: &462 value: total_advanced_security_committers: 2 total_count: 2 @@ -30750,7 +30750,7 @@ paths: type: array items: *73 examples: - default: &250 + default: &251 value: - login: github id: 1 @@ -31038,6 +31038,197 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: &217 + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio + subscription assignment in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This + is a GUID that comes from the Visual Studio management + portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + examples: + - true + examples: + default: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -31127,7 +31318,7 @@ paths: application/json: schema: type: array - items: &245 + items: &246 title: Event description: Event type: object @@ -31138,7 +31329,7 @@ paths: type: - string - 'null' - actor: &217 + actor: &218 title: Actor description: Actor type: object @@ -31179,7 +31370,7 @@ paths: - id - name - url - org: *217 + org: *218 payload: oneOf: - title: CreateEvent @@ -31226,7 +31417,7 @@ paths: properties: action: type: string - discussion: &897 + discussion: &898 title: Discussion description: A Discussion in a repository. type: object @@ -31523,7 +31714,7 @@ paths: - id labels: type: array - items: &220 + items: &221 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -31606,7 +31797,7 @@ paths: properties: action: type: string - issue: &221 + issue: &222 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -31723,7 +31914,7 @@ paths: milestone: anyOf: - type: 'null' - - &420 + - &421 title: Milestone description: A collection of related issues and pull requests. @@ -31900,7 +32091,7 @@ paths: timeline_url: type: string format: uri - type: &386 + type: &387 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -31961,7 +32152,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &218 + author_association: &219 title: author_association type: string description: How the author is associated with the @@ -31977,7 +32168,7 @@ paths: - OWNER examples: - OWNER - reactions: &219 + reactions: &220 title: Reaction Rollup type: object properties: @@ -32013,7 +32204,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &816 + sub_issues_summary: &817 title: Sub-issues Summary type: object properties: @@ -32037,7 +32228,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &222 + - &223 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -32088,16 +32279,16 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - &688 + - &689 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -32118,7 +32309,7 @@ paths: minimized: anyOf: - type: 'null' - - &689 + - &690 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -32143,7 +32334,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &817 + issue_dependencies_summary: &818 title: Issue Dependencies Summary type: object properties: @@ -32162,7 +32353,7 @@ paths: - total_blocking issue_field_values: type: array - items: &672 + items: &673 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32297,10 +32488,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - issue @@ -32309,8 +32500,8 @@ paths: properties: action: type: string - issue: *221 - comment: *222 + issue: *222 + comment: *223 required: - action - issue @@ -32489,7 +32680,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 allow_forking: type: boolean is_template: @@ -32580,7 +32771,7 @@ paths: type: string number: type: integer - pull_request: &224 + pull_request: &225 title: Pull Request Minimal type: object properties: @@ -32651,10 +32842,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - number @@ -32664,7 +32855,7 @@ paths: properties: action: type: string - pull_request: *224 + pull_request: *225 comment: type: object properties: @@ -32918,7 +33109,7 @@ paths: - pull_request updated_at: type: string - pull_request: *224 + pull_request: *225 required: - action - review @@ -32967,7 +33158,7 @@ paths: updated_at: type: string format: date-time - reactions: *219 + reactions: *220 required: - action - comment @@ -32978,7 +33169,7 @@ paths: type: string release: allOf: - - &734 + - &735 title: Release description: A release. type: object @@ -33060,7 +33251,7 @@ paths: author: *4 assets: type: array - items: &735 + items: &736 title: Release Asset description: Data related to a release. type: object @@ -33135,7 +33326,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *219 + reactions: *220 required: - assets_url - upload_url @@ -33318,7 +33509,7 @@ paths: _links: type: object properties: - timeline: &225 + timeline: &226 title: Link With Type description: Hypermedia Link with Type type: object @@ -33330,17 +33521,17 @@ paths: required: - href - type - user: *225 - security_advisories: *225 - current_user: *225 - current_user_public: *225 - current_user_actor: *225 - current_user_organization: *225 + user: *226 + security_advisories: *226 + current_user: *226 + current_user_public: *226 + current_user_actor: *226 + current_user_organization: *226 current_user_organizations: type: array - items: *225 - repository_discussions: *225 - repository_discussions_category: *225 + items: *226 + repository_discussions: *226 + repository_discussions_category: *226 required: - timeline - user @@ -33402,7 +33593,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *226 + - *227 - *17 - *19 responses: @@ -33412,7 +33603,7 @@ paths: application/json: schema: type: array - items: &227 + items: &228 title: Base Gist description: Base Gist type: object @@ -33498,7 +33689,7 @@ paths: - created_at - updated_at examples: - default: &228 + default: &229 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -33622,7 +33813,7 @@ paths: description: Response content: application/json: - schema: &229 + schema: &230 title: Gist Simple description: Gist Simple type: object @@ -33789,7 +33980,7 @@ paths: truncated: type: boolean examples: - default: &230 + default: &231 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -33893,7 +34084,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -33903,9 +34094,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -33927,7 +34118,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -33937,9 +34128,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '401': *23 @@ -33966,7 +34157,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &231 + - &232 name: gist_id description: The unique identifier of the gist. in: path @@ -33978,10 +34169,10 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 - '403': &234 + default: *231 + '403': &235 description: Forbidden Gist content: application/json: @@ -34029,7 +34220,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *231 + - *232 requestBody: required: true content: @@ -34093,9 +34284,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - updateGist: *230 + updateGist: *231 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -34253,7 +34444,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -34281,7 +34472,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *231 + - *232 - *17 - *19 responses: @@ -34291,7 +34482,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 title: Gist Comment description: A comment made to a gist. type: object @@ -34329,7 +34520,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *218 + author_association: *219 required: - url - id @@ -34393,7 +34584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *231 + - *232 requestBody: required: true content: @@ -34419,9 +34610,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: &233 + default: &234 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -34478,8 +34669,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *231 - - &235 + - *232 + - &236 name: comment_id description: The unique identifier of the comment. in: path @@ -34492,12 +34683,12 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '304': *35 '404': *6 - '403': *234 + '403': *235 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34518,8 +34709,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 requestBody: required: true content: @@ -34545,9 +34736,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '404': *6 x-github: githubCloudOnly: false @@ -34564,8 +34755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 responses: '204': description: Response @@ -34588,7 +34779,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *231 + - *232 - *17 - *19 responses: @@ -34689,7 +34880,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *231 + - *232 - *17 - *19 responses: @@ -34699,7 +34890,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -34764,13 +34955,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *231 + - *232 responses: '201': description: Response content: application/json: - schema: *227 + schema: *228 examples: default: value: @@ -34840,7 +35031,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *231 + - *232 responses: '204': description: Response if gist is starred @@ -34870,7 +35061,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -34892,7 +35083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -34920,7 +35111,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *231 + - *232 - name: sha in: path required: true @@ -34931,9 +35122,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '422': *15 '404': *6 '403': *27 @@ -35316,7 +35507,7 @@ paths: - closed - all default: open - - &389 + - &390 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -35335,7 +35526,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - name: collab in: query required: false @@ -35365,9 +35556,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &390 + default: &391 value: - id: 1 node_id: MDU6SXNzdWUx @@ -35647,7 +35838,7 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: default: value: @@ -35945,7 +36136,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &236 + X-CommonMarker-Version: &237 example: 0.17.4 schema: type: string @@ -36000,7 +36191,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *236 + X-CommonMarker-Version: *237 content: text/html: schema: @@ -36029,7 +36220,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: - - &239 + - &240 name: account_id description: account_id parameter in: path @@ -36041,7 +36232,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -36075,7 +36266,7 @@ paths: - 'null' id: type: integer - plan: &237 + plan: &238 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -36178,7 +36369,7 @@ paths: - 'null' updated_at: type: string - plan: *237 + plan: *238 required: - url - id @@ -36186,7 +36377,7 @@ paths: - login - marketplace_purchase examples: - default: &240 + default: &241 value: url: https://api.github.com/orgs/github type: Organization @@ -36271,9 +36462,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: &241 + default: &242 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -36313,14 +36504,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &242 + - &243 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &243 + - &244 name: sort description: The property to sort the results by. in: query @@ -36350,9 +36541,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: &244 + default: &245 value: - url: https://api.github.com/orgs/github type: Organization @@ -36426,15 +36617,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: - - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *240 + default: *241 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -36466,9 +36657,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: *241 + default: *242 headers: Link: *45 '401': *23 @@ -36491,8 +36682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *242 - *243 + - *244 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -36512,9 +36703,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: *244 + default: *245 headers: Link: *45 '401': *23 @@ -36779,14 +36970,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: - - &474 + - &475 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &475 + - &476 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -36803,7 +36994,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -36848,7 +37039,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &480 + '301': &481 description: Moved permanently content: application/json: @@ -36870,7 +37061,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &708 + - &709 name: all description: If `true`, show notifications marked as read. in: query @@ -36878,7 +37069,7 @@ paths: schema: type: boolean default: false - - &709 + - &710 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -36887,8 +37078,8 @@ paths: schema: type: boolean default: false - - *226 - - &710 + - *227 + - &711 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: @@ -36913,14 +37104,14 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Thread description: Thread type: object properties: id: type: string - repository: &280 + repository: &281 title: Minimal Repository description: Minimal Repository type: object @@ -37268,7 +37459,7 @@ paths: type: boolean examples: - false - security_and_analysis: &431 + security_and_analysis: &432 type: - object - 'null' @@ -37487,7 +37678,7 @@ paths: - url - subscription_url examples: - default: &711 + default: &712 value: - id: '1' repository: @@ -37653,7 +37844,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &247 + - &248 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 @@ -37667,7 +37858,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -37770,7 +37961,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *247 + - *248 responses: '205': description: Reset Content @@ -37793,7 +37984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *247 + - *248 responses: '204': description: No content @@ -37816,13 +38007,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: - - *247 + - *248 responses: '200': description: Response content: application/json: - schema: &248 + schema: &249 title: Thread Subscription description: Thread Subscription type: object @@ -37866,7 +38057,7 @@ paths: - url - subscribed examples: - default: &249 + default: &250 value: subscribed: true ignored: false @@ -37897,7 +38088,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *247 + - *248 requestBody: required: false content: @@ -37918,9 +38109,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 '304': *35 '403': *27 '401': *23 @@ -37943,7 +38134,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *247 + - *248 responses: '204': description: Response @@ -38040,7 +38231,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: example: ; rel="next" @@ -38112,7 +38303,7 @@ paths: description: Response content: application/json: - schema: &251 + schema: &252 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -38151,7 +38342,7 @@ paths: required: true content: application/json: - schema: *251 + schema: *252 examples: selected_actions: *42 responses: @@ -38186,7 +38377,7 @@ paths: description: Response content: application/json: - schema: &252 + schema: &253 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -38225,7 +38416,7 @@ paths: required: true content: application/json: - schema: *252 + schema: *253 examples: selected_actions: *44 responses: @@ -38268,7 +38459,7 @@ paths: type: array items: *155 examples: - default: &717 + default: &718 value: - property_name: environment value: production @@ -38318,7 +38509,7 @@ paths: required: - properties examples: - default: &718 + default: &719 value: properties: - property_name: environment @@ -38365,7 +38556,7 @@ paths: description: Response content: application/json: - schema: &253 + schema: &254 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -38769,7 +38960,7 @@ paths: - updated_at - archived_at examples: - default-response: &254 + default-response: &255 value: login: github id: 1 @@ -39090,17 +39281,17 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: - default: *254 + default: *255 '422': description: Validation failed content: application/json: schema: oneOf: - - *255 - *256 + - *257 '409': *119 x-github: githubCloudOnly: false @@ -39156,9 +39347,9 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: - default: *258 + default: *259 headers: Link: *45 x-github: @@ -39199,7 +39390,7 @@ paths: type: integer repository_cache_usages: type: array - items: &487 + items: &488 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -39277,7 +39468,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -39444,7 +39635,7 @@ paths: application/json: schema: *47 examples: - default: *260 + default: *261 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39536,7 +39727,7 @@ paths: application/json: schema: *50 examples: - default: *261 + default: *262 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39655,9 +39846,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39693,7 +39884,7 @@ paths: type: array items: *54 examples: - default: *264 + default: *265 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39937,7 +40128,7 @@ paths: required: true content: application/json: - schema: *265 + schema: *266 examples: default: *58 responses: @@ -40030,7 +40221,7 @@ paths: required: - include_claim_keys examples: - default: &266 + default: &267 value: include_claim_keys: - repo @@ -40075,13 +40266,13 @@ paths: format. type: boolean examples: - default: *266 + default: *267 responses: '201': description: Empty response content: application/json: - schema: &291 + schema: &292 title: Empty Object description: An object without any properties. type: object @@ -40120,7 +40311,7 @@ paths: schema: type: object properties: - enabled_repositories: &268 + enabled_repositories: &269 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -40134,7 +40325,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled_repositories @@ -40176,7 +40367,7 @@ paths: schema: type: object properties: - enabled_repositories: *268 + enabled_repositories: *269 allowed_actions: *60 sha_pinning_required: *61 required: @@ -40212,7 +40403,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: response: summary: Example response @@ -40243,7 +40434,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: application/json: value: @@ -40281,7 +40472,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -40338,7 +40529,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -40363,7 +40554,7 @@ paths: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -40415,7 +40606,7 @@ paths: type: array items: *78 examples: - default: &275 + default: &276 value: total_count: 1 repositories: @@ -40600,7 +40791,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - &274 + - &275 name: repository_id description: The unique identifier of the repository. in: path @@ -40629,7 +40820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -40825,7 +41016,7 @@ paths: type: array items: *78 examples: - default: *275 + default: *276 '403': *27 '404': *6 x-github: @@ -40894,7 +41085,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -40921,7 +41112,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -40955,7 +41146,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -40989,7 +41180,7 @@ paths: required: false content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -41036,7 +41227,7 @@ paths: type: number runner_groups: type: array - items: &278 + items: &279 type: object properties: id: @@ -41226,9 +41417,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: &279 + default: &280 value: id: 2 name: octo-runner-group @@ -41270,7 +41461,7 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: default: value: @@ -41363,9 +41554,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: *279 + default: *280 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -41429,7 +41620,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -41470,9 +41661,9 @@ paths: type: number repositories: type: array - items: *280 + items: *281 examples: - default: &332 + default: &333 value: total_count: 1 repositories: @@ -41771,7 +41962,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -41795,7 +41986,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -42013,9 +42204,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42080,7 +42271,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -42119,7 +42310,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42155,7 +42346,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42186,7 +42377,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42361,7 +42552,7 @@ paths: - *87 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -42390,7 +42581,7 @@ paths: parameters: - *87 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -42435,7 +42626,7 @@ paths: type: integer secrets: type: array - items: &289 + items: &290 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -42469,7 +42660,7 @@ paths: - updated_at - visibility examples: - default: &295 + default: &296 value: total_count: 3 secrets: @@ -42516,7 +42707,7 @@ paths: description: Response content: application/json: - schema: &296 + schema: &297 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -42551,7 +42742,7 @@ paths: - key_id - key examples: - default: &297 + default: &298 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42577,7 +42768,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *87 - - &290 + - &291 name: secret_name description: The name of the secret. in: path @@ -42589,9 +42780,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: &298 + default: &299 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42620,7 +42811,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -42677,7 +42868,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -42704,7 +42895,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -42731,7 +42922,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -42749,9 +42940,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: &294 + default: &295 value: total_count: 1 repositories: @@ -42844,7 +43035,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -42897,7 +43088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -42931,7 +43122,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -42964,7 +43155,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *87 - - &299 + - &300 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)." @@ -42988,7 +43179,7 @@ paths: type: integer variables: type: array - items: &292 + items: &293 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -43036,7 +43227,7 @@ paths: - updated_at - visibility examples: - default: &300 + default: &301 value: total_count: 3 variables: @@ -43126,7 +43317,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43152,7 +43343,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *87 - - &293 + - &294 name: name description: The name of the variable. in: path @@ -43164,9 +43355,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &301 + default: &302 value: name: USERNAME value: octocat @@ -43195,7 +43386,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -43258,7 +43449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -43285,7 +43476,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -43303,9 +43494,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -43332,7 +43523,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -43382,7 +43573,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -43417,7 +43608,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -43469,9 +43660,9 @@ paths: type: integer secrets: type: array - items: *289 + items: *290 examples: - default: *295 + default: *296 headers: Link: *45 x-github: @@ -43502,9 +43693,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43527,15 +43718,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43558,7 +43749,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43615,7 +43806,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43642,7 +43833,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -43669,7 +43860,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -43687,9 +43878,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43713,7 +43904,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43766,7 +43957,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43800,7 +43991,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43834,7 +44025,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *87 - - *299 + - *300 - *19 responses: '200': @@ -43851,9 +44042,9 @@ paths: type: integer variables: type: array - items: *292 + items: *293 examples: - default: *300 + default: *301 headers: Link: *45 x-github: @@ -43924,7 +44115,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43950,15 +44141,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '200': description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *301 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43980,7 +44171,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44043,7 +44234,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -44070,7 +44261,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -44088,9 +44279,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -44117,7 +44308,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44167,7 +44358,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44202,7 +44393,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44260,7 +44451,7 @@ paths: required: true content: application/json: - schema: *302 + schema: *303 examples: default: *85 parameters: @@ -44447,7 +44638,7 @@ paths: type: integer deployment_records: type: array - items: &303 + items: &304 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -44494,7 +44685,7 @@ paths: required: - total_count examples: - default: &304 + default: &305 value: total_count: 1 deployment_records: @@ -44676,11 +44867,11 @@ paths: type: integer deployment_records: type: array - items: *303 + items: *304 required: - total_count examples: - default: *304 + default: *305 '403': description: Forbidden content: @@ -44932,9 +45123,9 @@ paths: - 3 deployment_records: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45064,12 +45255,12 @@ paths: required: - subject_digests examples: - default: &857 + default: &858 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &858 + withPredicateType: &859 value: subject_digests: - sha256:abc123 @@ -45114,7 +45305,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &859 + default: &860 value: attestations_subject_digests: - sha256:abc: @@ -45447,7 +45638,7 @@ paths: initiator: type: string examples: - default: &520 + default: &521 value: attestations: - bundle: @@ -45573,7 +45764,7 @@ paths: required: false schema: type: string - - *305 + - *306 - *127 - *128 - *129 @@ -45585,9 +45776,9 @@ paths: application/json: schema: type: array - items: *306 + items: *307 examples: - default: *307 + default: *308 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45710,7 +45901,7 @@ paths: subcategory: bypass-requests parameters: - *87 - - &310 + - &311 name: repository_name description: The name of the repository to filter on. in: query @@ -45729,9 +45920,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -45755,7 +45946,7 @@ paths: subcategory: delegated-bypass parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 @@ -45769,9 +45960,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -45798,7 +45989,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &314 + schema: &315 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -45824,7 +46015,7 @@ paths: application/json: schema: type: array - items: &315 + items: &316 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -45855,7 +46046,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *313 + items: *314 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -45874,7 +46065,7 @@ paths: - string - 'null' format: date-time - state: *314 + state: *315 contact_link: description: The contact link of the campaign. type: @@ -46097,9 +46288,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: &316 + default: &317 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -46182,9 +46373,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '404': *6 '422': description: Unprocessable Entity @@ -46262,7 +46453,7 @@ paths: - string - 'null' format: uri - state: *314 + state: *315 examples: default: value: @@ -46272,9 +46463,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '400': description: Bad Request content: @@ -46341,8 +46532,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *87 - - *317 - *318 + - *319 - *108 - *109 - *19 @@ -46353,7 +46544,7 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: sort description: The property by which to sort the results. in: query @@ -46369,7 +46560,7 @@ paths: be returned. in: query required: false - schema: &545 + schema: &546 type: string description: Severity of a code scanning alert. enum: @@ -46395,9 +46586,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 headers: Link: *45 '404': *6 @@ -46772,7 +46963,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46800,9 +46991,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '304': *35 '403': *27 '404': *6 @@ -46891,7 +47082,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 '304': *35 '403': *27 '404': *6 @@ -47336,7 +47527,7 @@ paths: default: value: default_for_new_repos: all - configuration: *322 + configuration: *323 '403': *27 '404': *6 x-github: @@ -47389,13 +47580,13 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *326 + repository: *327 '403': *27 '404': *6 x-github: @@ -47435,7 +47626,7 @@ paths: type: integer codespaces: type: array - items: &391 + items: &392 type: object title: Codespace description: A codespace. @@ -47466,11 +47657,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *280 + repository: *281 machine: anyOf: - type: 'null' - - &577 + - &578 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -47757,7 +47948,7 @@ paths: - pulls_url - recent_folders examples: - default: &392 + default: &393 value: total_count: 3 codespaces: @@ -48381,7 +48572,7 @@ paths: type: integer secrets: type: array - items: &327 + items: &328 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -48422,7 +48613,7 @@ paths: - updated_at - visibility examples: - default: &578 + default: &579 value: total_count: 2 secrets: @@ -48460,7 +48651,7 @@ paths: description: Response content: application/json: - schema: &579 + schema: &580 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -48495,7 +48686,7 @@ paths: - key_id - key examples: - default: &580 + default: &581 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -48519,15 +48710,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &582 + default: &583 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48555,7 +48746,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -48610,7 +48801,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -48637,7 +48828,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -48663,7 +48854,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -48681,9 +48872,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '404': *6 x-github: githubCloudOnly: false @@ -48706,7 +48897,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -48757,7 +48948,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -48791,7 +48982,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -48861,7 +49052,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &328 + items: &329 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -49258,9 +49449,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &329 + default: &330 summary: Example response for an organization copilot space value: id: 84 @@ -49365,9 +49556,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 x-github: @@ -49496,9 +49687,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 '422': *15 @@ -49581,7 +49772,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &330 + items: &331 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -49806,7 +49997,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -49936,7 +50127,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -50087,7 +50278,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &331 + items: &332 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -50231,7 +50422,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50247,7 +50438,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50302,7 +50493,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -50371,7 +50562,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51099,12 +51290,12 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 required: - total_count - repositories examples: - default: *332 + default: *333 '500': *38 '401': *23 '403': *27 @@ -51190,7 +51381,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -51224,7 +51415,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -51372,7 +51563,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': *333 + '413': *334 '422': *7 x-github: githubCloudOnly: @@ -51828,7 +52019,7 @@ paths: - 3 custom_roles: type: array - items: &334 + items: &335 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -51967,7 +52158,7 @@ paths: required: true content: application/json: - schema: &336 + schema: &337 type: object properties: name: @@ -52009,9 +52200,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: &335 + default: &336 value: id: 8030 name: Security Engineer @@ -52065,9 +52256,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52095,7 +52286,7 @@ paths: required: true content: application/json: - schema: &337 + schema: &338 type: object properties: name: @@ -52134,9 +52325,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52194,7 +52385,7 @@ paths: required: true content: application/json: - schema: *336 + schema: *337 examples: default: value: @@ -52208,9 +52399,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52247,9 +52438,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52283,7 +52474,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *338 examples: default: value: @@ -52298,9 +52489,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52360,12 +52551,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *87 - - *338 - *339 - *340 - *341 - *342 - *343 + - *344 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -52395,7 +52586,7 @@ paths: enum: - patch - deployment - - *344 + - *345 - name: runtime_risk in: query description: |- @@ -52404,8 +52595,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *345 - *346 + - *347 - *110 - *108 - *109 @@ -52417,9 +52608,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *348 + default: *349 '304': *35 '400': *14 '403': *27 @@ -52468,9 +52659,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *350 examples: - default: *350 + default: *351 '403': *27 '404': *6 x-github: @@ -52634,7 +52825,7 @@ paths: type: integer secrets: type: array - items: &351 + items: &352 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -52713,7 +52904,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -52732,7 +52923,7 @@ paths: - key_id - key examples: - default: &611 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -52756,13 +52947,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -52791,7 +52982,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -52846,7 +53037,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -52871,7 +53062,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -52896,7 +53087,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -52914,9 +53105,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52938,7 +53129,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -52989,7 +53180,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53021,7 +53212,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53058,7 +53249,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - &620 + - &621 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -53066,7 +53257,7 @@ paths: required: false schema: type: string - - &621 + - &622 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -53074,7 +53265,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: time_period description: |- The time period to filter by. @@ -53090,7 +53281,7 @@ paths: - week - month default: month - - &623 + - &624 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -53105,7 +53296,7 @@ paths: - denied - all default: all - - *310 + - *311 - *17 - *19 responses: @@ -53115,7 +53306,7 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -53225,7 +53416,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &353 + items: &354 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -53278,7 +53469,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &625 + default: &626 value: - id: 21 number: 42 @@ -53366,11 +53557,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -53380,7 +53571,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -53490,7 +53681,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *353 + items: *354 url: type: string format: uri @@ -53503,7 +53694,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &627 + default: &628 value: - id: 21 number: 42 @@ -53591,11 +53782,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -53605,9 +53796,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -53633,7 +53824,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Package description: A software package type: object @@ -53686,7 +53877,7 @@ paths: repository: anyOf: - type: 'null' - - *280 + - *281 created_at: type: string format: date-time @@ -53704,7 +53895,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &403 value: - id: 197 name: hello_docker @@ -53792,7 +53983,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -53891,7 +54082,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &472 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -53981,7 +54172,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &472 + default: &473 value: group_id: '123' group_name: Octocat admins @@ -54036,7 +54227,7 @@ paths: description: Response content: application/json: - schema: &468 + schema: &469 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -54076,7 +54267,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &469 + default: &470 value: groups: - group_id: '123' @@ -54121,7 +54312,7 @@ paths: application/json: schema: type: array - items: &380 + items: &381 title: Organization Invitation description: Organization Invitation type: object @@ -54175,7 +54366,7 @@ paths: - invitation_teams_url - node_id examples: - default: &381 + default: &382 value: - id: 1 login: monalisa @@ -54242,7 +54433,7 @@ paths: application/json: schema: type: array - items: &432 + items: &433 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -54256,7 +54447,7 @@ paths: - name - description examples: - default: &433 + default: &434 value: - name: add_assignee description: Assign or remove a user @@ -54297,7 +54488,7 @@ paths: application/json: schema: type: array - items: &356 + items: &357 title: Org Hook description: Org Hook type: object @@ -54480,9 +54671,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: &357 + default: &358 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -54527,7 +54718,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *87 - - &358 + - &359 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. @@ -54540,9 +54731,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *357 + default: *358 '404': *6 x-github: githubCloudOnly: false @@ -54564,7 +54755,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -54610,7 +54801,7 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: default: value: @@ -54650,7 +54841,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -54676,7 +54867,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 responses: '200': description: Response @@ -54705,7 +54896,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -54754,10 +54945,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *87 - - *358 - - *17 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -54765,9 +54956,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -54791,16 +54982,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -54824,7 +55015,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '202': *37 @@ -54851,7 +55042,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -54874,7 +55065,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *87 - - &369 + - &370 name: actor_type in: path description: The type of the actor @@ -54887,14 +55078,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &370 + - &371 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &365 + - &366 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`.' @@ -54902,7 +55093,7 @@ paths: required: true schema: type: string - - &366 + - &367 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) @@ -54997,12 +55188,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *87 - - *365 - *366 + - *367 - *19 - *17 - *110 - - &375 + - &376 name: sort description: The property to sort the results by. in: query @@ -55081,14 +55272,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *87 - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: &367 + schema: &368 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -55104,7 +55295,7 @@ paths: type: integer format: int64 examples: - default: &368 + default: &369 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -55125,23 +55316,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *87 - - &371 + - &372 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55160,18 +55351,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *87 - - *365 - *366 - - *369 + - *367 - *370 + - *371 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55189,9 +55380,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *87 - - *365 - *366 - - &372 + - *367 + - &373 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -55204,7 +55395,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &374 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -55220,7 +55411,7 @@ paths: type: integer format: int64 examples: - default: &374 + default: &375 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -55257,18 +55448,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *87 - - *371 - - *365 - - *366 - *372 + - *366 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -55286,19 +55477,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *87 - - *369 - *370 - - *365 + - *371 - *366 - - *372 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -55316,13 +55507,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *87 - - *371 - - *365 + - *372 - *366 + - *367 - *19 - *17 - *110 - - *375 + - *376 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -55406,7 +55597,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55526,12 +55717,12 @@ paths: application/json: schema: anyOf: - - &378 + - &379 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &377 + limit: &378 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -55559,7 +55750,7 @@ paths: properties: {} additionalProperties: false examples: - default: &379 + default: &380 value: limit: collaborators_only origin: organization @@ -55588,13 +55779,13 @@ paths: required: true content: application/json: - schema: &656 + schema: &657 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *377 + limit: *378 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -55619,9 +55810,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *379 + default: *380 '422': *15 x-github: githubCloudOnly: false @@ -55699,9 +55890,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 '404': *6 @@ -55779,7 +55970,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *381 examples: default: value: @@ -55836,7 +56027,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *87 - - &382 + - &383 name: invitation_id description: The unique identifier of the invitation. in: path @@ -55870,7 +56061,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *87 - - *382 + - *383 - *17 - *19 responses: @@ -55880,9 +56071,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: &400 + default: &401 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -55925,7 +56116,7 @@ paths: application/json: schema: type: array - items: &383 + items: &384 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -56188,9 +56379,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: &384 + default: &385 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -56246,7 +56437,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *87 - - &385 + - &386 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -56356,9 +56547,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: *384 + default: *385 '404': *6 '422': *7 x-github: @@ -56383,7 +56574,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *87 - - *385 + - *386 responses: '204': *126 '404': *6 @@ -56413,9 +56604,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: &660 + default: &661 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -56501,9 +56692,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -56536,7 +56727,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *87 - - &388 + - &389 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -56592,9 +56783,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 '422': *7 x-github: @@ -56619,7 +56810,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *87 - - *388 + - *389 responses: '204': description: Response @@ -56682,7 +56873,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: type description: Can be the name of an issue type. in: query @@ -56701,7 +56892,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -56711,9 +56902,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -56873,9 +57064,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -56902,7 +57093,7 @@ paths: parameters: - *87 - *143 - - &393 + - &394 name: codespace_name in: path required: true @@ -56937,15 +57128,15 @@ paths: parameters: - *87 - *143 - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: &576 + default: &577 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -57201,7 +57392,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &395 title: Org Membership description: Org Membership type: object @@ -57270,7 +57461,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &395 + response-if-user-has-an-active-admin-membership-with-organization: &396 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -57371,9 +57562,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: - response-if-user-already-had-membership-with-organization: *395 + response-if-user-already-had-membership-with-organization: *396 '422': *15 '403': *27 '451': *15 @@ -57446,7 +57637,7 @@ paths: application/json: schema: type: array - items: &396 + items: &397 title: Migration description: A migration. type: object @@ -57784,7 +57975,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -57963,7 +58154,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *87 - - &397 + - &398 name: migration_id description: The unique identifier of the migration. in: path @@ -57991,7 +58182,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -58161,7 +58352,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '302': description: Response @@ -58183,7 +58374,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '204': description: Response @@ -58207,8 +58398,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *87 - - *397 - - &839 + - *398 + - &840 name: repo_name description: repo_name parameter in: path @@ -58236,7 +58427,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *87 - - *397 + - *398 - *17 - *19 responses: @@ -58346,7 +58537,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &398 + items: &399 title: Organization Role description: Organization roles type: object @@ -58555,7 +58746,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -58785,7 +58976,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -58882,7 +59073,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59041,7 +59232,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 type: description: The ownership type of the team type: string @@ -59074,7 +59265,7 @@ paths: - type - parent examples: - default: *400 + default: *401 headers: Link: *45 '404': @@ -59133,7 +59324,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *399 + items: *400 name: type: - string @@ -59443,7 +59634,7 @@ paths: - nuget - container - *87 - - &840 + - &841 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -59479,12 +59670,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 '403': *27 '401': *23 - '400': &842 + '400': &843 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -59506,7 +59697,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &403 + - &404 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 @@ -59524,7 +59715,7 @@ paths: - docker - nuget - container - - &404 + - &405 name: package_name description: The name of the package. in: path @@ -59537,7 +59728,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -59589,8 +59780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 responses: '204': @@ -59623,8 +59814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - name: token description: package token @@ -59657,8 +59848,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: - - *403 - *404 + - *405 - *87 - *19 - *17 @@ -59679,7 +59870,7 @@ paths: application/json: schema: type: array - items: &405 + items: &406 title: Package Version description: A version of a software package type: object @@ -59814,10 +60005,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: - - *403 - *404 + - *405 - *87 - - &406 + - &407 name: package_version_id description: Unique identifier of the package version. in: path @@ -59829,7 +60020,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -59865,10 +60056,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -59900,10 +60091,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -59933,7 +60124,7 @@ paths: - *87 - *17 - *19 - - &407 + - &408 name: sort description: The property by which to sort the results. in: query @@ -59944,7 +60135,7 @@ paths: - created_at default: created_at - *110 - - &408 + - &409 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -59956,7 +60147,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &409 + - &410 name: repository description: The name of the repository to use to filter the results. in: query @@ -59965,7 +60156,7 @@ paths: type: string examples: - Hello-World - - &410 + - &411 name: permission description: The permission to use to filter the results. in: query @@ -59974,7 +60165,7 @@ paths: type: string examples: - issues_read - - &411 + - &412 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) @@ -59984,7 +60175,7 @@ paths: schema: type: string format: date-time - - &412 + - &413 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) @@ -59994,7 +60185,7 @@ paths: schema: type: string format: date-time - - &413 + - &414 name: token_id description: The ID of the token in: query @@ -60311,9 +60502,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: &414 + default: &415 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -60450,14 +60641,14 @@ paths: - *87 - *17 - *19 - - *407 - - *110 - *408 + - *110 - *409 - *410 - *411 - *412 - *413 + - *414 responses: '500': *38 '422': *15 @@ -60739,9 +60930,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 x-github: @@ -60783,7 +60974,7 @@ paths: type: integer configurations: type: array - items: &415 + items: &416 title: Organization private registry description: Private registry configuration for an organization type: object @@ -61300,7 +61491,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &416 + org-private-registry-with-selected-visibility: &417 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -61392,15 +61583,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *415 + schema: *416 examples: - default: *416 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -61423,7 +61614,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -61612,7 +61803,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -61652,7 +61843,7 @@ paths: application/json: schema: type: array - items: &417 + items: &418 title: Projects v2 Project description: A projects v2 project type: object @@ -61726,7 +61917,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &930 + - &931 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -61811,7 +62002,7 @@ paths: - deleted_at - deleted_by examples: - default: &418 + default: &419 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -61914,7 +62105,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &419 + - &420 name: project_number description: The project's number. in: path @@ -61927,9 +62118,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -61952,7 +62143,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -61986,7 +62177,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &425 title: Projects v2 Item description: An item belonging to a project type: object @@ -61999,8 +62190,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *221 - - &591 + - *222 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -62120,7 +62311,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -62159,7 +62350,7 @@ paths: items: *4 requested_teams: type: array - items: *313 + items: *314 head: type: object properties: @@ -62203,7 +62394,7 @@ paths: _links: type: object properties: - comments: &421 + comments: &422 title: Link description: Hypermedia Link type: object @@ -62212,13 +62403,13 @@ paths: type: string required: - href - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -62228,8 +62419,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: &720 + author_association: *219 + auto_merge: &721 title: Auto merge description: The status of auto merging a pull request. type: @@ -62329,7 +62520,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &423 + content_type: &424 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -62373,7 +62564,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &425 + draft_issue: &426 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -62447,7 +62638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *419 + - *420 - *87 - *17 - *108 @@ -62459,7 +62650,7 @@ paths: application/json: schema: type: array - items: &422 + items: &423 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -62612,7 +62803,7 @@ paths: - updated_at - project_url examples: - default: &863 + default: &864 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62742,7 +62933,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *419 + - *420 - *87 requestBody: required: true @@ -62789,7 +62980,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &864 + items: &865 type: object properties: name: @@ -62826,7 +63017,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &865 + iteration_configuration: &866 type: object description: The configuration for iteration fields. properties: @@ -62876,7 +63067,7 @@ paths: value: name: Due date data_type: date - single_select_field: &866 + single_select_field: &867 summary: Create a single select field value: name: Priority @@ -62903,7 +63094,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &867 + iteration_field: &868 summary: Create an iteration field value: name: Sprint @@ -62927,9 +63118,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *422 + schema: *423 examples: - text_field: &868 + text_field: &869 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -62938,7 +63129,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &869 + number_field: &870 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -62947,7 +63138,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &870 + date_field: &871 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -62956,7 +63147,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &871 + single_select_field: &872 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62990,7 +63181,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &872 + iteration_field: &873 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -63035,8 +63226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *419 - - &873 + - *420 + - &874 name: field_id description: The unique identifier of the field. in: path @@ -63049,9 +63240,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: &874 + default: &875 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63107,7 +63298,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: - - *419 + - *420 - *87 - 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) @@ -63140,7 +63331,7 @@ paths: application/json: schema: type: array - items: &426 + items: &427 title: Projects v2 Item description: An item belonging to a project type: object @@ -63157,7 +63348,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: *423 + content_type: *424 content: type: - object @@ -63207,7 +63398,7 @@ paths: - updated_at - archived_at examples: - default: &427 + default: &428 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -63905,7 +64096,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -63975,22 +64166,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -64010,9 +64201,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: - - *419 + - *420 - *87 - - &428 + - &429 name: item_id description: The unique identifier of the project item. in: path @@ -64038,9 +64229,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -64061,9 +64252,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -64136,13 +64327,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -64162,9 +64353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 responses: '204': description: Response @@ -64188,7 +64379,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true content: @@ -64262,7 +64453,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &854 + schema: &855 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -64366,7 +64557,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &429 + value: &430 value: id: 1 number: 1 @@ -64412,10 +64603,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -64443,9 +64634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *419 + - *420 - *87 - - &875 + - &876 name: view_number description: The number that identifies the project view. in: path @@ -64477,9 +64668,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -64643,7 +64834,7 @@ paths: required: true content: application/json: - schema: *430 + schema: *431 examples: default: value: @@ -65009,9 +65200,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 x-github: @@ -65215,7 +65406,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &480 title: Full Repository description: Full Repository type: object @@ -65666,7 +65857,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -65685,7 +65876,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &596 + code_of_conduct: &597 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -65715,7 +65906,7 @@ paths: - key - name - html_url - security_and_analysis: *431 + security_and_analysis: *432 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -65799,7 +65990,7 @@ paths: - network_count - subscribers_count examples: - default: &481 + default: &482 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -66325,9 +66516,9 @@ paths: application/json: schema: type: array - items: *432 + items: *433 examples: - default: *433 + default: *434 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -66352,7 +66543,7 @@ paths: - *87 - *17 - *19 - - &743 + - &744 name: targets description: | A comma-separated list of rule targets to filter by. @@ -66444,11 +66635,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: type: array description: An array of rules within the ruleset. - items: &436 + items: &437 title: Repository Rule type: object description: A repository rule. @@ -66513,7 +66704,7 @@ paths: application/json: schema: *190 examples: - default: &435 + default: &436 value: id: 21 name: super cool ruleset @@ -66569,7 +66760,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *87 - - &745 + - &746 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 @@ -66579,16 +66770,16 @@ paths: schema: type: string x-multi-segment: true - - *310 + - *311 - *105 - - &746 + - &747 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 - - &747 + - &748 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -66601,7 +66792,7 @@ paths: - bypass - all default: all - - &748 + - &749 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -66624,7 +66815,7 @@ paths: description: Response content: application/json: - schema: &749 + schema: &750 title: Rule Suites description: Response type: array @@ -66680,7 +66871,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &750 + default: &751 value: - id: 21 actor_id: 12 @@ -66724,7 +66915,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &751 + - &752 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -66740,7 +66931,7 @@ paths: description: Response content: application/json: - schema: &752 + schema: &753 title: Rule Suite description: Response type: object @@ -66847,7 +67038,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &753 + default: &754 value: id: 21 actor_id: 12 @@ -66922,7 +67113,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '500': *38 put: @@ -66971,11 +67162,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: description: An array of rules within the ruleset. type: array - items: *436 + items: *437 examples: default: value: @@ -67012,7 +67203,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '422': *15 '500': *38 @@ -67072,7 +67263,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -67109,7 +67300,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -67172,7 +67363,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *87 - - *439 - *440 - *441 - *442 @@ -67180,10 +67370,11 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - &755 + - &756 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 @@ -67193,7 +67384,7 @@ paths: required: false schema: type: string - - &756 + - &757 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 @@ -67203,13 +67394,13 @@ paths: required: false schema: type: string - - *447 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -67217,9 +67408,9 @@ paths: application/json: schema: type: array - items: *454 + items: *455 examples: - default: *455 + default: *456 headers: Link: *45 '404': *6 @@ -67254,9 +67445,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: - default: *457 + default: *458 '403': *27 '404': *6 patch: @@ -67409,7 +67600,7 @@ paths: application/json: schema: type: array - items: &777 + items: &778 description: A repository security advisory. type: object properties: @@ -67632,7 +67823,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 credits_detailed: type: - array @@ -67643,7 +67834,7 @@ paths: type: object properties: user: *4 - type: *458 + type: *459 state: type: string description: The state of the user's acceptance of the @@ -67669,7 +67860,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *313 + items: *314 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -67706,7 +67897,7 @@ paths: - private_fork additionalProperties: false examples: - default: &778 + default: &779 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -68093,7 +68284,7 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: default: value: @@ -68192,7 +68383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *87 - - *459 + - *460 - *17 - *19 responses: @@ -68200,9 +68391,9 @@ paths: description: Success content: application/json: - schema: *460 + schema: *461 examples: - default: *461 + default: *462 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -68348,9 +68539,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68419,7 +68610,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -68442,7 +68633,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -68485,7 +68676,7 @@ paths: type: array items: *148 examples: - default: *462 + default: *463 headers: Link: *45 x-github: @@ -68714,15 +68905,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: - *87 - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *465 + default: *466 headers: Link: *45 x-github: @@ -68760,7 +68951,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -68812,7 +69003,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &477 + default: &478 value: groups: - group_id: '123' @@ -68867,9 +69058,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '403': *27 @@ -68955,7 +69146,7 @@ paths: description: Response content: application/json: - schema: &466 + schema: &467 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -69029,7 +69220,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 members_count: type: integer examples: @@ -69354,7 +69545,7 @@ paths: - repos_count - organization examples: - default: &467 + default: &468 value: id: 1 node_id: MDQ6VGVhbTE= @@ -69431,9 +69622,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -69518,16 +69709,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -69557,7 +69748,7 @@ paths: responses: '204': description: Response - '422': &470 + '422': &471 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -69586,10 +69777,10 @@ paths: description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 - '422': *470 + default: *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -69633,10 +69824,10 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 - '422': *470 + default: *473 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69660,7 +69851,7 @@ paths: responses: '204': description: Response - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69692,12 +69883,12 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 - '422': *470 + '422': *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69741,7 +69932,7 @@ paths: application/json: schema: type: array - items: &819 + items: &820 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -69884,7 +70075,7 @@ paths: - type - url examples: - default: &820 + default: &821 value: - login: octocat id: 1 @@ -69943,7 +70134,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &474 title: Team Membership description: Team Membership type: object @@ -69971,7 +70162,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &821 + response-if-user-is-a-team-maintainer: &822 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -70034,9 +70225,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: &822 + response-if-users-membership-with-team-is-now-pending: &823 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -70110,9 +70301,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 x-github: @@ -70143,14 +70334,14 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &823 + schema: &824 title: Team Repository description: A team's access to a repository. type: object @@ -70176,7 +70367,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 forks: type: integer permissions: @@ -70785,8 +70976,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 requestBody: required: false content: @@ -70833,8 +71024,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '204': description: Response @@ -70867,10 +71058,10 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 - '422': *470 + default: *478 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70936,7 +71127,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -70948,7 +71139,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70980,9 +71171,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: &824 + response-if-child-teams-exist: &825 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -71135,7 +71326,7 @@ paths: resources: type: object properties: - core: &478 + core: &479 title: Rate Limit type: object properties: @@ -71152,17 +71343,17 @@ paths: - remaining - reset - used - graphql: *478 - search: *478 - code_search: *478 - source_import: *478 - integration_manifest: *478 - actions_runner_registration: *478 - scim: *478 - dependency_snapshots: *478 - dependency_sbom: *478 - code_scanning_autofix: *478 - copilot_usage_records: *478 + graphql: *479 + search: *479 + code_search: *479 + source_import: *479 + integration_manifest: *479 + actions_runner_registration: *479 + scim: *479 + dependency_snapshots: *479 + dependency_sbom: *479 + code_scanning_autofix: *479 + copilot_usage_records: *479 required: - core - search @@ -71259,14 +71450,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *479 + schema: *480 examples: default-response: summary: Default response @@ -71774,7 +71965,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71792,8 +71983,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -72114,10 +72305,10 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 - '307': &482 + default: *482 + '307': &483 description: Temporary Redirect content: application/json: @@ -72146,8 +72337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -72169,7 +72360,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *482 + '307': *483 '404': *6 '409': *119 x-github: @@ -72193,11 +72384,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 - - &498 + - &499 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -72220,7 +72411,7 @@ paths: type: integer artifacts: type: array - items: &483 + items: &484 title: Artifact description: An artifact type: object @@ -72315,7 +72506,7 @@ paths: - expires_at - updated_at examples: - default: &499 + default: &500 value: total_count: 2 artifacts: @@ -72376,9 +72567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *474 - *475 - - &484 + - *476 + - &485 name: artifact_id description: The unique identifier of the artifact. in: path @@ -72390,7 +72581,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -72428,9 +72619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 responses: '204': description: Response @@ -72454,9 +72645,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 - name: archive_format in: path required: true @@ -72466,11 +72657,11 @@ paths: '302': description: Response headers: - Location: &613 + Location: &614 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': &661 + '410': &662 description: Gone content: application/json: @@ -72495,14 +72686,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &485 + schema: &486 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -72536,13 +72727,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *485 + schema: *486 examples: selected_actions: *42 responses: @@ -72571,14 +72762,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &486 + schema: &487 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -72612,13 +72803,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *486 + schema: *487 examples: selected_actions: *44 responses: @@ -72649,14 +72840,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *487 + schema: *488 examples: default: value: @@ -72682,11 +72873,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: - - *474 - *475 + - *476 - *17 - *19 - - &488 + - &489 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 @@ -72720,7 +72911,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: Repository actions caches description: Repository actions caches type: object @@ -72770,7 +72961,7 @@ paths: - total_count - actions_caches examples: - default: &490 + default: &491 value: total_count: 1 actions_caches: @@ -72802,23 +72993,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: - - *474 - *475 + - *476 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *488 + - *489 responses: '200': description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 + default: *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72838,8 +73029,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: - - *474 - *475 + - *476 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -72868,8 +73059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *109 responses: @@ -72952,8 +73143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *474 - *475 + - *476 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -73109,9 +73300,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: - - *474 - *475 - - &491 + - *476 + - &492 name: job_id description: The unique identifier of the job. in: path @@ -73123,7 +73314,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Job description: Information of a job execution in a workflow run type: object @@ -73470,9 +73661,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: - - *474 - *475 - - *491 + - *476 + - *492 responses: '302': description: Response @@ -73500,9 +73691,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: - - *474 - *475 - - *491 + - *476 + - *492 requestBody: required: false content: @@ -73529,7 +73720,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -73553,8 +73744,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: - - *474 - *475 + - *476 responses: '200': description: Status response @@ -73613,8 +73804,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -73653,7 +73844,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -73682,8 +73873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -73701,7 +73892,7 @@ paths: type: integer secrets: type: array - items: &504 + items: &505 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -73722,7 +73913,7 @@ paths: - created_at - updated_at examples: - default: &505 + default: &506 value: total_count: 2 secrets: @@ -73755,9 +73946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -73774,7 +73965,7 @@ paths: type: integer variables: type: array - items: &506 + items: &507 title: Actions Variable type: object properties: @@ -73808,7 +73999,7 @@ paths: - created_at - updated_at examples: - default: &507 + default: &508 value: total_count: 2 variables: @@ -73841,8 +74032,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -73851,11 +74042,11 @@ paths: schema: type: object properties: - enabled: &492 + enabled: &493 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled @@ -73886,8 +74077,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -73898,7 +74089,7 @@ paths: schema: type: object properties: - enabled: *492 + enabled: *493 allowed_actions: *60 sha_pinning_required: *61 required: @@ -73931,14 +74122,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &493 + schema: &494 type: object properties: access_level: @@ -73956,7 +74147,7 @@ paths: required: - access_level examples: - default: &494 + default: &495 value: access_level: organization x-github: @@ -73981,15 +74172,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 responses: '204': description: Response @@ -74013,14 +74204,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -74044,8 +74235,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: - - *474 - *475 + - *476 responses: '204': description: Empty response for successful settings update @@ -74055,7 +74246,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: default: summary: Set retention days @@ -74079,8 +74270,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74088,7 +74279,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -74107,8 +74298,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74142,14 +74333,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -74171,13 +74362,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -74203,8 +74394,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74235,8 +74426,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74268,14 +74459,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -74298,8 +74489,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: - - *474 - *475 + - *476 responses: '204': description: Success response @@ -74310,7 +74501,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -74339,8 +74530,8 @@ paths: in: query schema: type: string - - *474 - *475 + - *476 - *17 - *19 responses: @@ -74384,8 +74575,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74393,9 +74584,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74417,8 +74608,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -74461,7 +74652,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -74492,8 +74683,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -74501,7 +74692,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74529,8 +74720,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -74538,7 +74729,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74560,8 +74751,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: - - *474 - *475 + - *476 - *75 responses: '200': @@ -74570,7 +74761,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74591,8 +74782,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: - - *474 - *475 + - *476 - *75 responses: '204': @@ -74619,8 +74810,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: - - *474 - *475 + - *476 - *75 responses: '200': *81 @@ -74645,8 +74836,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -74695,8 +74886,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -74746,11 +74937,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: - - *474 - *475 + - *476 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -74777,10 +74968,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: - - *474 - *475 + - *476 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -74808,9 +74999,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: - - *474 - *475 - - &510 + - *476 + - &511 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. @@ -74818,7 +75009,7 @@ paths: required: false schema: type: string - - &511 + - &512 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -74826,7 +75017,7 @@ paths: required: false schema: type: string - - &512 + - &513 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -74835,7 +75026,7 @@ paths: required: false schema: type: string - - &513 + - &514 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 @@ -74862,7 +75053,7 @@ paths: - pending - *17 - *19 - - &514 + - &515 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)." @@ -74871,7 +75062,7 @@ paths: schema: type: string format: date-time - - &495 + - &496 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -74880,13 +75071,13 @@ paths: schema: type: boolean default: false - - &515 + - &516 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &516 + - &517 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -74909,7 +75100,7 @@ paths: type: integer workflow_runs: type: array - items: &496 + items: &497 title: Workflow Run description: An invocation of a workflow type: object @@ -75026,7 +75217,7 @@ paths: type: - array - 'null' - items: *224 + items: *225 created_at: type: string format: date-time @@ -75087,7 +75278,7 @@ paths: head_commit: anyOf: - type: 'null' - - &540 + - &541 title: Simple Commit description: A commit. type: object @@ -75161,8 +75352,8 @@ paths: - timestamp - author - committer - repository: *280 - head_repository: *280 + repository: *281 + head_repository: *281 head_repository_id: type: integer examples: @@ -75202,7 +75393,7 @@ paths: - workflow_url - pull_requests examples: - default: &517 + default: &518 value: total_count: 1 workflow_runs: @@ -75438,24 +75629,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *474 - *475 - - &497 + - *476 + - &498 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &500 + default: &501 value: id: 30433642 name: Build @@ -75696,9 +75887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -75721,9 +75912,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -75851,15 +76042,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -75886,12 +76077,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *19 - - *498 + - *499 - *110 responses: '200': @@ -75908,9 +76099,9 @@ paths: type: integer artifacts: type: array - items: *483 + items: *484 examples: - default: *499 + default: *500 headers: Link: *45 x-github: @@ -75934,25 +76125,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *474 - *475 - - *497 - - &501 + - *476 + - *498 + - &502 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *500 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75975,10 +76166,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: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 - *17 - *19 responses: @@ -75996,9 +76187,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: &503 + default: &504 value: total_count: 1 jobs: @@ -76111,10 +76302,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 responses: '302': description: Response @@ -76142,15 +76333,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76190,9 +76381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *108 - *109 @@ -76369,9 +76560,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -76438,15 +76629,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76473,9 +76664,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: - - *474 - *475 - - *497 + - *476 + - *498 - 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 @@ -76505,9 +76696,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: *503 + default: *504 headers: Link: *45 x-github: @@ -76532,9 +76723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '302': description: Response @@ -76561,9 +76752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -76590,9 +76781,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -76661,7 +76852,7 @@ paths: items: type: object properties: - type: &628 + type: &629 type: string description: The type of reviewer. enum: @@ -76672,7 +76863,7 @@ paths: reviewer: anyOf: - *4 - - *313 + - *314 required: - environment - wait_timer @@ -76747,9 +76938,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -76799,7 +76990,7 @@ paths: application/json: schema: type: array - items: &615 + items: &616 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -76911,7 +77102,7 @@ paths: - created_at - updated_at examples: - default: &616 + default: &617 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -76967,9 +77158,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -76991,7 +77182,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77014,9 +77205,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -77038,7 +77229,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77071,9 +77262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -77210,8 +77401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -77229,9 +77420,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -77256,16 +77447,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77287,17 +77478,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: &518 + default: &519 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -77323,9 +77514,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -77356,7 +77547,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77382,9 +77573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -77409,9 +77600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -77428,9 +77619,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -77453,8 +77644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -77481,7 +77672,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77506,17 +77697,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &519 + default: &520 value: name: USERNAME value: octocat @@ -77542,9 +77733,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -77586,9 +77777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -77613,8 +77804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -77632,7 +77823,7 @@ paths: type: integer workflows: type: array - items: &508 + items: &509 title: Workflow description: A GitHub Actions workflow type: object @@ -77750,9 +77941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *474 - *475 - - &509 + - *476 + - &510 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -77767,7 +77958,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default: value: @@ -77800,9 +77991,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -77827,9 +78018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '200': description: Response including the workflow run ID and URLs. @@ -77909,9 +78100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -77938,19 +78129,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: - - *474 - *475 - - *509 + - *476 - *510 - *511 - *512 - *513 + - *514 - *17 - *19 - - *514 - - *495 - *515 + - *496 - *516 + - *517 responses: '200': description: Response @@ -77966,9 +78157,9 @@ paths: type: integer workflow_runs: type: array - items: *496 + items: *497 examples: - default: *517 + default: *518 headers: Link: *45 x-github: @@ -78001,9 +78192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '200': description: Response @@ -78064,8 +78255,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *474 - *475 + - *476 - *110 - *17 - *108 @@ -78238,8 +78429,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78257,9 +78448,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -78283,9 +78474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -78302,9 +78493,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -78329,8 +78520,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78348,9 +78539,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -78375,16 +78566,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78406,17 +78597,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78438,9 +78629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -78471,7 +78662,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78497,9 +78688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -78524,9 +78715,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -78543,9 +78734,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -78568,8 +78759,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -78596,7 +78787,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78621,17 +78812,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78652,9 +78843,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -78696,9 +78887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -78719,8 +78910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78757,8 +78948,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: - - *474 - *475 + - *476 - name: assignee in: path required: true @@ -78794,8 +78985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -78905,8 +79096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *474 - *475 + - *476 - *17 - *108 - *109 @@ -78947,7 +79138,7 @@ paths: initiator: type: string examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78967,8 +79158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -78976,7 +79167,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Autolink reference description: An autolink reference. type: object @@ -79035,8 +79226,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79075,9 +79266,9 @@ paths: description: response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: id: 1 key_prefix: TICKET- @@ -79108,9 +79299,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: - - *474 - *475 - - &523 + - *476 + - &524 name: autolink_id description: The unique identifier of the autolink. in: path @@ -79122,9 +79313,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '404': *6 x-github: githubCloudOnly: false @@ -79144,9 +79335,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: - - *474 - *475 - - *523 + - *476 + - *524 responses: '204': description: Response @@ -79170,8 +79361,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: - - *474 - *475 + - *476 responses: '200': description: Response if Dependabot is enabled @@ -79221,8 +79412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -79243,8 +79434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -79264,8 +79455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *474 - *475 + - *476 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -79303,7 +79494,7 @@ paths: - url protected: type: boolean - protection: &525 + protection: &526 title: Branch Protection description: Branch Protection type: object @@ -79346,7 +79537,7 @@ paths: required: - contexts - checks - enforce_admins: &528 + enforce_admins: &529 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -79363,7 +79554,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &530 + required_pull_request_reviews: &531 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -79385,7 +79576,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *313 + items: *314 apps: description: The list of apps with review dismissal access. @@ -79417,7 +79608,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *313 + items: *314 apps: description: The list of apps allowed to bypass pull request requirements. @@ -79447,7 +79638,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &527 + restrictions: &528 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -79510,7 +79701,7 @@ paths: type: string teams: type: array - items: *313 + items: *314 apps: type: array items: @@ -79740,9 +79931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *474 - *475 - - &526 + - *476 + - &527 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). @@ -79756,14 +79947,14 @@ paths: description: Response content: application/json: - schema: &536 + schema: &537 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &587 + commit: &588 title: Commit description: Commit type: object @@ -79802,7 +79993,7 @@ paths: author: anyOf: - type: 'null' - - &524 + - &525 title: Git User description: Metaproperties for Git author/committer information. @@ -79824,7 +80015,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 message: type: string examples: @@ -79848,7 +80039,7 @@ paths: required: - sha - url - verification: &646 + verification: &647 title: Verification type: object properties: @@ -79884,14 +80075,14 @@ paths: author: oneOf: - *4 - - *291 + - *292 type: - 'null' - object committer: oneOf: - *4 - - *291 + - *292 type: - 'null' - object @@ -79928,7 +80119,7 @@ paths: type: integer files: type: array - items: &598 + items: &599 title: Diff Entry description: Diff Entry type: object @@ -80024,7 +80215,7 @@ paths: - self protected: type: boolean - protection: *525 + protection: *526 protection_url: type: string format: uri @@ -80133,7 +80324,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *480 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -80155,15 +80346,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: default: value: @@ -80357,9 +80548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -80619,7 +80810,7 @@ paths: url: type: string format: uri - required_status_checks: &533 + required_status_checks: &534 title: Status Check Policy description: Status Check Policy type: object @@ -80700,7 +80891,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -80718,7 +80909,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -80778,7 +80969,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *527 + restrictions: *528 required_conversation_resolution: type: object properties: @@ -80890,9 +81081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -80917,17 +81108,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -80949,17 +81140,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80978,9 +81169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81005,17 +81196,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: &531 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -81111,9 +81302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81211,9 +81402,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '422': *15 x-github: githubCloudOnly: false @@ -81234,9 +81425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81263,17 +81454,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &532 + default: &533 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -81296,17 +81487,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *532 + default: *533 '404': *6 x-github: githubCloudOnly: false @@ -81326,9 +81517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81353,17 +81544,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &534 + default: &535 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -81389,9 +81580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81443,9 +81634,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '404': *6 '422': *15 x-github: @@ -81467,9 +81658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81493,9 +81684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -81529,9 +81720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81598,9 +81789,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -81664,9 +81855,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -81732,15 +81923,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: default: value: @@ -81831,9 +82022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -81856,9 +82047,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -81868,7 +82059,7 @@ paths: type: array items: *5 examples: - default: &535 + default: &536 value: - id: 1 slug: octoapp @@ -81925,9 +82116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -81961,7 +82152,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -81982,9 +82173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82018,7 +82209,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -82039,9 +82230,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82075,7 +82266,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -82097,9 +82288,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82107,9 +82298,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -82129,9 +82320,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82167,9 +82358,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82190,9 +82381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82228,9 +82419,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82251,9 +82442,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -82288,9 +82479,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -82312,9 +82503,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82348,9 +82539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82408,9 +82599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82468,9 +82659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82530,9 +82721,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -82554,7 +82745,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -82668,8 +82859,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -82683,9 +82874,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -82705,8 +82896,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -82720,7 +82911,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: default: value: @@ -82779,8 +82970,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -82794,9 +82985,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '403': *27 '500': *38 @@ -82820,8 +83011,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -82833,7 +83024,7 @@ paths: description: A single bypass request. content: application/json: - schema: *311 + schema: *312 examples: default: value: @@ -82891,8 +83082,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -82963,8 +83154,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_response_id in: path required: true @@ -82997,8 +83188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -83277,7 +83468,7 @@ paths: description: Response content: application/json: - schema: &537 + schema: &538 title: CheckRun description: A check performed on the code of a given code change type: object @@ -83412,8 +83603,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *224 - deployment: &886 + items: *225 + deployment: &887 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -83700,9 +83891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *474 - *475 - - &538 + - *476 + - &539 name: check_run_id description: The unique identifier of the check run. in: path @@ -83714,9 +83905,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: &539 + default: &540 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -83816,9 +84007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 requestBody: required: true content: @@ -84058,9 +84249,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84080,9 +84271,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *474 - *475 - - *538 + - *476 + - *539 - *17 - *19 responses: @@ -84192,15 +84383,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -84238,8 +84429,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -84261,7 +84452,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &541 + schema: &542 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -84343,12 +84534,12 @@ paths: type: - array - 'null' - items: *224 + items: *225 app: anyOf: - type: 'null' - *5 - repository: *280 + repository: *281 created_at: type: - string @@ -84359,7 +84550,7 @@ paths: - string - 'null' format: date-time - head_commit: *540 + head_commit: *541 latest_check_runs_count: type: integer check_runs_url: @@ -84387,7 +84578,7 @@ paths: - check_runs_url - pull_requests examples: - default: &542 + default: &543 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -84678,9 +84869,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84699,8 +84890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -84761,7 +84952,7 @@ paths: required: - app_id - setting - repository: *280 + repository: *281 examples: default: value: @@ -85009,9 +85200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *474 - *475 - - &543 + - *476 + - &544 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -85023,9 +85214,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85048,17 +85239,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: - - *474 - *475 - - *543 - - &593 + - *476 + - *544 + - &594 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &594 + - &595 name: status description: Returns check runs with the specified `status`. in: query @@ -85097,9 +85288,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: &595 + default: &596 value: total_count: 1 check_runs: @@ -85201,15 +85392,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *474 - *475 - - *543 + - *476 + - *544 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -85236,21 +85427,21 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - &559 + - &560 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: *544 - - &560 + schema: *545 + - &561 name: pr description: The number of the pull request for the results you want to list. in: query @@ -85275,13 +85466,13 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *545 + schema: *546 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -85305,7 +85496,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -85313,11 +85504,11 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 - rule: *549 - tool: *550 - most_recent_instance: *551 + dismissed_reason: *548 + dismissed_comment: *549 + rule: *550 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -85440,7 +85631,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &552 + '403': &553 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -85467,9 +85658,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: - - *474 - *475 - - &553 + - *476 + - &554 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -85483,7 +85674,7 @@ paths: description: Response content: application/json: - schema: &554 + schema: &555 type: object properties: number: *130 @@ -85491,7 +85682,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -85499,8 +85690,8 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 rule: type: object properties: @@ -85562,8 +85753,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *550 - most_recent_instance: *551 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -85659,7 +85850,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -85679,9 +85870,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -85696,8 +85887,8 @@ paths: enum: - open - dismissed - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -85725,7 +85916,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -85801,7 +85992,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &558 + '403': &559 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -85828,15 +86019,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 type: object properties: status: @@ -85863,13 +86054,13 @@ paths: - description - started_at examples: - default: &556 + default: &557 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &557 + '400': &558 description: Bad Request content: application/json: @@ -85880,7 +86071,7 @@ 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': *552 + '403': *553 '404': *6 '500': *38 x-github: @@ -85905,29 +86096,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: OK content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '202': description: Accepted content: application/json: - schema: *555 + schema: *556 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *557 + '400': *558 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -85959,9 +86150,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: false content: @@ -86007,8 +86198,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *557 - '403': *558 + '400': *558 + '403': *559 '404': *6 '422': description: Unprocessable Entity @@ -86032,13 +86223,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 - - *559 - *560 + - *561 responses: '200': description: Response @@ -86049,10 +86240,10 @@ paths: items: type: object properties: - ref: *544 - analysis_key: *561 - environment: *562 - category: *563 + ref: *545 + analysis_key: *562 + environment: *563 + category: *564 state: type: - string @@ -86069,7 +86260,7 @@ paths: properties: text: type: string - location: *564 + location: *565 html_url: type: string classifications: @@ -86077,7 +86268,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *565 + items: *566 examples: default: value: @@ -86114,7 +86305,7 @@ paths: end_column: 50 classifications: - source - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86148,25 +86339,25 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - *560 + - *561 - 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: *544 + schema: *545 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &566 + schema: &567 type: string description: An identifier for the upload. examples: @@ -86188,23 +86379,23 @@ paths: application/json: schema: type: array - items: &567 + items: &568 type: object properties: - ref: *544 - commit_sha: &575 + ref: *545 + commit_sha: &576 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *561 + analysis_key: *562 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *563 + category: *564 error: type: string examples: @@ -86229,8 +86420,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *566 - tool: *550 + sarif_id: *567 + tool: *551 deletable: type: boolean warning: @@ -86292,7 +86483,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86328,8 +86519,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -86342,7 +86533,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: response: summary: application/json response @@ -86396,7 +86587,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *552 + '403': *553 '404': *6 '422': description: Response if analysis could not be processed @@ -86483,8 +86674,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -86540,7 +86731,7 @@ 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': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -86562,8 +86753,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -86571,7 +86762,7 @@ paths: application/json: schema: type: array - items: &568 + items: &569 title: CodeQL Database description: A CodeQL database. type: object @@ -86683,7 +86874,7 @@ 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': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86712,8 +86903,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: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -86725,7 +86916,7 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: default: value: @@ -86757,9 +86948,9 @@ 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': &602 + '302': &603 description: Found - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86781,8 +86972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -86792,7 +86983,7 @@ paths: responses: '204': description: Response - '403': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -86820,8 +87011,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -86830,7 +87021,7 @@ paths: type: object additionalProperties: false properties: - language: &569 + language: &570 type: string description: The language targeted by the CodeQL query enum: @@ -86910,7 +87101,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &573 + schema: &574 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -86920,7 +87111,7 @@ paths: description: The ID of the variant analysis. controller_repo: *120 actor: *4 - query_language: *569 + query_language: *570 query_pack_url: type: string description: The download url for the query pack. @@ -86968,7 +87159,7 @@ paths: items: type: object properties: - repository: &570 + repository: &571 title: Repository Identifier description: Repository Identifier type: object @@ -87010,7 +87201,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &574 + analysis_status: &575 type: string description: The new status of the CodeQL variant analysis repository task. @@ -87042,7 +87233,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &571 + access_mismatch_repos: &572 type: object properties: repository_count: @@ -87057,7 +87248,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: *570 + items: *571 required: - repository_count - repositories @@ -87080,8 +87271,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *571 - over_limit_repos: *571 + no_codeql_db_repos: *572 + over_limit_repos: *572 required: - access_mismatch_repos - not_found_repos @@ -87097,7 +87288,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &572 + value: &573 summary: Default response value: id: 1 @@ -87243,10 +87434,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *572 + value: *573 repository_lists: summary: Response for a successful variant analysis submission - value: *572 + value: *573 '404': *6 '422': description: Unable to process variant analysis submission @@ -87274,8 +87465,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: - - *474 - *475 + - *476 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -87287,9 +87478,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *572 + default: *573 '404': *6 '503': *195 x-github: @@ -87312,7 +87503,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: - - *474 + - *475 - name: repo in: path description: The name of the controller repository. @@ -87347,7 +87538,7 @@ paths: type: object properties: repository: *120 - analysis_status: *574 + analysis_status: *575 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -87472,8 +87663,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -87564,7 +87755,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87585,8 +87776,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -87655,7 +87846,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -87680,7 +87871,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *558 + '403': *559 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -87751,8 +87942,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -87760,7 +87951,7 @@ paths: schema: type: object properties: - commit_sha: *575 + commit_sha: *576 ref: type: string description: |- @@ -87820,7 +88011,7 @@ paths: schema: type: object properties: - id: *566 + id: *567 url: type: string description: The REST API URL for checking the status of the upload. @@ -87834,7 +88025,7 @@ 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': *558 + '403': *559 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -87857,8 +88048,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: - - *474 - *475 + - *476 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -87906,7 +88097,7 @@ 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': *552 + '403': *553 '404': description: Not Found if the sarif id does not match any upload '503': *195 @@ -87931,8 +88122,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -88013,8 +88204,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *474 - *475 + - *476 - 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 @@ -88142,8 +88333,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -88159,7 +88350,7 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: default: value: @@ -88457,8 +88648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88522,17 +88713,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '400': *14 '401': *23 '403': *27 @@ -88561,8 +88752,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -88626,8 +88817,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: - - *474 - *475 + - *476 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -88664,9 +88855,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: &829 + default: &830 value: total_count: 2 machines: @@ -88706,8 +88897,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *474 - *475 + - *476 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -88794,8 +88985,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: - - *474 - *475 + - *476 - 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 @@ -88864,8 +89055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -88883,7 +89074,7 @@ paths: type: integer secrets: type: array - items: &581 + items: &582 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -88904,7 +89095,7 @@ paths: - created_at - updated_at examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -88927,16 +89118,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88956,17 +89147,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88986,9 +89177,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: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -89016,7 +89207,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -89040,9 +89231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -89070,8 +89261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *474 - *475 + - *476 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -89109,7 +89300,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Collaborator description: Collaborator type: object @@ -89302,8 +89493,8 @@ 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: - - *474 - *475 + - *476 - *143 responses: '204': @@ -89350,8 +89541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 requestBody: required: false @@ -89378,7 +89569,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &659 + schema: &660 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -89390,7 +89581,7 @@ paths: format: int64 examples: - 42 - repository: *280 + repository: *281 invitee: anyOf: - type: 'null' @@ -89566,7 +89757,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *255 + schema: *256 '403': *27 x-github: triggersNotification: true @@ -89606,8 +89797,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 responses: '204': @@ -89639,8 +89830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *474 - *475 + - *476 - *143 responses: '200': @@ -89661,7 +89852,7 @@ paths: user: anyOf: - type: 'null' - - *583 + - *584 required: - permission - role_name @@ -89715,8 +89906,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -89726,7 +89917,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Commit Comment description: Commit Comment type: object @@ -89767,8 +89958,8 @@ paths: updated_at: type: string format: date-time - author_association: *218 - reactions: *219 + author_association: *219 + reactions: *220 required: - url - html_url @@ -89784,7 +89975,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &590 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -89843,17 +90034,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &590 + default: &591 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -89910,9 +90101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -89934,7 +90125,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: default: value: @@ -89985,9 +90176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -90008,9 +90199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -90036,7 +90227,7 @@ paths: application/json: schema: type: array - items: &585 + items: &586 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -90080,7 +90271,7 @@ paths: - content - created_at examples: - default: &663 + default: &664 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90125,9 +90316,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -90159,9 +90350,9 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: &586 + default: &587 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90190,9 +90381,9 @@ paths: description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -90214,10 +90405,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *474 - *475 - - *235 - - &664 + - *476 + - *236 + - &665 name: reaction_id description: The unique identifier of the reaction. in: path @@ -90272,8 +90463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *474 - *475 + - *476 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -90329,9 +90520,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: &727 + default: &728 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -90425,9 +90616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *474 - *475 - - &588 + - *476 + - &589 name: commit_sha description: The SHA of the commit. in: path @@ -90499,9 +90690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -90511,9 +90702,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *589 + default: *590 headers: Link: *45 x-github: @@ -90541,9 +90732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *474 - *475 - - *588 + - *476 + - *589 requestBody: required: true content: @@ -90578,9 +90769,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *590 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90608,9 +90799,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: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -90620,9 +90811,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: &719 + default: &720 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91159,11 +91350,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *474 - *475 + - *476 - *19 - *17 - - &592 + - &593 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)" @@ -91178,9 +91369,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &705 + default: &706 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -91268,7 +91459,7 @@ paths: schema: type: string examples: - default: &599 + default: &600 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -91281,7 +91472,7 @@ paths: schema: type: string examples: - default: &600 + default: &601 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -91334,11 +91525,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: - - *474 - *475 - - *592 + - *476 - *593 - *594 + - *595 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -91372,9 +91563,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: *595 + default: *596 headers: Link: *45 x-github: @@ -91399,9 +91590,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: - - *474 - *475 - - *592 + - *476 + - *593 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -91409,7 +91600,7 @@ paths: schema: type: integer example: 1 - - *593 + - *594 - *17 - *19 responses: @@ -91427,7 +91618,7 @@ paths: type: integer check_suites: type: array - items: *541 + items: *542 examples: default: value: @@ -91627,9 +91818,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: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -91700,7 +91891,7 @@ paths: type: string total_count: type: integer - repository: *280 + repository: *281 commit_url: type: string format: uri @@ -91831,9 +92022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -91843,7 +92034,7 @@ paths: application/json: schema: type: array - items: &782 + items: &783 title: Status description: The status of a commit. type: object @@ -91924,7 +92115,7 @@ paths: site_admin: false headers: Link: *45 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91952,8 +92143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -91986,11 +92177,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *596 + - *597 code_of_conduct_file: anyOf: - type: 'null' - - &597 + - &598 title: Community Health File type: object properties: @@ -92006,23 +92197,23 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 contributing: anyOf: - type: 'null' - - *597 + - *598 readme: anyOf: - type: 'null' - - *597 + - *598 issue_template: anyOf: - type: 'null' - - *597 + - *598 pull_request_template: anyOf: - type: 'null' - - *597 + - *598 required: - code_of_conduct - code_of_conduct_file @@ -92151,8 +92342,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *474 - *475 + - *476 - *19 - *17 - name: basehead @@ -92200,8 +92391,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *587 - merge_base_commit: *587 + base_commit: *588 + merge_base_commit: *588 status: type: string enum: @@ -92225,10 +92416,10 @@ paths: - 6 commits: type: array - items: *587 + items: *588 files: type: array - items: *598 + items: *599 required: - url - html_url @@ -92474,12 +92665,12 @@ paths: schema: type: string examples: - default: *599 + default: *600 application/vnd.github.patch: schema: type: string examples: - default: *600 + default: *601 '404': *6 '500': *38 '503': *195 @@ -92524,8 +92715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -92695,7 +92886,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &601 + response-if-content-is-a-file-github-object: &602 summary: Response if content is a file value: type: file @@ -92832,7 +93023,7 @@ paths: - size - type - url - - &732 + - &733 title: Content File description: Content File type: object @@ -93050,7 +93241,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *601 + response-if-content-is-a-file: *602 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -93119,7 +93310,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *602 + '302': *603 '304': *35 x-github: githubCloudOnly: false @@ -93142,8 +93333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -93238,7 +93429,7 @@ paths: description: Response content: application/json: - schema: &603 + schema: &604 title: File Commit description: File Commit type: object @@ -93394,7 +93585,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: example-for-creating-a-file: value: @@ -93448,7 +93639,7 @@ paths: schema: oneOf: - *3 - - &641 + - &642 description: Repository rule violation was detected type: object properties: @@ -93469,7 +93660,7 @@ paths: items: type: object properties: - placeholder_id: &774 + placeholder_id: &775 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -93501,8 +93692,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -93563,7 +93754,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: default: value: @@ -93618,8 +93809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *474 - *475 + - *476 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -93749,8 +93940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -93883,24 +94074,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *474 - *475 - - *338 + - *476 - *339 - *340 - *341 - *342 + - *343 - 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 - - *343 - - *604 - *344 + - *605 - *345 - *346 + - *347 - *110 - *108 - *109 @@ -93912,7 +94103,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 type: object description: A Dependabot alert. properties: @@ -93963,7 +94154,7 @@ paths: - transitive - inconclusive - - security_advisory: *605 + security_advisory: *606 security_vulnerability: *134 url: *135 html_url: *136 @@ -93994,8 +94185,8 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: *606 - dismissal_request: *607 + auto_dismissed_at: *607 + dismissal_request: *608 assignees: type: array description: The users assigned to this alert. @@ -94250,9 +94441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *474 - *475 - - &609 + - *476 + - &610 name: alert_number in: path description: |- @@ -94267,7 +94458,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -94399,9 +94590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *474 - *475 - - *609 + - *476 + - *610 requestBody: required: true content: @@ -94474,7 +94665,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -94604,8 +94795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -94623,7 +94814,7 @@ paths: type: integer secrets: type: array - items: &612 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -94677,16 +94868,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94706,15 +94897,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -94740,9 +94931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -94770,7 +94961,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -94794,9 +94985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -94818,8 +95009,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: - - *474 - *475 + - *476 - 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 @@ -94996,8 +95187,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -95256,8 +95447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 - name: sbom_uuid in: path required: true @@ -95268,7 +95459,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *613 + Location: *614 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -95289,8 +95480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -95328,8 +95519,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -95412,7 +95603,7 @@ paths: - version - url additionalProperties: false - metadata: &614 + metadata: &615 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -95451,7 +95642,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *614 + metadata: *615 resolved: type: object description: A collection of resolved package dependencies. @@ -95465,7 +95656,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *614 + metadata: *615 relationship: type: string description: A notation of whether a dependency is requested @@ -95598,8 +95789,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *474 - *475 + - *476 - name: sha description: The SHA recorded at creation time. in: query @@ -95640,9 +95831,9 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: - default: *616 + default: *617 headers: Link: *45 x-github: @@ -95708,8 +95899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -95791,7 +95982,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: simple-example: summary: Simple example @@ -95864,9 +96055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *474 - *475 - - &617 + - *476 + - &618 name: deployment_id description: deployment_id parameter in: path @@ -95878,7 +96069,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: default: value: @@ -95943,9 +96134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *474 - *475 - - *617 + - *476 + - *618 responses: '204': description: Response @@ -95967,9 +96158,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *474 - *475 - - *617 + - *476 + - *618 - *17 - *19 responses: @@ -95979,7 +96170,7 @@ paths: application/json: schema: type: array - items: &618 + items: &619 title: Deployment Status description: The status of a deployment. type: object @@ -96143,9 +96334,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 requestBody: required: true content: @@ -96220,9 +96411,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: &619 + default: &620 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -96278,9 +96469,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 - name: status_id in: path required: true @@ -96291,9 +96482,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: *619 + default: *620 '404': *6 x-github: githubCloudOnly: false @@ -96320,12 +96511,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -96335,9 +96526,9 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: - default: *625 + default: *626 '404': *6 '403': *27 '500': *38 @@ -96361,8 +96552,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96374,7 +96565,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -96430,8 +96621,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96490,12 +96681,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -96505,9 +96696,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *627 + default: *628 '404': *6 '403': *27 '500': *38 @@ -96531,8 +96722,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96544,7 +96735,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -96595,8 +96786,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96634,7 +96825,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -96685,8 +96876,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96757,8 +96948,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96791,12 +96982,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -96806,9 +96997,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -96833,8 +97024,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96846,7 +97037,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *354 + schema: *355 examples: default: value: @@ -96904,8 +97095,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -96974,8 +97165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -97032,8 +97223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -97051,7 +97242,7 @@ paths: - 5 environments: type: array - items: &629 + items: &630 title: Environment description: Details of a deployment environment type: object @@ -97113,7 +97304,7 @@ paths: type: string examples: - wait_timer - wait_timer: &631 + wait_timer: &632 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -97155,11 +97346,11 @@ paths: items: type: object properties: - type: *628 + type: *629 reviewer: anyOf: - *4 - - *313 + - *314 required: - id - node_id @@ -97182,7 +97373,7 @@ paths: - id - node_id - type - deployment_branch_policy: &632 + deployment_branch_policy: &633 type: - object - 'null' @@ -97299,9 +97490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *474 - *475 - - &630 + - *476 + - &631 name: environment_name in: path required: true @@ -97314,9 +97505,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &633 + default: &634 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -97400,9 +97591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: false content: @@ -97412,7 +97603,7 @@ paths: - object - 'null' properties: - wait_timer: *631 + wait_timer: *632 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -97431,14 +97622,14 @@ paths: items: type: object properties: - type: *628 + type: *629 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *632 + deployment_branch_policy: *633 additionalProperties: false examples: default: @@ -97458,9 +97649,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *633 + default: *634 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -97484,9 +97675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '204': description: Default response @@ -97511,9 +97702,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -97532,7 +97723,7 @@ paths: - 2 branch_policies: type: array - items: &634 + items: &635 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -97593,9 +97784,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -97643,9 +97834,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - example-wildcard: &635 + example-wildcard: &636 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -97687,10 +97878,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - &636 + - *476 + - *631 + - &637 name: branch_policy_id in: path required: true @@ -97702,9 +97893,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97723,10 +97914,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 requestBody: required: true content: @@ -97755,9 +97946,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97776,10 +97967,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 responses: '204': description: Response @@ -97804,9 +97995,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: - - *630 + - *631 + - *476 - *475 - - *474 responses: '200': description: List of deployment protection rules @@ -97823,7 +98014,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &637 + items: &638 title: Deployment protection rule description: Deployment protection rule type: object @@ -97845,7 +98036,7 @@ paths: for the environment. examples: - true - app: &638 + app: &639 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -97948,9 +98139,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: - - *630 + - *631 + - *476 - *475 - - *474 requestBody: content: application/json: @@ -97971,9 +98162,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *637 + schema: *638 examples: - default: &639 + default: &640 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -98008,9 +98199,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: - - *630 + - *631 + - *476 - *475 - - *474 - *19 - *17 responses: @@ -98030,7 +98221,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *638 + items: *639 examples: default: value: @@ -98065,10 +98256,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: - - *474 - *475 - - *630 - - &640 + - *476 + - *631 + - &641 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -98080,9 +98271,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *639 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98103,10 +98294,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: - - *630 + - *631 + - *476 - *475 - - *474 - - *640 + - *641 responses: '204': description: Response @@ -98132,9 +98323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -98152,9 +98343,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -98179,17 +98370,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98211,18 +98402,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98244,10 +98435,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 requestBody: required: true content: @@ -98278,7 +98469,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -98304,10 +98495,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '204': description: Default response @@ -98332,10 +98523,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *474 - *475 - - *630 - - *299 + - *476 + - *631 + - *300 - *19 responses: '200': @@ -98352,9 +98543,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -98377,9 +98568,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -98406,7 +98597,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -98431,18 +98622,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *474 - *475 - - *630 - - *293 + - *476 + - *631 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98463,10 +98654,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 requestBody: required: true content: @@ -98508,10 +98699,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 responses: '204': description: Response @@ -98533,8 +98724,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -98544,7 +98735,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -98602,8 +98793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *474 - *475 + - *476 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -98625,7 +98816,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -98762,8 +98953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -98796,9 +98987,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -98819,8 +99010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -98879,8 +99070,8 @@ paths: application/json: schema: oneOf: - - *255 - - *641 + - *256 + - *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98905,8 +99096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *474 - *475 + - *476 - name: file_sha in: path required: true @@ -99006,8 +99197,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -99116,7 +99307,7 @@ paths: description: Response content: application/json: - schema: &642 + schema: &643 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -99343,15 +99534,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *474 - *475 - - *588 + - *476 + - *589 responses: '200': description: Response content: application/json: - schema: *642 + schema: *643 examples: default: value: @@ -99407,9 +99598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *474 - *475 - - &643 + - *476 + - &644 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. @@ -99426,7 +99617,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 title: Git Reference description: Git references within a repository type: object @@ -99502,17 +99693,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '200': description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &645 + default: &646 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -99541,8 +99732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -99571,9 +99762,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -99599,9 +99790,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 requestBody: required: true content: @@ -99630,9 +99821,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 '422': *15 '409': *119 x-github: @@ -99650,9 +99841,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '204': description: Response @@ -99707,8 +99898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -99775,7 +99966,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &648 title: Git Tag description: Metadata for a Git tag type: object @@ -99831,7 +100022,7 @@ paths: - sha - type - url - verification: *646 + verification: *647 required: - sha - url @@ -99841,7 +100032,7 @@ paths: - tag - message examples: - default: &648 + default: &649 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -99914,8 +100105,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *474 - *475 + - *476 - name: tag_sha in: path required: true @@ -99926,9 +100117,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '404': *6 '409': *119 x-github: @@ -99952,8 +100143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100027,7 +100218,7 @@ paths: description: Response content: application/json: - schema: &649 + schema: &650 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -100129,8 +100320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *474 - *475 + - *476 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -100153,7 +100344,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *650 examples: default-response: summary: Default response @@ -100211,8 +100402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -100256,8 +100447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -100267,7 +100458,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Webhook description: Webhooks for repositories. type: object @@ -100330,7 +100521,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &922 + last_response: &923 title: Hook Response type: object properties: @@ -100407,8 +100598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -100461,9 +100652,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: &651 + default: &652 value: type: Repository id: 12345678 @@ -100511,17 +100702,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '404': *6 x-github: githubCloudOnly: false @@ -100541,9 +100732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: true content: @@ -100588,9 +100779,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '422': *15 '404': *6 x-github: @@ -100611,9 +100802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -100637,9 +100828,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: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response @@ -100666,9 +100857,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: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: false content: @@ -100712,12 +100903,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *474 - *475 - - *358 - - *17 + - *476 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -100725,9 +100916,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -100746,18 +100937,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -100776,9 +100967,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '202': *37 @@ -100801,9 +100992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -100828,9 +101019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -100853,8 +101044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response if immutable releases are enabled @@ -100902,8 +101093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -100923,8 +101114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -100981,14 +101172,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &652 + schema: &653 title: Import description: A repository import from an external source. type: object @@ -101095,7 +101286,7 @@ paths: - html_url - authors_url examples: - default: &655 + default: &656 value: vcs: subversion use_lfs: true @@ -101111,7 +101302,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': &653 + '503': &654 description: Unavailable due to service under maintenance. content: application/json: @@ -101140,8 +101331,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -101189,7 +101380,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -101214,7 +101405,7 @@ paths: type: string '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101242,8 +101433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -101295,7 +101486,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: example-1: summary: Example 1 @@ -101343,7 +101534,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101366,12 +101557,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *474 - *475 + - *476 responses: '204': description: Response - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101397,9 +101588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *474 - *475 - - &852 + - *476 + - &853 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -101413,7 +101604,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: Porter Author description: Porter Author type: object @@ -101467,7 +101658,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101492,8 +101683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *474 - *475 + - *476 - name: author_id in: path required: true @@ -101523,7 +101714,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: default: value: @@ -101536,7 +101727,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101560,8 +101751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -101602,7 +101793,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101630,8 +101821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -101658,11 +101849,11 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *655 + default: *656 '422': *15 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101685,8 +101876,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -101694,8 +101885,8 @@ paths: application/json: schema: *20 examples: - default: *376 - '301': *480 + default: *377 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -101715,8 +101906,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -101724,12 +101915,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: &657 + default: &658 value: limit: collaborators_only origin: repository @@ -101754,13 +101945,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *656 + schema: *657 examples: default: summary: Example request body @@ -101772,9 +101963,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *657 + default: *658 '409': description: Response x-github: @@ -101796,8 +101987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -101824,8 +102015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -101879,13 +102070,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: &658 + schema: &659 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -101935,13 +102126,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *658 + schema: *659 examples: default: summary: Example request body @@ -101974,8 +102165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102028,8 +102219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102105,8 +102296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -102116,9 +102307,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: &844 + default: &845 value: - id: 1 repository: @@ -102249,9 +102440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 requestBody: required: false content: @@ -102280,7 +102471,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: default: value: @@ -102411,9 +102602,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 responses: '204': description: Response @@ -102436,8 +102627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102445,9 +102636,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: *660 + default: *661 '404': *6 x-github: githubCloudOnly: false @@ -102476,8 +102667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *474 - *475 + - *476 - 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 @@ -102539,7 +102730,7 @@ paths: required: false schema: type: string - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -102552,7 +102743,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -102562,9 +102753,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &671 + default: &672 value: - id: 1 node_id: MDU6SXNzdWUx @@ -102713,7 +102904,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *480 + '301': *481 '422': *15 '404': *6 x-github: @@ -102742,8 +102933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102850,9 +103041,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: &668 + default: &669 value: id: 1 node_id: MDU6SXNzdWUx @@ -102990,7 +103181,7 @@ paths: '422': *15 '503': *195 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -103018,9 +103209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *474 - *475 - - *243 + - *476 + - *244 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -103030,7 +103221,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -103040,9 +103231,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: &670 + default: &671 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103101,17 +103292,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: &662 + default: &663 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103167,9 +103358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -103191,9 +103382,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 '422': *15 x-github: githubCloudOnly: false @@ -103211,9 +103402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -103241,15 +103432,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: default: value: @@ -103305,7 +103496,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -103322,16 +103513,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '503': *195 x-github: githubCloudOnly: false @@ -103349,9 +103540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -103377,9 +103568,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -103400,9 +103591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -103434,16 +103625,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -103465,10 +103656,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -103488,8 +103679,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -103499,7 +103690,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: Issue Event description: Issue Event type: object @@ -103546,7 +103737,7 @@ paths: issue: anyOf: - type: 'null' - - *221 + - *222 label: title: Issue Event Label description: Issue Event Label @@ -103579,7 +103770,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *313 + requested_team: *314 dismissed_review: title: Issue Event Dismissed Review type: object @@ -103646,7 +103837,7 @@ paths: required: - from - to - issue_type: &665 + issue_type: &666 title: Issue Type description: The type of issue. type: @@ -103677,11 +103868,11 @@ paths: required: - id - name - prev_issue_type: *665 + prev_issue_type: *666 sub_issue: anyOf: - type: 'null' - - &666 + - &667 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -103739,16 +103930,16 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 blocked_by: anyOf: - type: 'null' - - *666 + - *667 blocking: anyOf: - type: 'null' - - *666 - author_association: *218 + - *667 + author_association: *219 lock_reason: type: - string @@ -103941,8 +104132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *474 - *475 + - *476 - name: event_id in: path required: true @@ -103953,7 +104144,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -104146,7 +104337,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *661 + '410': *662 '403': *27 x-github: githubCloudOnly: false @@ -104180,9 +104371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *474 - *475 - - &669 + - *476 + - &670 name: issue_number description: The number that identifies the issue. in: path @@ -104194,11 +104385,11 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: summary: Issue - value: *668 + value: *669 pinned_comment: summary: Issue with pinned comment value: @@ -104378,9 +104569,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 '304': *35 x-github: githubCloudOnly: false @@ -104405,9 +104596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -104557,17 +104748,17 @@ paths: application/json: schema: allOf: - - *221 + - *222 - type: object properties: {} examples: - default: *668 + default: *669 '422': *15 '503': *195 '403': *27 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104585,9 +104776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -104613,9 +104804,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104631,9 +104822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: content: application/json: @@ -104658,9 +104849,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104682,9 +104873,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: assignee in: path required: true @@ -104724,10 +104915,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *474 - *475 - - *669 - - *226 + - *476 + - *670 + - *227 - *17 - *19 responses: @@ -104737,13 +104928,13 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *670 + default: *671 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104772,9 +104963,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -104796,16 +104987,16 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -104833,9 +105024,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -104845,14 +105036,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104880,9 +105071,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: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -104904,17 +105095,17 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *480 + '301': *481 '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -104945,9 +105136,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -104959,15 +105150,15 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -104993,9 +105184,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -105005,14 +105196,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105029,9 +105220,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -105045,7 +105236,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &675 + - &676 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -105094,7 +105285,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &676 + - &677 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -105222,7 +105413,7 @@ paths: - performed_via_github_app - assignee - assigner - - &677 + - &678 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -105268,7 +105459,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &679 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -105314,7 +105505,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &680 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -105363,7 +105554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &681 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -105392,7 +105583,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -105405,7 +105596,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &682 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -105434,7 +105625,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -105447,7 +105638,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &683 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -105503,7 +105694,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &684 title: Locked Issue Event description: Locked Issue Event type: object @@ -105548,7 +105739,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &685 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -105609,7 +105800,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &686 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -105670,7 +105861,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &686 + - &687 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -105731,7 +105922,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &688 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -105789,7 +105980,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &691 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -105817,7 +106008,7 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 + issue_type: *666 required: - issue_type - id @@ -105829,7 +106020,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &692 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -105857,7 +106048,7 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *665 + prev_issue_type: *666 required: - prev_issue_type - id @@ -105869,7 +106060,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &693 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -105897,8 +106088,8 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 - prev_issue_type: *665 + issue_type: *666 + prev_issue_type: *666 required: - issue_type - prev_issue_type @@ -105911,7 +106102,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &694 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -105942,7 +106133,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -105954,7 +106145,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &695 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -105985,7 +106176,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -105997,7 +106188,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &696 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -106028,7 +106219,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -106040,7 +106231,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &697 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -106071,7 +106262,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -106083,7 +106274,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &697 + - &698 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -106114,7 +106305,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -106126,7 +106317,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &698 + - &699 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -106157,7 +106348,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -106169,7 +106360,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &699 + - &700 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -106200,7 +106391,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -106212,7 +106403,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &700 + - &701 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -106243,7 +106434,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -106290,7 +106481,7 @@ paths: color: red headers: Link: *45 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106307,9 +106498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106319,9 +106510,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &673 + default: &674 value: - issue_field_id: 1 issue_field_name: DRI @@ -106361,9 +106552,9 @@ paths: color: green headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106392,9 +106583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -106466,9 +106657,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -106504,9 +106695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -106573,9 +106764,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -106606,10 +106797,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *474 - *475 - - *669 - - *385 + - *476 + - *670 + - *386 responses: '204': description: Issue field value deleted successfully @@ -106634,9 +106825,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106646,9 +106837,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: &674 + default: &675 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -106666,9 +106857,9 @@ paths: default: false headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106684,9 +106875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -106729,12 +106920,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -106751,9 +106942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -106813,12 +107004,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -106835,15 +107026,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106862,9 +107053,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - name: name in: path required: true @@ -106877,7 +107068,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -106888,9 +107079,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106910,9 +107101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -106941,7 +107132,7 @@ paths: '204': description: Response '403': *27 - '410': *661 + '410': *662 '404': *6 '422': *15 x-github: @@ -106959,9 +107150,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response @@ -106991,20 +107182,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '200': description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107021,9 +107212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - 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. @@ -107049,13 +107240,13 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107073,9 +107264,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107107,16 +107298,16 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -107138,10 +107329,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *474 - *475 - - *669 - - *664 + - *476 + - *670 + - *665 responses: '204': description: Response @@ -107170,9 +107361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107194,9 +107385,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -107229,9 +107420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107241,13 +107432,13 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107275,9 +107466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107304,16 +107495,16 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -107333,9 +107524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107366,9 +107557,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 '403': *27 '404': *6 '422': *7 @@ -107390,9 +107581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107407,7 +107598,6 @@ paths: description: Timeline Event type: object anyOf: - - *675 - *676 - *677 - *678 @@ -107420,6 +107610,7 @@ paths: - *685 - *686 - *687 + - *688 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -107467,20 +107658,20 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - event - actor @@ -107511,7 +107702,7 @@ paths: properties: type: type: string - issue: *221 + issue: *222 required: - event - created_at @@ -107733,7 +107924,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - event - id @@ -107756,7 +107947,7 @@ paths: type: string comments: type: array - items: &721 + items: &722 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -107864,7 +108055,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: @@ -107959,7 +108150,7 @@ paths: enum: - line - file - reactions: *219 + reactions: *220 body_html: type: string examples: @@ -107997,7 +108188,7 @@ paths: type: string comments: type: array - items: *584 + items: *585 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -108117,7 +108308,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *690 - *691 - *692 - *693 @@ -108128,6 +108318,7 @@ paths: - *698 - *699 - *700 + - *701 examples: default: value: @@ -108284,7 +108475,7 @@ paths: Link: *45 '404': *6 '400': *14 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108301,8 +108492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -108312,7 +108503,7 @@ paths: application/json: schema: type: array - items: &701 + items: &702 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -108380,8 +108571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -108417,9 +108608,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: &702 + default: &703 value: id: 1 key: ssh-rsa AAA... @@ -108453,9 +108644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *474 - *475 - - &703 + - *476 + - &704 name: key_id description: The unique identifier of the key. in: path @@ -108467,9 +108658,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -108487,9 +108678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *474 - *475 - - *703 + - *476 + - *704 responses: '204': description: Response @@ -108509,8 +108700,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -108520,9 +108711,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 '404': *6 @@ -108543,8 +108734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -108580,9 +108771,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: &704 + default: &705 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -108614,8 +108805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -108626,9 +108817,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *704 + default: *705 '404': *6 x-github: githubCloudOnly: false @@ -108645,8 +108836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -108685,7 +108876,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -108711,8 +108902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -108738,8 +108929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -108775,8 +108966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '202': *37 '403': @@ -108804,8 +108995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -108831,9 +109022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *474 - *475 - - *559 + - *476 + - *560 responses: '200': description: Response @@ -108899,7 +109090,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 required: - _links - git_url @@ -108980,8 +109171,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109046,8 +109237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109081,9 +109272,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *587 + schema: *588 examples: - default: *705 + default: *706 '204': description: Response when already merged '404': @@ -109108,8 +109299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *474 - *475 + - *476 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -109150,7 +109341,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -109206,8 +109397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109247,9 +109438,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: &706 + default: &707 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -109308,9 +109499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *474 - *475 - - &707 + - *476 + - &708 name: milestone_number description: The number that identifies the milestone. in: path @@ -109322,9 +109513,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 '404': *6 x-github: githubCloudOnly: false @@ -109341,9 +109532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 requestBody: required: false content: @@ -109381,9 +109572,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109399,9 +109590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 responses: '204': description: Response @@ -109422,9 +109613,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: - - *474 - *475 - - *707 + - *476 + - *708 - *17 - *19 responses: @@ -109434,9 +109625,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 x-github: @@ -109455,12 +109646,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: - - *474 - *475 - - *708 + - *476 - *709 - - *226 - *710 + - *227 + - *711 - *17 - *19 responses: @@ -109470,9 +109661,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *711 + default: *712 headers: Link: *45 x-github: @@ -109496,8 +109687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -109555,14 +109746,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &712 + schema: &713 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -109706,7 +109897,7 @@ paths: - custom_404 - public examples: - default: &713 + default: &714 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -109747,8 +109938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109803,9 +109994,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: - default: *713 + default: *714 '422': *15 '409': *119 x-github: @@ -109828,8 +110019,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109937,8 +110128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -109964,8 +110155,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -109975,7 +110166,7 @@ paths: application/json: schema: type: array - items: &714 + items: &715 title: Page Build description: Page Build type: object @@ -110067,8 +110258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -110115,16 +110306,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: &715 + default: &716 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -110172,8 +110363,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *474 - *475 + - *476 - name: build_id in: path required: true @@ -110184,9 +110375,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110206,8 +110397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110315,9 +110506,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: - - *474 - *475 - - &716 + - *476 + - &717 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -110375,9 +110566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *474 - *475 - - *716 + - *476 + - *717 responses: '204': *126 '404': *6 @@ -110404,8 +110595,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -110673,7 +110864,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -110700,8 +110891,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: - - *474 - *475 + - *476 responses: '200': description: Private vulnerability reporting status @@ -110738,8 +110929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -110760,8 +110951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -110783,8 +110974,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -110794,7 +110985,7 @@ paths: type: array items: *155 examples: - default: *717 + default: *718 '403': *27 '404': *6 x-github: @@ -110816,8 +111007,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110833,7 +111024,7 @@ paths: required: - properties examples: - default: *718 + default: *719 responses: '204': description: No Content when custom property values are successfully created @@ -110871,8 +111062,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *474 - *475 + - *476 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -110932,9 +111123,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *719 + default: *720 headers: Link: *45 '304': *35 @@ -110966,8 +111157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111034,7 +111225,7 @@ paths: description: Response content: application/json: - schema: &723 + schema: &724 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -111163,7 +111354,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -111202,7 +111393,7 @@ paths: items: *4 requested_teams: type: array - items: *399 + items: *400 head: type: object properties: @@ -111240,14 +111431,14 @@ paths: _links: type: object properties: - comments: *421 - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + comments: *422 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -111257,8 +111448,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: *720 + author_association: *219 + auto_merge: *721 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -111358,7 +111549,7 @@ paths: - merged_by - review_comments examples: - default: &724 + default: &725 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -111865,8 +112056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *474 - *475 + - *476 - name: sort in: query required: false @@ -111885,7 +112076,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -111895,9 +112086,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: &726 + default: &727 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -111974,17 +112165,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: &722 + default: &723 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -112059,9 +112250,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -112083,9 +112274,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: *722 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112101,9 +112292,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -112124,9 +112315,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: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -112152,9 +112343,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -112175,9 +112366,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -112209,16 +112400,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -112240,10 +112431,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -112286,9 +112477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *474 - *475 - - &725 + - *476 + - &726 name: pull_number description: The number that identifies the pull request. in: path @@ -112301,9 +112492,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '304': *35 '404': *6 '406': @@ -112338,9 +112529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -112382,9 +112573,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '422': *15 '403': *27 x-github: @@ -112406,9 +112597,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -112469,17 +112660,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -112509,10 +112700,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: - - *474 - *475 - - *725 - - *243 + - *476 + - *726 + - *244 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -112522,7 +112713,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -112532,9 +112723,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: *726 + default: *727 headers: Link: *45 x-github: @@ -112567,9 +112758,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -112675,7 +112866,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: example-for-a-multi-line-comment: value: @@ -112763,10 +112954,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: - - *474 - *475 - - *725 - - *235 + - *476 + - *726 + - *236 requestBody: required: true content: @@ -112788,7 +112979,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: default: value: @@ -112874,9 +113065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -112886,9 +113077,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *727 + default: *728 headers: Link: *45 x-github: @@ -112918,9 +113109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -112930,7 +113121,7 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: default: value: @@ -112968,9 +113159,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '204': description: Response if pull request has been merged @@ -112993,9 +113184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -113107,9 +113298,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '200': description: Response @@ -113125,7 +113316,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 required: - users - teams @@ -113184,9 +113375,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -113223,7 +113414,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -113759,9 +113950,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -113795,7 +113986,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -114280,9 +114471,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -114292,7 +114483,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -114366,7 +114557,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - id - node_id @@ -114448,9 +114639,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -114540,9 +114731,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &730 + default: &731 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -114605,10 +114796,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: - - *474 - *475 - - *725 - - &729 + - *476 + - *726 + - &730 name: review_id description: The unique identifier of the review. in: path @@ -114620,9 +114811,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &731 + default: &732 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -114681,10 +114872,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -114707,7 +114898,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -114769,18 +114960,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 responses: '200': description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *730 + default: *731 '422': *7 '404': *6 x-github: @@ -114807,10 +114998,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 - *17 - *19 responses: @@ -114904,13 +115095,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: - self: *421 - html: *421 - pull_request: *421 + self: *422 + html: *422 + pull_request: *422 required: - self - html @@ -114919,7 +115110,7 @@ paths: type: string body_html: type: string - reactions: *219 + reactions: *220 side: description: The side of the first line of the range for a multi-line comment. @@ -115068,10 +115259,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -115100,7 +115291,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -115163,10 +115354,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -115201,9 +115392,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *731 + default: *732 '404': *6 '422': *7 '403': *27 @@ -115225,9 +115416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -115291,8 +115482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *474 - *475 + - *476 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -115305,9 +115496,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: &733 + default: &734 value: type: file encoding: base64 @@ -115349,8 +115540,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: - - *474 - *475 + - *476 - name: dir description: The alternate path to look for a README file in: path @@ -115370,9 +115561,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: *733 + default: *734 '404': *6 '422': *15 x-github: @@ -115394,8 +115585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -115405,7 +115596,7 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: default: value: @@ -115499,8 +115690,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -115576,9 +115767,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &738 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -115683,9 +115874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *474 - *475 - - &736 + - *476 + - &737 name: asset_id description: The unique identifier of the asset. in: path @@ -115697,9 +115888,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: &737 + default: &738 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 @@ -115734,7 +115925,7 @@ paths: type: User site_admin: false '404': *6 - '302': *602 + '302': *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115750,9 +115941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 requestBody: required: false content: @@ -115781,9 +115972,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: *737 + default: *738 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115799,9 +115990,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 responses: '204': description: Response @@ -115826,8 +116017,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -115913,16 +116104,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -115940,8 +116131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *474 - *475 + - *476 - name: tag description: tag parameter in: path @@ -115954,9 +116145,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -115978,9 +116169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *474 - *475 - - &739 + - *476 + - &740 name: release_id description: The unique identifier of the release. in: path @@ -115994,9 +116185,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: *734 + schema: *735 examples: - default: *738 + default: *739 '401': description: Unauthorized x-github: @@ -116014,9 +116205,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: false content: @@ -116080,9 +116271,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': description: Not Found if the discussion category name is invalid content: @@ -116103,9 +116294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 responses: '204': description: Response @@ -116126,9 +116317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *474 - *475 - - *739 + - *476 + - *740 - *17 - *19 responses: @@ -116138,7 +116329,7 @@ paths: application/json: schema: type: array - items: *735 + items: *736 examples: default: value: @@ -116220,9 +116411,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: - - *474 - *475 - - *739 + - *476 + - *740 - name: name in: query required: true @@ -116248,7 +116439,7 @@ paths: description: Response for successful upload content: application/json: - schema: *735 + schema: *736 examples: response-for-successful-upload: value: @@ -116303,9 +116494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 - 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. @@ -116329,9 +116520,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -116352,9 +116543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: true content: @@ -116384,16 +116575,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -116415,10 +116606,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *474 - *475 - - *739 - - *664 + - *476 + - *740 + - *665 responses: '204': description: Response @@ -116442,9 +116633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 - *17 - *19 responses: @@ -116461,7 +116652,7 @@ paths: oneOf: - allOf: - *169 - - &740 + - &741 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -116482,70 +116673,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *170 - - *740 + - *741 - allOf: - *171 - - *740 + - *741 - allOf: - *172 - - *740 + - *741 - allOf: + - *742 - *741 - - *740 - allOf: - *173 - - *740 + - *741 - allOf: - *174 - - *740 + - *741 - allOf: - *175 - - *740 + - *741 - allOf: - *176 - - *740 + - *741 - allOf: - *177 - - *740 + - *741 - allOf: - *178 - - *740 + - *741 - allOf: - *179 - - *740 + - *741 - allOf: - *180 - - *740 + - *741 - allOf: - *181 - - *740 + - *741 - allOf: - *182 - - *740 + - *741 - allOf: - *183 - - *740 + - *741 - allOf: - *184 - - *740 + - *741 - allOf: - *185 - - *740 + - *741 - allOf: - - *742 - - *740 + - *743 + - *741 - allOf: - *186 - - *740 + - *741 - allOf: - *187 - - *740 + - *741 - allOf: - *188 - - *740 + - *741 - allOf: - *189 - - *740 + - *741 examples: default: value: @@ -116584,8 +116775,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - *17 - *19 - name: includes_parents @@ -116596,7 +116787,7 @@ paths: schema: type: boolean default: true - - *743 + - *744 responses: '200': description: Response @@ -116651,8 +116842,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 requestBody: description: Request body required: true @@ -116681,7 +116872,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *744 + items: *745 required: - name - enforcement @@ -116714,7 +116905,7 @@ paths: application/json: schema: *190 examples: - default: &754 + default: &755 value: id: 42 name: super cool ruleset @@ -116762,13 +116953,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *474 - *475 - - *745 - - *105 + - *476 - *746 + - *105 - *747 - *748 + - *749 - *17 - *19 responses: @@ -116776,9 +116967,9 @@ paths: description: Response content: application/json: - schema: *749 + schema: *750 examples: - default: *750 + default: *751 '404': *6 '500': *38 x-github: @@ -116799,17 +116990,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *474 - *475 - - *751 + - *476 + - *752 responses: '200': description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 '500': *38 x-github: @@ -116837,8 +117028,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116860,7 +117051,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '500': *38 put: @@ -116878,8 +117069,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116913,7 +117104,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *744 + items: *745 examples: default: value: @@ -116943,7 +117134,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '422': *15 '500': *38 @@ -116962,8 +117153,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116986,8 +117177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *474 - *475 + - *476 - *17 - *19 - name: ruleset_id @@ -117005,7 +117196,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -117024,8 +117215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -117043,7 +117234,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -117098,9 +117289,8 @@ 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: - - *474 - *475 - - *439 + - *476 - *440 - *441 - *442 @@ -117108,18 +117298,19 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - *755 - *756 - - *447 + - *757 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -117143,8 +117334,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -117250,7 +117441,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -117409,16 +117600,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: - - *474 - *475 - - *553 - - *450 + - *476 + - *554 + - *451 responses: '200': description: Response content: application/json: - schema: &760 + schema: &761 type: object properties: number: *130 @@ -117433,8 +117624,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -117540,7 +117731,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -117563,7 +117754,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &941 + metadata: &942 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -117636,9 +117827,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -117646,8 +117837,8 @@ paths: schema: type: object properties: - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -117695,7 +117886,7 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: default: value: @@ -117797,9 +117988,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 responses: @@ -117810,7 +118001,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &943 + items: &944 type: object properties: type: @@ -117837,7 +118028,6 @@ paths: - commit details: oneOf: - - *761 - *762 - *763 - *764 @@ -117850,6 +118040,7 @@ paths: - *771 - *772 - *773 + - *774 examples: default: value: @@ -117935,8 +118126,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -117944,14 +118135,14 @@ paths: schema: type: object properties: - reason: &775 + reason: &776 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *774 + placeholder_id: *775 required: - reason - placeholder_id @@ -117968,7 +118159,7 @@ paths: schema: type: object properties: - reason: *775 + reason: *776 expire_at: type: - string @@ -118015,8 +118206,8 @@ 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: - - *474 - *475 + - *476 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -118031,7 +118222,7 @@ paths: properties: incremental_scans: type: array - items: &776 + items: &777 description: Information on a single scan performed by secret scanning on the repository type: object @@ -118064,15 +118255,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *776 + items: *777 backfill_scans: type: array - items: *776 + items: *777 custom_pattern_backfill_scans: type: array items: allOf: - - *776 + - *777 - type: object properties: pattern_name: @@ -118085,7 +118276,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *776 + items: *777 examples: default: value: @@ -118150,8 +118341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *474 - *475 + - *476 - *110 - name: sort description: The property to sort the results by. @@ -118195,9 +118386,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *778 + default: *779 '400': *14 '404': *6 x-github: @@ -118220,8 +118411,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -118301,7 +118492,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -118391,9 +118582,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &780 + default: &781 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -118623,8 +118814,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -118737,7 +118928,7 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: default: value: @@ -118883,17 +119074,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '200': description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 + default: *781 '403': *27 '404': *6 x-github: @@ -118917,9 +119108,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: - - *474 - *475 - - *779 + - *476 + - *780 requestBody: required: true content: @@ -118999,7 +119190,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -119090,17 +119281,17 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 - add_credit: *780 + default: *781 + add_credit: *781 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *255 + schema: *256 examples: invalid_state_transition: value: @@ -119131,9 +119322,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': *37 '400': *14 @@ -119160,17 +119351,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -119196,8 +119387,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -119293,8 +119484,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -119303,7 +119494,7 @@ paths: application/json: schema: type: array - items: &781 + items: &782 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -119336,8 +119527,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -119415,8 +119606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -119510,8 +119701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *474 - *475 + - *476 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -119665,8 +119856,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: - - *474 - *475 + - *476 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -119676,7 +119867,7 @@ paths: application/json: schema: type: array - items: *781 + items: *782 examples: default: value: @@ -119709,8 +119900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *474 - *475 + - *476 - name: sha in: path required: true @@ -119766,7 +119957,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -119820,8 +120011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -119853,14 +120044,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &783 + schema: &784 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -119933,8 +120124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -119960,7 +120151,7 @@ paths: description: Response content: application/json: - schema: *783 + schema: *784 examples: default: value: @@ -119987,8 +120178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -120008,8 +120199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120091,8 +120282,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -120128,8 +120319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120139,9 +120330,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '404': *6 @@ -120161,8 +120352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *474 - *475 + - *476 - *19 - *17 responses: @@ -120170,7 +120361,7 @@ paths: description: Response content: application/json: - schema: &784 + schema: &785 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -120182,7 +120373,7 @@ paths: required: - names examples: - default: &785 + default: &786 value: names: - octocat @@ -120205,8 +120396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -120237,9 +120428,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '404': *6 '422': *7 x-github: @@ -120260,9 +120451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *474 - *475 - - &786 + - *476 + - &787 name: per description: The time frame to display results for. in: query @@ -120293,7 +120484,7 @@ paths: - 128 clones: type: array - items: &787 + items: &788 title: Traffic type: object properties: @@ -120380,8 +120571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -120475,8 +120666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -120539,9 +120730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *474 - *475 - - *786 + - *476 + - *787 responses: '200': description: Response @@ -120562,7 +120753,7 @@ paths: - 3782 views: type: array - items: *787 + items: *788 required: - uniques - count @@ -120639,8 +120830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -120676,7 +120867,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -120913,8 +121104,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: - - *474 - *475 + - *476 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -120937,8 +121128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -120960,8 +121151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -120987,8 +121178,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -121080,9 +121271,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121123,7 +121314,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -121233,7 +121424,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &795 + - &796 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -121243,7 +121434,7 @@ paths: type: string examples: - members - - &800 + - &801 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -121255,7 +121446,7 @@ paths: format: int32 examples: - 1 - - &801 + - &802 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -121299,7 +121490,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &790 + items: &791 allOf: - type: object required: @@ -121381,7 +121572,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: &802 + meta: &803 type: object description: The metadata associated with the creation/updates to the user. @@ -121446,30 +121637,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &791 + '400': &792 description: Bad request content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '401': *789 - '403': &792 + schema: *789 + '401': *790 + '403': &793 description: Permission denied - '429': &793 + '429': &794 description: Too many requests content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '500': &794 + schema: *789 + '500': &795 description: Internal server error content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 + schema: *789 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121493,7 +121684,7 @@ paths: required: true content: application/json: - schema: &798 + schema: &799 type: object required: - schemas @@ -121557,9 +121748,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *790 + schema: *791 examples: - group: &796 + group: &797 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -121578,13 +121769,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': *791 - '401': *789 - '403': *792 - '409': &799 + '400': *792 + '401': *790 + '403': *793 + '409': &800 description: Duplicate record detected - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121601,7 +121792,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: - - &797 + - &798 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -121610,22 +121801,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *795 + - *796 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *790 + schema: *791 examples: - default: *796 - '400': *791 - '401': *789 - '403': *792 + default: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121644,13 +121835,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: *798 + schema: *799 examples: group: summary: Group @@ -121676,17 +121867,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - group: *796 - groupWithMembers: *796 - '400': *791 - '401': *789 - '403': *792 + group: *797 + groupWithMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121710,13 +121901,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: &809 + schema: &810 type: object required: - Operations @@ -121776,17 +121967,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - updateGroup: *796 - addMembers: *796 - '400': *791 - '401': *789 - '403': *792 + updateGroup: *797 + addMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121802,17 +121993,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: - - *797 + - *798 - *39 responses: '204': description: Group was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121846,8 +122037,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *800 - *801 + - *802 - *39 responses: '200': @@ -121881,7 +122072,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &804 + items: &805 allOf: - type: object required: @@ -121973,7 +122164,7 @@ paths: address. examples: - true - roles: &803 + roles: &804 type: array description: The roles assigned to the user. items: @@ -122032,7 +122223,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *802 + meta: *803 startIndex: type: integer description: A starting index for the returned page @@ -122071,11 +122262,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *791 - '401': *789 - '403': *792 - '429': *793 - '500': *794 + '400': *792 + '401': *790 + '403': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122099,7 +122290,7 @@ paths: required: true content: application/json: - schema: &807 + schema: &808 type: object required: - schemas @@ -122192,9 +122383,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *803 + roles: *804 examples: - user: &808 + user: &809 summary: User value: schemas: @@ -122241,9 +122432,9 @@ paths: description: User has been created content: application/scim+json: - schema: *804 + schema: *805 examples: - user: &805 + user: &806 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -122269,13 +122460,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: *805 - '400': *791 - '401': *789 - '403': *792 - '409': *799 - '429': *793 - '500': *794 + enterpriseOwner: *806 + '400': *792 + '401': *790 + '403': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122292,7 +122483,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: - - &806 + - &807 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -122305,15 +122496,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *804 + schema: *805 examples: - default: *805 - '400': *791 - '401': *789 - '403': *792 + default: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122364,30 +122555,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *807 + schema: *808 examples: - user: *808 + user: *809 responses: '200': description: User was updated content: application/scim+json: - schema: *804 + schema: *805 examples: - user: *805 - '400': *791 - '401': *789 - '403': *792 + user: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122428,13 +122619,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *809 + schema: *810 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -122474,18 +122665,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *804 - examples: - userMultiValuedProperties: *805 - userSingleValuedProperties: *805 - disableUser: *805 - '400': *791 - '401': *789 - '403': *792 + schema: *805 + examples: + userMultiValuedProperties: *806 + userSingleValuedProperties: *806 + disableUser: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122505,17 +122696,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: - - *806 + - *807 - *39 responses: '204': description: User was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122606,7 +122797,7 @@ paths: - 1 Resources: type: array - items: &810 + items: &811 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -122853,22 +123044,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': &811 + '404': &812 description: Resource not found content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '403': &812 + schema: *789 + '403': &813 description: Forbidden content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 - '429': *793 + schema: *789 + '400': *792 + '429': *794 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -122894,9 +123085,9 @@ paths: description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: &813 + default: &814 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -122919,17 +123110,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': *811 - '403': *812 - '500': *794 + '404': *812 + '403': *813 + '500': *795 '409': description: Conflict content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 + schema: *789 + '400': *792 requestBody: required: true content: @@ -123029,17 +123220,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 - '404': *811 - '403': *812 + default: *814 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -123063,18 +123254,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 + '404': *812 + '403': *813 requestBody: required: true content: @@ -123189,19 +123380,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 - '400': *791 + '404': *812 + '403': *813 + '400': *792 '429': description: Response content: @@ -123297,12 +123488,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *806 + - *807 responses: '204': description: Response - '404': *811 - '403': *812 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -123420,7 +123611,7 @@ paths: html_url: type: string format: uri - repository: *280 + repository: *281 score: type: number file_size: @@ -123439,7 +123630,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &814 + text_matches: &815 title: Search Result Text Matches type: array items: @@ -123603,7 +123794,7 @@ paths: enum: - author-date - committer-date - - &815 + - &816 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 @@ -123672,7 +123863,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 comment_count: type: integer message: @@ -123691,7 +123882,7 @@ paths: url: type: string format: uri - verification: *646 + verification: *647 required: - author - committer @@ -123706,7 +123897,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 parents: type: array items: @@ -123718,12 +123909,12 @@ paths: type: string sha: type: string - repository: *280 + repository: *281 score: type: number node_id: type: string - text_matches: *814 + text_matches: *815 required: - sha - node_id @@ -123916,7 +124107,7 @@ paths: - interactions - created - updated - - *815 + - *816 - *17 - *19 - name: advanced_search @@ -124030,11 +124221,11 @@ paths: type: - string - 'null' - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: type: string state_reason: @@ -124044,7 +124235,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 comments: type: integer created_at: @@ -124058,7 +124249,7 @@ paths: - string - 'null' format: date-time - text_matches: *814 + text_matches: *815 pull_request: type: object properties: @@ -124096,7 +124287,7 @@ paths: type: string score: type: number - author_association: *218 + author_association: *219 draft: type: boolean repository: *78 @@ -124107,7 +124298,7 @@ paths: timeline_url: type: string format: uri - type: *386 + type: *387 performed_via_github_app: anyOf: - type: 'null' @@ -124115,8 +124306,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *222 - reactions: *219 + - *223 + reactions: *220 required: - closed_at - comments @@ -124332,7 +124523,7 @@ paths: enum: - created - updated - - *815 + - *816 - *17 - *19 responses: @@ -124377,7 +124568,7 @@ paths: - 'null' score: type: number - text_matches: *814 + text_matches: *815 required: - id - node_id @@ -124463,7 +124654,7 @@ paths: - forks - help-wanted-issues - updated - - *815 + - *816 - *17 - *19 responses: @@ -124691,7 +124882,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 permissions: type: object properties: @@ -124709,7 +124900,7 @@ paths: - admin - pull - push - text_matches: *814 + text_matches: *815 temp_clone_token: type: string allow_merge_commit: @@ -125018,7 +125209,7 @@ paths: - string - 'null' format: uri - text_matches: *814 + text_matches: *815 related: type: - array @@ -125213,7 +125404,7 @@ paths: - followers - repositories - joined - - *815 + - *816 - *17 - *19 responses: @@ -125323,7 +125514,7 @@ paths: type: - boolean - 'null' - text_matches: *814 + text_matches: *815 blog: type: - string @@ -125405,7 +125596,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &818 + - &819 name: team_id description: The unique identifier of the team. in: path @@ -125417,9 +125608,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -125446,7 +125637,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *818 + - *819 requestBody: required: true content: @@ -125510,16 +125701,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -125547,7 +125738,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *818 + - *819 responses: '204': description: Response @@ -125576,7 +125767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -125586,9 +125777,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 x-github: @@ -125616,7 +125807,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *818 + - *819 - name: role description: Filters members returned by their role in the team. in: query @@ -125637,9 +125828,9 @@ paths: application/json: schema: type: array - items: *819 + items: *820 examples: - default: *820 + default: *821 headers: Link: *45 '404': *6 @@ -125667,7 +125858,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -125704,7 +125895,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -125744,7 +125935,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -125781,16 +125972,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: - - *818 + - *819 - *143 responses: '200': description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-user-is-a-team-maintainer: *821 + response-if-user-is-a-team-maintainer: *822 '404': *6 x-github: githubCloudOnly: false @@ -125823,7 +126014,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 requestBody: required: false @@ -125849,9 +126040,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: *822 + response-if-users-membership-with-team-is-now-pending: *823 '403': description: Forbidden if team synchronization is set up '422': @@ -125885,7 +126076,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -125913,7 +126104,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -125923,9 +126114,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 '404': *6 @@ -125955,15 +126146,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *823 + schema: *824 examples: alternative-response-with-extra-repository-information: value: @@ -126113,9 +126304,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: - - *818 - - *474 + - *819 - *475 + - *476 requestBody: required: false content: @@ -126165,9 +126356,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '204': description: Response @@ -126196,15 +126387,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: - - *818 + - *819 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 '403': *27 '404': *6 x-github: @@ -126231,7 +126422,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: - - *818 + - *819 requestBody: required: true content: @@ -126292,7 +126483,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -126323,7 +126514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -126333,9 +126524,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: *824 + response-if-child-teams-exist: *825 headers: Link: *45 '404': *6 @@ -126368,7 +126559,7 @@ paths: application/json: schema: oneOf: - - &825 + - &826 title: Private User description: Private User type: object @@ -126618,7 +126809,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &851 + - &852 title: Public User description: Public User type: object @@ -126952,7 +127143,7 @@ paths: description: Response content: application/json: - schema: *825 + schema: *826 examples: default: value: @@ -127155,9 +127346,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -127296,17 +127487,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -127350,7 +127541,7 @@ paths: type: integer secrets: type: array - items: &826 + items: &827 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -127392,7 +127583,7 @@ paths: - visibility - selected_repositories_url examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -127464,13 +127655,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: - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *826 + schema: *827 examples: default: value: @@ -127500,7 +127691,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: - - *290 + - *291 requestBody: required: true content: @@ -127545,7 +127736,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -127573,7 +127764,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: - - *290 + - *291 responses: '204': description: Response @@ -127598,7 +127789,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: - - *290 + - *291 responses: '200': description: Response @@ -127614,9 +127805,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *332 + default: *333 '401': *23 '403': *27 '404': *6 @@ -127641,7 +127832,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: - - *290 + - *291 requestBody: required: true content: @@ -127695,7 +127886,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -127728,7 +127919,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -127760,15 +127951,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '401': *23 @@ -127794,7 +127985,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: - - *393 + - *394 requestBody: required: false content: @@ -127824,9 +128015,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -127848,7 +128039,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: - - *393 + - *394 responses: '202': *37 '304': *35 @@ -127877,13 +128068,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: - - *393 + - *394 responses: '202': description: Response content: application/json: - schema: &827 + schema: &828 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -127936,7 +128127,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &828 + default: &829 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -127968,7 +128159,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *393 + - *394 - name: export_id in: path required: true @@ -127981,9 +128172,9 @@ paths: description: Response content: application/json: - schema: *827 + schema: *828 examples: - default: *828 + default: *829 '404': *6 x-github: githubCloudOnly: false @@ -128004,7 +128195,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *393 + - *394 responses: '200': description: Response @@ -128020,9 +128211,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: *829 + default: *830 '304': *35 '500': *38 '401': *23 @@ -128051,7 +128242,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: - - *393 + - *394 requestBody: required: true content: @@ -128107,11 +128298,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *479 + repository: *480 machine: anyOf: - type: 'null' - - *577 + - *578 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -128908,15 +129099,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '400': *14 @@ -128948,15 +129139,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '500': *38 '401': *23 '403': *27 @@ -128986,9 +129177,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: &841 + default: &842 value: - id: 197 name: hello_docker @@ -129089,7 +129280,7 @@ paths: application/json: schema: type: array - items: &830 + items: &831 title: Email description: Email type: object @@ -129159,9 +129350,9 @@ paths: application/json: schema: type: array - items: *830 + items: *831 examples: - default: &843 + default: &844 value: - email: octocat@github.com verified: true @@ -129238,7 +129429,7 @@ paths: application/json: schema: type: array - items: *830 + items: *831 examples: default: value: @@ -129496,7 +129687,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 title: GPG Key description: A unique encryption key type: object @@ -129641,7 +129832,7 @@ paths: - subkeys - revoked examples: - default: &861 + default: &862 value: - id: 3 name: Octocat's GPG Key @@ -129726,9 +129917,9 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: &832 + default: &833 value: id: 3 name: Octocat's GPG Key @@ -129785,7 +129976,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: - - &833 + - &834 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -129797,9 +129988,9 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *832 + default: *833 '404': *6 '304': *35 '403': *27 @@ -129822,7 +130013,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: - - *833 + - *834 responses: '204': description: Response @@ -130024,7 +130215,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *275 + default: *276 headers: Link: *45 '404': *6 @@ -130050,7 +130241,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -130076,7 +130267,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -130110,12 +130301,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: *379 + default: *380 '204': description: Response when there are no restrictions x-github: @@ -130139,7 +130330,7 @@ paths: required: true content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -130150,7 +130341,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: default: value: @@ -130231,7 +130422,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -130244,7 +130435,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -130254,9 +130445,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -130289,7 +130480,7 @@ paths: application/json: schema: type: array - items: &834 + items: &835 title: Key description: Key type: object @@ -130392,9 +130583,9 @@ paths: description: Response content: application/json: - schema: *834 + schema: *835 examples: - default: &835 + default: &836 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -130427,15 +130618,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: - - *703 + - *704 responses: '200': description: Response content: application/json: - schema: *834 + schema: *835 examples: - default: *835 + default: *836 '404': *6 '304': *35 '403': *27 @@ -130458,7 +130649,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: - - *703 + - *704 responses: '204': description: Response @@ -130491,7 +130682,7 @@ paths: application/json: schema: type: array - items: &836 + items: &837 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -130559,7 +130750,7 @@ paths: - id - type - login - plan: *237 + plan: *238 required: - billing_cycle - next_billing_date @@ -130570,7 +130761,7 @@ paths: - account - plan examples: - default: &837 + default: &838 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -130632,9 +130823,9 @@ paths: application/json: schema: type: array - items: *836 + items: *837 examples: - default: *837 + default: *838 headers: Link: *45 '304': *35 @@ -130674,7 +130865,7 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: default: value: @@ -130788,7 +130979,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -130875,9 +131066,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: &838 + default: &839 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -130924,9 +131115,9 @@ paths: processed asynchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: *838 + default: *839 '403': *27 '404': *6 '422': *15 @@ -130955,7 +131146,7 @@ paths: application/json: schema: type: array - items: *396 + items: *397 examples: default: value: @@ -131217,7 +131408,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -131397,7 +131588,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *397 + - *398 - name: exclude in: query required: false @@ -131410,7 +131601,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -131604,7 +131795,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *397 + - *398 responses: '302': description: Response @@ -131630,7 +131821,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *397 + - *398 responses: '204': description: Response @@ -131659,8 +131850,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *397 - - *839 + - *398 + - *840 responses: '204': description: Response @@ -131684,7 +131875,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *397 + - *398 - *17 - *19 responses: @@ -131731,7 +131922,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 '304': *35 @@ -131773,7 +131964,7 @@ paths: - docker - nuget - container - - *840 + - *841 - *19 - *17 responses: @@ -131783,10 +131974,10 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *841 - '400': *842 + default: *842 + '400': *843 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131806,16 +131997,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: - - *403 - *404 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &862 + default: &863 value: id: 40201 name: octo-name @@ -131928,8 +132119,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: - - *403 - *404 + - *405 responses: '204': description: Response @@ -131959,8 +132150,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: - - *403 - *404 + - *405 - name: token description: package token schema: @@ -131992,8 +132183,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: - - *403 - *404 + - *405 - *19 - *17 - name: state @@ -132013,7 +132204,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -132062,15 +132253,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -132106,9 +132297,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -132138,9 +132329,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -132177,9 +132368,9 @@ paths: application/json: schema: type: array - items: *830 + items: *831 examples: - default: *843 + default: *844 headers: Link: *45 '304': *35 @@ -132292,7 +132483,7 @@ paths: type: array items: *78 examples: - default: &850 + default: &851 summary: Default response value: - id: 1296269 @@ -132610,9 +132801,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -132651,9 +132842,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: *844 + default: *845 headers: Link: *45 '304': *35 @@ -132676,7 +132867,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -132700,7 +132891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -132733,7 +132924,7 @@ paths: application/json: schema: type: array - items: &845 + items: &846 title: Social account description: Social media account type: object @@ -132750,7 +132941,7 @@ paths: - provider - url examples: - default: &846 + default: &847 value: - provider: twitter url: https://twitter.com/github @@ -132813,9 +133004,9 @@ paths: application/json: schema: type: array - items: *845 + items: *846 examples: - default: *846 + default: *847 '422': *15 '304': *35 '404': *6 @@ -132903,7 +133094,7 @@ paths: application/json: schema: type: array - items: &847 + items: &848 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -132923,7 +133114,7 @@ paths: - title - created_at examples: - default: &876 + default: &877 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -132988,9 +133179,9 @@ paths: description: Response content: application/json: - schema: *847 + schema: *848 examples: - default: &848 + default: &849 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -133020,7 +133211,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: - - &849 + - &850 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -133032,9 +133223,9 @@ paths: description: Response content: application/json: - schema: *847 + schema: *848 examples: - default: *848 + default: *849 '404': *6 '304': *35 '403': *27 @@ -133057,7 +133248,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: - - *849 + - *850 responses: '204': description: Response @@ -133086,7 +133277,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: - - &877 + - &878 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 @@ -133111,11 +133302,11 @@ paths: type: array items: *78 examples: - default-response: *850 + default-response: *851 application/vnd.github.v3.star+json: schema: type: array - items: &878 + items: &879 title: Starred Repository description: Starred Repository type: object @@ -133271,8 +133462,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: - - *474 - *475 + - *476 responses: '204': description: Response if this repository is starred by you @@ -133300,8 +133491,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -133325,8 +133516,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -133359,9 +133550,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 '304': *35 @@ -133398,7 +133589,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -133476,7 +133667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *239 + - *240 responses: '200': description: Response @@ -133484,10 +133675,10 @@ paths: application/json: schema: oneOf: - - *825 - - *851 + - *826 + - *852 examples: - default-response: &855 + default-response: &856 summary: Default response value: login: octocat @@ -133522,7 +133713,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &856 + response-with-git-hub-plan-information: &857 summary: Response with GitHub plan information value: login: octocat @@ -133579,14 +133770,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &853 + - &854 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -133620,9 +133811,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - draft_issue: *425 + draft_issue: *426 '304': *35 '403': *27 '401': *23 @@ -133645,7 +133836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *852 + - *853 - *17 responses: '200': @@ -133680,8 +133871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *853 - - *419 + - *854 + - *420 requestBody: required: true content: @@ -133755,17 +133946,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *854 + schema: *855 examples: table_view: summary: Response for creating a table view - value: *429 + value: *430 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -133807,11 +133998,11 @@ paths: application/json: schema: oneOf: - - *825 - - *851 + - *826 + - *852 examples: - default-response: *855 - response-with-git-hub-plan-information: *856 + default-response: *856 + response-with-git-hub-plan-information: *857 '404': *6 x-github: githubCloudOnly: false @@ -133861,8 +134052,8 @@ paths: required: - subject_digests examples: - default: *857 - withPredicateType: *858 + default: *858 + withPredicateType: *859 responses: '200': description: Response @@ -133902,7 +134093,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *859 + default: *860 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -134091,12 +134282,12 @@ paths: initiator: type: string examples: - default: *520 + default: *521 '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -134158,7 +134349,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *328 + items: *329 examples: default: summary: Example response for listing user copilot spaces @@ -134373,9 +134564,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &860 + default: &861 summary: Example response for a user copilot space value: id: 42 @@ -134474,9 +134665,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 x-github: @@ -134600,9 +134791,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 '422': *15 @@ -134679,7 +134870,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *330 + items: *331 examples: default: value: @@ -134822,7 +135013,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -134933,7 +135124,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -135063,7 +135254,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *331 + items: *332 examples: default: value: @@ -135155,7 +135346,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135171,7 +135362,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135224,7 +135415,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135291,7 +135482,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -135368,9 +135559,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *841 + default: *842 '403': *27 '401': *23 x-github: @@ -135403,7 +135594,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -135476,7 +135667,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -135563,7 +135754,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -135711,7 +135902,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *143 - - *226 + - *227 - *17 - *19 responses: @@ -135721,9 +135912,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -135754,9 +135945,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: *861 + default: *862 headers: Link: *45 x-github: @@ -135860,7 +136051,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -135946,7 +136137,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 x-github: @@ -135985,7 +136176,7 @@ paths: - docker - nuget - container - - *840 + - *841 - *143 - *19 - *17 @@ -135996,12 +136187,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *841 + default: *842 '403': *27 '401': *23 - '400': *842 + '400': *843 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -136021,17 +136212,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *862 + default: *863 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -136052,8 +136243,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '204': @@ -136086,8 +136277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 - name: token description: package token @@ -136120,8 +136311,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-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': @@ -136130,7 +136321,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -136188,16 +136379,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: - - *403 - *404 - - *406 + - *405 + - *407 - *143 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -136232,10 +136423,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -136267,10 +136458,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -136311,9 +136502,9 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -136335,16 +136526,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *419 + - *420 - *143 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -136366,7 +136557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *419 + - *420 - *143 - *17 - *108 @@ -136378,9 +136569,9 @@ paths: application/json: schema: type: array - items: *422 + items: *423 examples: - default: *863 + default: *864 headers: Link: *45 '304': *35 @@ -136402,7 +136593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true content: @@ -136440,7 +136631,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *864 + items: *865 required: - name - data_type @@ -136456,7 +136647,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *865 + iteration_configuration: *866 required: - name - data_type @@ -136478,20 +136669,20 @@ paths: value: name: Due date data_type: date - single_select_field: *866 - iteration_field: *867 + single_select_field: *867 + iteration_field: *868 responses: '201': description: Response content: application/json: - schema: *422 + schema: *423 examples: - text_field: *868 - number_field: *869 - date_field: *870 - single_select_field: *871 - iteration_field: *872 + text_field: *869 + number_field: *870 + date_field: *871 + single_select_field: *872 + iteration_field: *873 '304': *35 '403': *27 '401': *23 @@ -136512,17 +136703,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *419 - - *873 + - *420 + - *874 - *143 responses: '200': description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: *874 + default: *875 headers: Link: *45 '304': *35 @@ -136545,7 +136736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *419 + - *420 - *143 - *108 - *109 @@ -136578,9 +136769,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -136602,7 +136793,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -136672,22 +136863,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -136707,9 +136898,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: - - *419 + - *420 - *143 - - *428 + - *429 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -136729,9 +136920,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -136752,9 +136943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -136827,13 +137018,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -136853,9 +137044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 responses: '204': description: Response @@ -136877,9 +137068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *419 + - *420 - *143 - - *875 + - *876 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -136905,9 +137096,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -136945,7 +137136,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -137020,7 +137211,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -137126,9 +137317,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 x-github: @@ -137158,9 +137349,9 @@ paths: application/json: schema: type: array - items: *845 + items: *846 examples: - default: *846 + default: *847 headers: Link: *45 x-github: @@ -137190,9 +137381,9 @@ paths: application/json: schema: type: array - items: *847 + items: *848 examples: - default: *876 + default: *877 headers: Link: *45 x-github: @@ -137217,7 +137408,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *143 - - *877 + - *878 - *110 - *17 - *19 @@ -137229,11 +137420,11 @@ paths: schema: anyOf: - type: array - items: *878 + items: *879 - type: array items: *78 examples: - default-response: *850 + default-response: *851 headers: Link: *45 x-github: @@ -137262,9 +137453,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *414 + default: *415 headers: Link: *45 x-github: @@ -137393,7 +137584,7 @@ webhooks: type: string enum: - disabled - enterprise: &879 + enterprise: &880 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -137462,7 +137653,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &880 + installation: &881 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -137483,7 +137674,7 @@ webhooks: required: - id - node_id - organization: &881 + organization: &882 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -137556,7 +137747,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &882 + repository: &883 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -137585,7 +137776,7 @@ webhooks: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -138471,10 +138662,10 @@ webhooks: type: string enum: - enabled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -138550,11 +138741,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: &883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: &884 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) @@ -138777,11 +138968,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -138969,11 +139160,11 @@ webhooks: - everyone required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -139046,7 +139237,7 @@ webhooks: required: true content: application/json: - schema: &903 + schema: &904 title: Exemption request cancellation event type: object properties: @@ -139054,11 +139245,11 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: &884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: &885 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -139367,7 +139558,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &885 + items: &886 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -139479,7 +139670,7 @@ webhooks: required: true content: application/json: - schema: &904 + schema: &905 title: Exemption request completed event type: object properties: @@ -139487,11 +139678,11 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -139563,7 +139754,7 @@ webhooks: required: true content: application/json: - schema: &901 + schema: &902 title: Exemption request created event type: object properties: @@ -139571,11 +139762,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -139647,7 +139838,7 @@ webhooks: required: true content: application/json: - schema: &905 + schema: &906 title: Exemption response dismissed event type: object properties: @@ -139655,12 +139846,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -139734,7 +139925,7 @@ webhooks: required: true content: application/json: - schema: &902 + schema: &903 title: Exemption response submitted event type: object properties: @@ -139742,12 +139933,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -139831,7 +140022,7 @@ webhooks: type: string enum: - completed - check_run: &887 + check_run: &888 title: CheckRun description: A check performed on the code of a given code change type: object @@ -139896,8 +140087,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *224 - repository: *280 + items: *225 + repository: *281 status: type: string enum: @@ -139941,7 +140132,7 @@ webhooks: - examples: - neutral - deployment: *886 + deployment: *887 details_url: type: string examples: @@ -140001,7 +140192,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *224 + items: *225 started_at: type: string format: date-time @@ -140039,10 +140230,10 @@ webhooks: - output - app - pull_requests - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -140433,11 +140624,11 @@ webhooks: type: string enum: - created - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -140831,11 +141022,11 @@ webhooks: type: string enum: - requested_action - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 requested_action: description: The action requested by the user. type: object @@ -141238,11 +141429,11 @@ webhooks: type: string enum: - rerequested - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -142227,10 +142418,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -142944,10 +143135,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -143655,10 +143846,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -143827,7 +144018,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -143979,20 +144170,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &888 + commit_oid: &889 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: *879 - installation: *880 - organization: *881 - ref: &889 + enterprise: *880 + installation: *881 + organization: *882 + ref: &890 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: *882 + repository: *883 sender: *4 required: - action @@ -144159,7 +144350,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -144400,12 +144591,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -144503,7 +144694,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -144688,12 +144879,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -144862,7 +145053,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -145039,12 +145230,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -145145,7 +145336,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -145334,9 +145525,9 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -145344,7 +145535,7 @@ webhooks: type: - string - 'null' - repository: *882 + repository: *883 sender: *4 required: - action @@ -145443,7 +145634,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -145590,12 +145781,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -145764,7 +145955,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -145916,10 +146107,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -146179,10 +146370,10 @@ webhooks: - updated_at - author_association - body - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -146263,18 +146454,18 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *881 - pusher_type: &890 + organization: *882 + pusher_type: &891 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &891 + ref: &892 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -146284,7 +146475,7 @@ webhooks: enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -146367,9 +146558,9 @@ webhooks: enum: - created definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146454,9 +146645,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146534,9 +146725,9 @@ webhooks: enum: - promote_to_enterprise definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146614,9 +146805,9 @@ webhooks: enum: - updated definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -146693,10 +146884,10 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - repository: *882 - organization: *881 + enterprise: *880 + installation: *881 + repository: *883 + organization: *882 sender: *4 new_property_values: type: array @@ -146781,18 +146972,18 @@ webhooks: title: delete event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - pusher_type: *890 - ref: *891 + enterprise: *880 + installation: *881 + organization: *882 + pusher_type: *891 + ref: *892 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -146872,11 +147063,11 @@ webhooks: type: string enum: - assignees_changed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -146956,11 +147147,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147041,11 +147232,11 @@ webhooks: type: string enum: - auto_reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147126,11 +147317,11 @@ webhooks: type: string enum: - created - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147209,11 +147400,11 @@ webhooks: type: string enum: - dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147292,11 +147483,11 @@ webhooks: type: string enum: - fixed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147376,11 +147567,11 @@ webhooks: type: string enum: - reintroduced - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147459,11 +147650,11 @@ webhooks: type: string enum: - reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -147540,9 +147731,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - key: &892 + enterprise: *880 + installation: *881 + key: &893 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -147580,8 +147771,8 @@ webhooks: - verified - created_at - read_only - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -147658,11 +147849,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - key: *892 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + key: *893 + organization: *882 + repository: *883 sender: *4 required: - action @@ -148229,12 +148420,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: &896 + workflow: &897 title: Workflow type: - object @@ -148985,13 +149176,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *615 + - *616 pull_requests: type: array - items: *723 - repository: *882 - organization: *881 - installation: *880 + items: *724 + repository: *883 + organization: *882 + installation: *881 sender: *4 responses: '200': @@ -149062,7 +149253,7 @@ webhooks: type: string enum: - approved - approver: &893 + approver: &894 type: object properties: avatar_url: @@ -149105,11 +149296,11 @@ webhooks: type: string comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: &894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: &895 type: array items: type: object @@ -149190,7 +149381,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &895 + workflow_job_run: &896 type: object properties: conclusion: @@ -149936,18 +150127,18 @@ webhooks: type: string enum: - rejected - approver: *893 + approver: *894 comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: *894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: *895 sender: *4 since: type: string - workflow_job_run: *895 + workflow_job_run: *896 workflow_job_runs: type: array items: @@ -150664,13 +150855,13 @@ webhooks: type: string enum: - requested - enterprise: *879 + enterprise: *880 environment: type: string - installation: *880 - organization: *881 - repository: *882 - requestor: &906 + installation: *881 + organization: *882 + repository: *883 + requestor: &907 title: User type: - object @@ -152603,12 +152794,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Deployment Workflow Run type: @@ -153299,7 +153490,7 @@ webhooks: type: string enum: - answered - answer: &899 + answer: &900 type: object properties: author_association: @@ -153459,11 +153650,11 @@ webhooks: - created_at - updated_at - body - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -153590,11 +153781,11 @@ webhooks: - from required: - category - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -153677,11 +153868,11 @@ webhooks: type: string enum: - closed - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -153763,7 +153954,7 @@ webhooks: type: string enum: - created - comment: &898 + comment: &899 type: object properties: author_association: @@ -153923,11 +154114,11 @@ webhooks: - updated_at - body - reactions - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154010,12 +154201,12 @@ webhooks: type: string enum: - deleted - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154110,12 +154301,12 @@ webhooks: - from required: - body - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154199,11 +154390,11 @@ webhooks: type: string enum: - created - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154285,11 +154476,11 @@ webhooks: type: string enum: - deleted - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154389,11 +154580,11 @@ webhooks: type: string required: - from - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154475,10 +154666,10 @@ webhooks: type: string enum: - labeled - discussion: *897 - enterprise: *879 - installation: *880 - label: &900 + discussion: *898 + enterprise: *880 + installation: *881 + label: &901 title: Label type: object properties: @@ -154511,8 +154702,8 @@ webhooks: - color - default - description - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154595,11 +154786,11 @@ webhooks: type: string enum: - locked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154681,11 +154872,11 @@ webhooks: type: string enum: - pinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154767,11 +154958,11 @@ webhooks: type: string enum: - reopened - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154856,16 +155047,16 @@ webhooks: changes: type: object properties: - new_discussion: *897 - new_repository: *882 + new_discussion: *898 + new_repository: *883 required: - new_discussion - new_repository - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -154948,10 +155139,10 @@ webhooks: type: string enum: - unanswered - discussion: *897 - old_answer: *899 - organization: *881 - repository: *882 + discussion: *898 + old_answer: *900 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155033,12 +155224,12 @@ webhooks: type: string enum: - unlabeled - discussion: *897 - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155121,11 +155312,11 @@ webhooks: type: string enum: - unlocked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155207,11 +155398,11 @@ webhooks: type: string enum: - unpinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155280,7 +155471,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155343,7 +155534,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155406,7 +155597,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155469,7 +155660,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155532,7 +155723,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155598,7 +155789,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155664,7 +155855,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155730,7 +155921,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155796,7 +155987,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155862,7 +156053,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155927,7 +156118,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -155992,7 +156183,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156057,7 +156248,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156122,7 +156313,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156188,7 +156379,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156255,7 +156446,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *879 + enterprise: *880 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -156933,9 +157124,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - forkee @@ -157081,9 +157272,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pages: description: The pages that were updated. type: array @@ -157121,7 +157312,7 @@ webhooks: - action - sha - html_url - repository: *882 + repository: *883 sender: *4 required: - pages @@ -157197,10 +157388,10 @@ webhooks: type: string enum: - created - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: &907 + organization: *882 + repositories: &908 description: An array of repository objects that the installation can access. type: array @@ -157226,8 +157417,8 @@ webhooks: - name - full_name - private - repository: *882 - requester: *906 + repository: *883 + requester: *907 sender: *4 required: - action @@ -157302,11 +157493,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -157383,11 +157574,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -157464,10 +157655,10 @@ webhooks: type: string enum: - added - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: &908 + organization: *882 + repositories_added: &909 description: An array of repository objects, which were added to the installation. type: array @@ -157513,15 +157704,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *882 - repository_selection: &909 + repository: *883 + repository_selection: &910 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *906 + requester: *907 sender: *4 required: - action @@ -157600,10 +157791,10 @@ webhooks: type: string enum: - removed - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: *908 + organization: *882 + repositories_added: *909 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -157630,9 +157821,9 @@ webhooks: - name - full_name - private - repository: *882 - repository_selection: *909 - requester: *906 + repository: *883 + repository_selection: *910 + requester: *907 sender: *4 required: - action @@ -157711,11 +157902,11 @@ webhooks: type: string enum: - suspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -157898,10 +158089,10 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 target_type: type: string @@ -157980,11 +158171,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -158150,11 +158341,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 user: title: User type: @@ -158240,8 +158431,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159053,8 +159244,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159071,7 +159262,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -159415,8 +159606,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -159496,7 +159687,7 @@ webhooks: type: string enum: - deleted - comment: &910 + comment: &911 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -159653,11 +159844,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - url - html_url @@ -159671,8 +159862,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160480,8 +160671,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160498,7 +160689,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -160844,8 +161035,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -160925,7 +161116,7 @@ webhooks: type: string enum: - edited - changes: &934 + changes: &935 description: The changes to the comment. type: object properties: @@ -160937,9 +161128,9 @@ webhooks: type: string required: - from - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161750,8 +161941,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161768,7 +161959,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -162112,8 +162303,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -162194,9 +162385,9 @@ webhooks: type: string enum: - pinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163009,8 +163200,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163027,7 +163218,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -163373,8 +163564,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -163454,9 +163645,9 @@ webhooks: type: string enum: - unpinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -164269,8 +164460,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164287,7 +164478,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -164633,8 +164824,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -164717,15 +164908,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -164808,15 +164999,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -164898,15 +165089,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -164989,15 +165180,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -165077,10 +165268,10 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - issue: &911 + assignee: *907 + enterprise: *880 + installation: *881 + issue: &912 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -165890,12 +166081,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165912,7 +166103,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -166015,8 +166206,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166096,8 +166287,8 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -166912,12 +167103,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166934,7 +167125,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -167180,8 +167371,8 @@ webhooks: required: - state - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -167260,8 +167451,8 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168067,12 +168258,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168089,7 +168280,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -168191,8 +168382,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -168271,8 +168462,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169101,12 +169292,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169123,7 +169314,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -169204,7 +169395,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &912 + milestone: &913 title: Milestone description: A collection of related issues and pull requests. type: object @@ -169347,8 +169538,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -169447,8 +169638,8 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170258,12 +170449,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170277,7 +170468,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -170383,9 +170574,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -170465,9 +170656,9 @@ webhooks: type: string enum: - field_added - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was set or updated on the @@ -170633,8 +170824,8 @@ webhooks: - id required: - from - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -170714,9 +170905,9 @@ webhooks: type: string enum: - field_removed - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -170803,8 +170994,8 @@ webhooks: - 'null' required: - id - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -170884,8 +171075,8 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171694,12 +171885,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171713,7 +171904,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -171819,9 +172010,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -171901,8 +172092,8 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172736,12 +172927,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172755,7 +172946,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -172838,8 +173029,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -172918,8 +173109,8 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173747,12 +173938,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173769,7 +173960,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -173849,9 +174040,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *912 - organization: *881 - repository: *882 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -174738,11 +174929,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174769,7 +174960,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -174842,7 +175033,7 @@ webhooks: required: - login - id - type: *386 + type: *387 required: - id - number @@ -175334,8 +175525,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176142,11 +176333,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176163,7 +176354,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -176174,7 +176365,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -176269,8 +176460,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -176350,9 +176541,9 @@ webhooks: type: string enum: - pinned - enterprise: *879 - installation: *880 - issue: &913 + enterprise: *880 + installation: *881 + issue: &914 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -177156,12 +177347,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177178,7 +177369,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -177280,8 +177471,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -177360,8 +177551,8 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -178193,12 +178384,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178295,9 +178486,9 @@ webhooks: format: uri user_view_type: type: string - type: *386 - organization: *881 - repository: *882 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -179184,12 +179375,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179206,7 +179397,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -179799,11 +179990,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -179883,12 +180074,12 @@ webhooks: type: string enum: - typed - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -179969,7 +180160,7 @@ webhooks: type: string enum: - unassigned - assignee: &937 + assignee: &938 title: User type: - object @@ -180041,11 +180232,11 @@ webhooks: required: - login - id - enterprise: *879 - installation: *880 - issue: *911 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180124,12 +180315,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - issue: *911 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180209,8 +180400,8 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -181042,12 +181233,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -181064,7 +181255,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -181144,8 +181335,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181225,11 +181416,11 @@ webhooks: type: string enum: - unpinned - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181308,12 +181499,12 @@ webhooks: type: string enum: - untyped - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181393,11 +181584,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181475,11 +181666,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181589,11 +181780,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181675,9 +181866,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: &914 + enterprise: *880 + installation: *881 + marketplace_purchase: &915 title: Marketplace Purchase type: object required: @@ -181765,8 +181956,8 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: &915 + organization: *882 + previous_marketplace_purchase: &916 title: Marketplace Purchase type: object properties: @@ -181850,7 +182041,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -181930,10 +182121,10 @@ webhooks: - changed effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -182021,7 +182212,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -182103,10 +182294,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -182192,7 +182383,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -182273,8 +182464,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 marketplace_purchase: title: Marketplace Purchase type: object @@ -182360,9 +182551,9 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -182442,12 +182633,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -182549,11 +182740,11 @@ webhooks: type: string required: - to - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182655,11 +182846,11 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182738,11 +182929,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182820,11 +183011,11 @@ webhooks: type: string enum: - added - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -182902,7 +183093,7 @@ webhooks: required: - login - id - team: &916 + team: &917 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -183132,11 +183323,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -183215,7 +183406,7 @@ webhooks: required: - login - id - team: *916 + team: *917 required: - action - scope @@ -183297,8 +183488,8 @@ webhooks: type: string enum: - checks_requested - installation: *880 - merge_group: &917 + installation: *881 + merge_group: &918 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -183317,15 +183508,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *540 + head_commit: *541 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183411,10 +183602,10 @@ webhooks: - merged - invalidated - dequeued - installation: *880 - merge_group: *917 - organization: *881 - repository: *882 + installation: *881 + merge_group: *918 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183487,7 +183678,7 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -183596,12 +183787,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *880 - organization: *881 + installation: *881 + organization: *882 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -183681,11 +183872,11 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183764,9 +183955,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - milestone: &918 + enterprise: *880 + installation: *881 + milestone: &919 title: Milestone description: A collection of related issues and pull requests. type: object @@ -183908,8 +184099,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183988,11 +184179,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184102,11 +184293,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184186,11 +184377,11 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - milestone: *918 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *919 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184269,11 +184460,11 @@ webhooks: type: string enum: - blocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184352,11 +184543,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184432,7 +184623,7 @@ webhooks: enum: - created definition: *151 - enterprise: *879 + enterprise: *880 sender: *4 required: - action @@ -184512,8 +184703,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -184586,8 +184777,8 @@ webhooks: enum: - updated definition: *151 - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -184659,9 +184850,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 new_property_values: type: array @@ -184749,9 +184940,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - membership: &919 + enterprise: *880 + installation: *881 + membership: &920 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -184861,8 +185052,8 @@ webhooks: - role - organization_url - user - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184940,11 +185131,11 @@ webhooks: type: string enum: - member_added - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185023,8 +185214,8 @@ webhooks: type: string enum: - member_invited - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -185146,10 +185337,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 - user: *906 + user: *907 required: - action - invitation @@ -185227,11 +185418,11 @@ webhooks: type: string enum: - member_removed - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185318,11 +185509,11 @@ webhooks: properties: from: type: string - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185400,9 +185591,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -185925,7 +186116,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &920 + items: &921 title: Ruby Gems metadata type: object properties: @@ -186022,7 +186213,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -186099,9 +186290,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -186463,7 +186654,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 source_url: type: string format: uri @@ -186534,7 +186725,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -186714,12 +186905,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *879 + enterprise: *880 id: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - id @@ -186796,7 +186987,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &921 + personal_access_token_request: &922 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -186946,10 +187137,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *879 - organization: *881 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187026,11 +187217,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187106,11 +187297,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187185,11 +187376,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *921 - organization: *881 - enterprise: *879 + personal_access_token_request: *922 + organization: *882 + enterprise: *880 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -187294,7 +187485,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *922 + last_response: *923 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -187326,8 +187517,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 zen: description: Random string of GitHub zen. @@ -187572,10 +187763,10 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: &923 + enterprise: *880 + installation: *881 + organization: *882 + project_card: &924 title: Project Card type: object properties: @@ -187698,7 +187889,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -187779,11 +187970,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -187863,9 +188054,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: title: Project Card type: object @@ -187995,7 +188186,7 @@ webhooks: repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -188089,11 +188280,11 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -188187,9 +188378,9 @@ webhooks: - from required: - column_id - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: allOf: - title: Project Card @@ -188386,7 +188577,7 @@ webhooks: type: string required: - after_id - repository: *882 + repository: *883 sender: *4 required: - action @@ -188466,10 +188657,10 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - organization: *881 - project: &925 + enterprise: *880 + installation: *881 + organization: *882 + project: &926 title: Project type: object properties: @@ -188596,7 +188787,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -188676,10 +188867,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_column: &924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: &925 title: Project Column type: object properties: @@ -188719,7 +188910,7 @@ webhooks: - name - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -188798,14 +188989,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -188894,11 +189085,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -188978,11 +189169,11 @@ webhooks: type: string enum: - moved - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -189062,11 +189253,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189146,14 +189337,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project: *925 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -189254,11 +189445,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189337,11 +189528,11 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -189422,9 +189613,9 @@ webhooks: type: string enum: - closed - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -189505,9 +189696,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -189588,9 +189779,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -189711,9 +189902,9 @@ webhooks: type: string to: type: string - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -189796,7 +189987,7 @@ webhooks: type: string enum: - archived - changes: &929 + changes: &930 type: object properties: archived_at: @@ -189812,9 +190003,9 @@ webhooks: - string - 'null' format: date-time - installation: *880 - organization: *881 - projects_v2_item: &926 + installation: *881 + organization: *882 + projects_v2_item: &927 title: Projects v2 Item description: An item belonging to a project type: object @@ -189832,7 +190023,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *423 + content_type: *424 creator: *4 created_at: type: string @@ -189954,9 +190145,9 @@ webhooks: - 'null' to: type: string - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190038,9 +190229,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190121,9 +190312,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190228,7 +190419,7 @@ webhooks: oneOf: - type: string - type: integer - - &927 + - &928 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -190252,7 +190443,7 @@ webhooks: required: - id - name - - &928 + - &929 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -190292,8 +190483,8 @@ webhooks: oneOf: - type: string - type: integer - - *927 - *928 + - *929 type: - 'null' - string @@ -190316,9 +190507,9 @@ webhooks: - 'null' required: - body - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190415,9 +190606,9 @@ webhooks: type: - string - 'null' - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190500,10 +190691,10 @@ webhooks: type: string enum: - restored - changes: *929 - installation: *880 - organization: *881 - projects_v2_item: *926 + changes: *930 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -190585,9 +190776,9 @@ webhooks: type: string enum: - reopened - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -190668,9 +190859,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -190751,9 +190942,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -190899,9 +191090,9 @@ webhooks: - string - 'null' format: date - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -190972,10 +191163,10 @@ webhooks: title: public event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - repository @@ -191052,13 +191243,13 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - number: &931 + assignee: *907 + enterprise: *880 + installation: *881 + number: &932 description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -193410,7 +193601,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -193492,11 +193683,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -195841,7 +196032,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -195923,11 +196114,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -198272,7 +198463,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -198354,13 +198545,13 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: &932 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: &933 allOf: - - *723 + - *724 - type: object properties: allow_auto_merge: @@ -198422,7 +198613,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *882 + repository: *883 sender: *4 required: - action @@ -198503,12 +198694,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -198588,11 +198779,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: &933 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: &934 title: Pull Request type: object properties: @@ -200936,7 +201127,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -201015,11 +201206,11 @@ webhooks: type: string enum: - dequeued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -203382,7 +203573,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *882 + repository: *883 sender: *4 required: - action @@ -203506,12 +203697,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -203591,11 +203782,11 @@ webhooks: type: string enum: - enqueued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -205943,7 +206134,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -206023,11 +206214,11 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -208378,7 +208569,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -208459,10 +208650,10 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -210811,7 +211002,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -210891,12 +211082,12 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: *933 - repository: *882 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: *934 + repository: *883 sender: *4 required: - action @@ -210975,12 +211166,12 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -211061,12 +211252,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -211146,12 +211337,12 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -211526,9 +211717,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -213761,7 +213952,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -213841,7 +214032,7 @@ webhooks: type: string enum: - deleted - comment: &935 + comment: &936 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. @@ -214134,9 +214325,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -216357,7 +216548,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -216437,11 +216628,11 @@ webhooks: type: string enum: - edited - changes: *934 - comment: *935 - enterprise: *879 - installation: *880 - organization: *881 + changes: *935 + comment: *936 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -218665,7 +218856,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -218746,9 +218937,9 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -220984,7 +221175,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 review: description: The review that was affected. type: object @@ -221235,9 +221426,9 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -223346,8 +223537,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: &936 + repository: *883 + review: &937 description: The review that was affected. type: object properties: @@ -223585,12 +223776,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -225940,7 +226131,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -226026,12 +226217,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -228388,7 +228579,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -228583,12 +228774,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -230940,7 +231131,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -231027,12 +231218,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -233375,7 +233566,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -233559,9 +233750,9 @@ webhooks: type: string enum: - submitted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -235800,8 +235991,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: *936 + repository: *883 + review: *937 sender: *4 required: - action @@ -235881,9 +236072,9 @@ webhooks: type: string enum: - resolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -238031,7 +238222,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -238428,9 +238619,9 @@ webhooks: type: string enum: - unresolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -240561,7 +240752,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -240954,10 +241145,10 @@ webhooks: type: string enum: - stacked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -243308,7 +243499,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -243394,10 +243585,10 @@ webhooks: type: string before: type: string - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -245735,7 +245926,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -245817,11 +246008,11 @@ webhooks: type: string enum: - unassigned - assignee: *937 - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + assignee: *938 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -248174,7 +248365,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -248253,11 +248444,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -250599,7 +250790,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -250680,10 +250871,10 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -253015,7 +253206,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -253218,7 +253409,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *879 + enterprise: *880 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -253313,8 +253504,8 @@ webhooks: - url - author - committer - installation: *880 - organization: *881 + installation: *881 + organization: *882 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -253913,9 +254104,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -254392,7 +254583,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -254448,7 +254639,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -254526,9 +254717,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -254840,7 +255031,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -254890,7 +255081,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -254967,10 +255158,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - release: &938 + enterprise: *880 + installation: *881 + organization: *882 + release: &939 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -255301,7 +255492,7 @@ webhooks: - updated_at - zipball_url - body - repository: *882 + repository: *883 sender: *4 required: - action @@ -255378,11 +255569,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -255499,11 +255690,11 @@ webhooks: type: boolean required: - to - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -255581,9 +255772,9 @@ webhooks: type: string enum: - prereleased - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -255919,7 +256110,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -255995,10 +256186,10 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - release: &939 + enterprise: *880 + installation: *881 + organization: *882 + release: &940 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -256331,7 +256522,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -256407,11 +256598,11 @@ webhooks: type: string enum: - released - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -256487,11 +256678,11 @@ webhooks: type: string enum: - unpublished - enterprise: *879 - installation: *880 - organization: *881 - release: *939 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *940 + repository: *883 sender: *4 required: - action @@ -256567,11 +256758,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -256647,11 +256838,11 @@ webhooks: type: string enum: - reported - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -256727,10 +256918,10 @@ webhooks: type: string enum: - archived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -256807,10 +256998,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -256888,10 +257079,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -256976,10 +257167,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257094,10 +257285,10 @@ webhooks: - 'null' items: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257169,10 +257360,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 status: type: string @@ -257253,10 +257444,10 @@ webhooks: type: string enum: - privatized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257333,10 +257524,10 @@ webhooks: type: string enum: - publicized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257430,10 +257621,10 @@ webhooks: - name required: - repository - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -257513,10 +257704,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -257595,10 +257786,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -257677,10 +257868,10 @@ webhooks: type: string enum: - edited - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 changes: type: object @@ -257742,16 +257933,16 @@ webhooks: properties: added: type: array - items: *744 + items: *745 deleted: type: array - items: *744 + items: *745 updated: type: array items: type: object properties: - rule: *744 + rule: *745 changes: type: object properties: @@ -257988,10 +258179,10 @@ webhooks: - from required: - owner - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258069,10 +258260,10 @@ webhooks: type: string enum: - unarchived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258150,7 +258341,7 @@ webhooks: type: string enum: - create - alert: &940 + alert: &941 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -258275,10 +258466,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258488,10 +258679,10 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258569,11 +258760,11 @@ webhooks: type: string enum: - reopen - alert: *940 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *941 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258775,10 +258966,10 @@ webhooks: enum: - fixed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258856,7 +259047,7 @@ webhooks: type: string enum: - assigned - alert: &942 + alert: &943 type: object properties: number: *130 @@ -258995,12 +259186,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *941 + metadata: *942 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259078,11 +259269,11 @@ webhooks: type: string enum: - created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259163,11 +259354,11 @@ webhooks: type: string enum: - created - alert: *942 - installation: *880 - location: *943 - organization: *881 - repository: *882 + alert: *943 + installation: *881 + location: *944 + organization: *882 + repository: *883 sender: *4 required: - location @@ -259405,11 +259596,11 @@ webhooks: type: string enum: - metadata_created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259486,11 +259677,11 @@ webhooks: type: string enum: - metadata_removed - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259567,11 +259758,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259649,11 +259840,11 @@ webhooks: type: string enum: - reopened - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259731,11 +259922,11 @@ webhooks: type: string enum: - resolved - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259813,12 +260004,12 @@ webhooks: type: string enum: - unassigned - alert: *942 + alert: *943 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259896,11 +260087,11 @@ webhooks: type: string enum: - validated - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260030,10 +260221,10 @@ webhooks: - organization - enterprise - - repository: *882 - enterprise: *879 - installation: *880 - organization: *881 + repository: *883 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -260111,11 +260302,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: &944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: &945 description: The details of the security advisory, including summary, description, and severity. type: object @@ -260288,11 +260479,11 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: *944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: *945 sender: *4 required: - action @@ -260365,10 +260556,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -260541,11 +260732,11 @@ webhooks: from: type: object properties: - security_and_analysis: *431 - enterprise: *879 - installation: *880 - organization: *881 - repository: *479 + security_and_analysis: *432 + enterprise: *880 + installation: *881 + organization: *882 + repository: *480 sender: *4 required: - changes @@ -260623,12 +260814,12 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: &945 + sponsorship: &946 type: object properties: created_at: @@ -260933,12 +261124,12 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -261026,12 +261217,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -261108,17 +261299,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &946 + effective_date: &947 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: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -261192,7 +261383,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &947 + changes: &948 type: object properties: tier: @@ -261236,13 +261427,13 @@ webhooks: - from required: - tier - effective_date: *946 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + effective_date: *947 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -261319,13 +261510,13 @@ webhooks: type: string enum: - tier_changed - changes: *947 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + changes: *948 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -261399,10 +261590,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -261486,10 +261677,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -261923,15 +262114,15 @@ webhooks: type: - string - 'null' - enterprise: *879 + enterprise: *880 id: description: The unique identifier of the status. type: integer - installation: *880 + installation: *881 name: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 sha: description: The Commit SHA. @@ -262041,15 +262232,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262132,15 +262323,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262223,15 +262414,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262314,15 +262505,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262398,12 +262589,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - team: &948 + team: &949 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -262633,9 +262824,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -263105,7 +263296,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -263181,9 +263372,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -263653,7 +263844,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -263730,9 +263921,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -264202,7 +264393,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -264346,9 +264537,9 @@ webhooks: - from required: - permissions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -264818,7 +265009,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - changes @@ -264896,9 +265087,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -265368,7 +265559,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -265444,10 +265635,10 @@ webhooks: type: string enum: - started - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -265520,17 +265711,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *879 + enterprise: *880 inputs: type: - object - 'null' additionalProperties: true - installation: *880 - organization: *881 + installation: *881 + organization: *882 ref: type: string - repository: *882 + repository: *883 sender: *4 workflow: type: string @@ -265612,10 +265803,10 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -265871,7 +266062,7 @@ webhooks: type: string required: - conclusion - deployment: *615 + deployment: *616 required: - action - repository @@ -265950,10 +266141,10 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -266235,7 +266426,7 @@ webhooks: required: - status - steps - deployment: *615 + deployment: *616 required: - action - repository @@ -266314,10 +266505,10 @@ webhooks: type: string enum: - queued - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -266463,7 +266654,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -266542,10 +266733,10 @@ webhooks: type: string enum: - waiting - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -266692,7 +266883,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -266772,12 +266963,12 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -267796,12 +267987,12 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -268805,12 +268996,12 @@ webhooks: type: string enum: - requested - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 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 e717ac33b..782f7dd95 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -89444,6 +89444,584 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "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": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + } + } + } + } + }, + "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" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, + "examples": { + "default": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + } + } + } + } + }, + "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" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error", + "description": "Validation Error", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "object", + "required": [ + "code" + ], + "properties": { + "resource": { + "type": "string" + }, + "field": { + "type": "string" + }, + "message": { + "type": "string" + }, + "code": { + "type": "string" + }, + "index": { + "type": "integer" + }, + "value": { + "oneOf": [ + { + "type": [ + "string", + "null" + ] + }, + { + "type": [ + "integer", + "null" + ] + }, + { + "type": [ + "array", + "null" + ], + "items": { + "type": "string" + } + } + ] + } + } + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index ea538cfc9..bb79f8884 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -946,7 +946,7 @@ paths: - subscriptions_url - type - url - type: &458 + type: &459 type: string description: The type of credit the user is receiving. enum: @@ -1106,7 +1106,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &256 + schema: &257 title: Validation Error Simple description: Validation Error Simple type: object @@ -1139,7 +1139,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: - - &779 + - &780 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4261,7 +4261,7 @@ paths: schema: type: integer default: 30 - - &359 + - &360 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 @@ -4270,7 +4270,7 @@ paths: required: false schema: type: string - - &360 + - &361 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4290,7 +4290,7 @@ paths: application/json: schema: type: array - items: &361 + items: &362 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4386,7 +4386,7 @@ paths: - installation_id - repository_id examples: - default: &362 + default: &363 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4418,7 +4418,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &788 + schema: &789 title: Scim Error description: Scim Error type: object @@ -4449,7 +4449,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &255 + schema: &256 title: Validation Error description: Validation Error type: object @@ -4521,7 +4521,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4656,7 +4656,7 @@ paths: - request - response examples: - default: &364 + default: &365 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4860,7 +4860,7 @@ paths: parameters: - *17 - *19 - - &226 + - &227 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) @@ -5715,7 +5715,7 @@ paths: license: anyOf: - type: 'null' - - &223 + - &224 title: License Simple description: License Simple type: object @@ -10729,7 +10729,7 @@ paths: description: Response content: application/json: - schema: &257 + schema: &258 type: object properties: total_active_caches_count: @@ -10744,7 +10744,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &258 + default: &259 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10959,7 +10959,7 @@ paths: - public_ip_enabled - platform examples: - default: &259 + default: &260 value: total_count: 2 runners: @@ -11263,7 +11263,7 @@ paths: application/json: schema: *47 examples: - default: &260 + default: &261 value: id: 1 platform: linux-x64 @@ -11408,7 +11408,7 @@ paths: application/json: schema: *50 examples: - default: &261 + default: &262 value: version: 1.0.0 size_gb: 75 @@ -11576,7 +11576,7 @@ paths: description: Response content: application/json: - schema: &262 + schema: &263 type: object properties: public_ips: @@ -11603,7 +11603,7 @@ paths: required: - public_ips examples: - default: &263 + default: &264 value: public_ips: current_usage: 17 @@ -11643,7 +11643,7 @@ paths: type: array items: *54 examples: - default: &264 + default: &265 value: id: 4-core cpu_cores: 4 @@ -11961,7 +11961,7 @@ paths: required: true content: application/json: - schema: &265 + schema: &266 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -12072,7 +12072,7 @@ paths: - all - local_only - selected - selected_actions_url: &267 + selected_actions_url: &268 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` @@ -12152,7 +12152,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &269 + schema: &270 type: object properties: days: @@ -12170,7 +12170,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &789 + '401': &790 description: Authorization failure '404': *6 x-github: @@ -12198,7 +12198,7 @@ paths: required: true content: application/json: - schema: &270 + schema: &271 type: object properties: days: @@ -12247,7 +12247,7 @@ paths: required: - approval_policy examples: - default: &271 + default: &272 value: approval_policy: first_time_contributors '404': *6 @@ -12305,7 +12305,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &273 type: object required: - run_workflows_from_fork_pull_requests @@ -12359,7 +12359,7 @@ paths: required: true content: application/json: - schema: &273 + schema: &274 type: object required: - run_workflows_from_fork_pull_requests @@ -12795,7 +12795,7 @@ paths: description: Success response content: application/json: - schema: &276 + schema: &277 type: object properties: default_workflow_permissions: &67 @@ -12843,7 +12843,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 type: object properties: default_workflow_permissions: *67 @@ -13699,7 +13699,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Runner Application description: Runner Application type: object @@ -13724,7 +13724,7 @@ paths: - download_url - filename examples: - default: &282 + default: &283 value: - os: osx architecture: x64 @@ -13808,7 +13808,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &283 + '201': &284 description: Response content: application/json: @@ -13927,7 +13927,7 @@ paths: - token - expires_at examples: - default: &284 + default: &285 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13967,7 +13967,7 @@ paths: application/json: schema: *79 examples: - default: &285 + default: &286 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13999,7 +13999,7 @@ paths: application/json: schema: *76 examples: - default: &286 + default: &287 value: id: 23 name: MBP @@ -14216,7 +14216,7 @@ paths: - *39 - *75 responses: - '200': &287 + '200': &288 description: Response content: application/json: @@ -14272,7 +14272,7 @@ paths: parameters: - *39 - *75 - - &288 + - &289 name: name description: The name of a self-hosted runner's custom label. in: path @@ -14369,7 +14369,7 @@ paths: required: true content: application/json: - schema: &302 + schema: &303 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -15020,7 +15020,7 @@ paths: required: false schema: type: string - - &305 + - &306 name: include description: |- The event types to include: @@ -15076,7 +15076,7 @@ paths: application/json: schema: type: array - items: &306 + items: &307 type: object properties: "@timestamp": @@ -15198,7 +15198,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &307 + default: &308 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15866,7 +15866,7 @@ paths: application/json: schema: type: array - items: &308 + items: &309 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -16038,7 +16038,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &309 + default: &310 value: - id: 21 number: 42 @@ -16143,7 +16143,7 @@ paths: application/json: schema: type: array - items: &311 + items: &312 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -16274,7 +16274,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &312 + default: &313 value: - id: 21 number: 42 @@ -16359,7 +16359,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &317 + - &318 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`, @@ -16369,7 +16369,7 @@ paths: schema: &111 type: string description: The name of the tool used to generate the code scanning analysis. - - &318 + - &319 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 @@ -16393,7 +16393,7 @@ paths: be returned. in: query required: false - schema: &319 + schema: &320 type: string description: State of a code scanning alert. enum: @@ -16426,7 +16426,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 type: object properties: number: &130 @@ -16455,7 +16455,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &546 + instances_url: &547 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16491,7 +16491,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &547 + dismissed_reason: &548 type: - string - 'null' @@ -16502,14 +16502,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &548 + dismissed_comment: &549 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &549 + rule: &550 type: object properties: id: @@ -16570,7 +16570,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &550 + tool: &551 type: object properties: name: *111 @@ -16581,26 +16581,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *112 - most_recent_instance: &551 + most_recent_instance: &552 type: object properties: - ref: &544 + ref: &545 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &561 + analysis_key: &562 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &562 + environment: &563 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &563 + category: &564 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16620,7 +16620,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &564 + location: &565 type: object description: Describe a region within a file for the alert. properties: @@ -16641,7 +16641,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &565 + items: &566 type: - string - 'null' @@ -16997,7 +16997,7 @@ paths: - most_recent_instance - repository examples: - default: &321 + default: &322 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17893,7 +17893,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 type: array description: A list of default code security configurations items: @@ -17909,7 +17909,7 @@ paths: default configuration: *114 examples: - default: &324 + default: &325 value: - default_for_new_repos: public configuration: @@ -18367,7 +18367,7 @@ paths: default: value: default_for_new_repos: all - configuration: &322 + configuration: &323 value: id: 1325 target_type: organization @@ -18457,7 +18457,7 @@ paths: application/json: schema: type: array - items: &325 + items: &326 type: object description: Repositories associated with a code security configuration and attachment status @@ -18481,7 +18481,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &326 + repository: &327 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18982,7 +18982,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &313 + - &314 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -19071,7 +19071,7 @@ paths: parent: anyOf: - type: 'null' - - &399 + - &400 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -19858,7 +19858,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': &333 + '413': &334 description: Payload Too Large content: application/json: @@ -21018,7 +21018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &338 + - &339 name: classification in: query description: |- @@ -21027,7 +21027,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &339 + - &340 name: state in: query description: |- @@ -21036,7 +21036,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &340 + - &341 name: severity in: query description: |- @@ -21045,7 +21045,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &341 + - &342 name: ecosystem in: query description: |- @@ -21054,14 +21054,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &342 + - &343 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 - - &343 + - &344 name: epss_percentage in: query description: |- @@ -21073,7 +21073,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 - - &604 + - &605 name: has in: query description: |- @@ -21087,7 +21087,7 @@ paths: type: string enum: - patch - - &344 + - &345 name: assignee in: query description: |- @@ -21096,7 +21096,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &345 + - &346 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -21106,7 +21106,7 @@ paths: enum: - development - runtime - - &346 + - &347 name: sort in: query description: |- @@ -21132,7 +21132,7 @@ paths: application/json: schema: type: array - items: &347 + items: &348 type: object description: A Dependabot alert. properties: @@ -21200,7 +21200,7 @@ paths: - transitive - inconclusive - - security_advisory: &605 + security_advisory: &606 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21462,7 +21462,7 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: &606 + auto_dismissed_at: &607 type: - string - 'null' @@ -21470,7 +21470,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &607 + dismissal_request: &608 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21533,7 +21533,7 @@ paths: - repository additionalProperties: false examples: - default: &348 + default: &349 value: - number: 2 state: dismissed @@ -21918,7 +21918,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &350 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21944,7 +21944,7 @@ paths: - *120 additionalProperties: false examples: - default: &350 + default: &351 value: default_level: public accessible_repositories: @@ -22167,7 +22167,7 @@ paths: - *103 - *104 - *105 - - &352 + - &353 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -22193,7 +22193,7 @@ paths: application/json: schema: type: array - items: &354 + items: &355 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22320,7 +22320,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &355 + default: &356 value: - id: 21 number: 42 @@ -23418,7 +23418,7 @@ paths: application/json: schema: *20 examples: - default: &376 + default: &377 value: id: 1 account: @@ -23679,7 +23679,7 @@ paths: - name - created_on examples: - default: &462 + default: &463 value: total_count: 2 network_configurations: @@ -23930,7 +23930,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 - - &463 + - &464 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23942,7 +23942,7 @@ paths: description: Response content: application/json: - schema: &464 + schema: &465 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23981,7 +23981,7 @@ paths: - subnet_id - region examples: - default: &465 + default: &466 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24834,7 +24834,7 @@ paths: required: true content: application/json: - schema: &430 + schema: &431 title: Custom Property Set Payload description: Custom property set payload type: object @@ -26075,7 +26075,7 @@ paths: conditions: anyOf: - *161 - - &434 + - &435 title: Organization ruleset conditions type: object description: |- @@ -26125,7 +26125,7 @@ paths: - object rules: type: array - items: &744 + items: &745 title: Repository Rule type: object description: A repository rule. @@ -26134,7 +26134,7 @@ paths: - *170 - *171 - *172 - - &741 + - &742 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -26225,7 +26225,7 @@ paths: - *183 - *184 - *185 - - &742 + - &743 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26474,7 +26474,7 @@ paths: type: string format: date-time examples: - default: &437 + default: &438 value: - version_id: 3 actor: @@ -26527,7 +26527,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &439 allOf: - *194 - type: object @@ -26582,7 +26582,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &439 + - &440 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26593,7 +26593,7 @@ paths: enum: - open - resolved - - &440 + - &441 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26603,7 +26603,7 @@ paths: required: false schema: type: string - - &441 + - &442 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26614,7 +26614,7 @@ paths: required: false schema: type: string - - &442 + - &443 name: exclude_providers in: query description: |- @@ -26625,7 +26625,7 @@ paths: required: false schema: type: string - - &443 + - &444 name: providers in: query description: |- @@ -26636,7 +26636,7 @@ paths: required: false schema: type: string - - &444 + - &445 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26645,7 +26645,7 @@ paths: required: false schema: type: string - - &445 + - &446 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26664,7 +26664,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &446 + - &447 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. @@ -26680,7 +26680,7 @@ paths: - *17 - *108 - *109 - - &447 + - &448 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26689,7 +26689,7 @@ paths: required: false schema: type: string - - &448 + - &449 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26698,7 +26698,7 @@ paths: schema: type: boolean default: false - - &449 + - &450 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26707,7 +26707,7 @@ paths: schema: type: boolean default: false - - &450 + - &451 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26716,7 +26716,7 @@ paths: schema: type: boolean default: false - - &451 + - &452 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26727,7 +26727,7 @@ paths: required: false schema: type: boolean - - &452 + - &453 name: included_metadata in: query description: |- @@ -26738,7 +26738,7 @@ paths: required: false schema: type: string - - &453 + - &454 name: owner_email_hash in: query description: |- @@ -26757,7 +26757,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 type: object properties: number: *130 @@ -26773,14 +26773,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &757 + state: &758 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: &758 + resolution: &759 type: - string - 'null' @@ -26899,14 +26899,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &759 + - &760 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &761 + - &762 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26970,7 +26970,7 @@ paths: - blob_url - commit_sha - commit_url - - &762 + - &763 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. @@ -27031,7 +27031,7 @@ paths: - page_url - commit_sha - commit_url - - &763 + - &764 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -27053,7 +27053,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &764 + - &765 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -27075,7 +27075,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &765 + - &766 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -27097,7 +27097,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &766 + - &767 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -27112,7 +27112,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &767 + - &768 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -27127,7 +27127,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &768 + - &769 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -27142,7 +27142,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &769 + - &770 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. @@ -27164,7 +27164,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &770 + - &771 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. @@ -27186,7 +27186,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &771 + - &772 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. @@ -27208,7 +27208,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &772 + - &773 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. @@ -27230,7 +27230,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &773 + - &774 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 @@ -27276,7 +27276,7 @@ paths: - type: 'null' - *4 examples: - default: &455 + default: &456 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27485,7 +27485,7 @@ paths: description: Response content: application/json: - schema: &456 + schema: &457 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27572,7 +27572,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *196 examples: - default: &457 + default: &458 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27708,7 +27708,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &459 + - &460 name: advanced_security_product in: query description: | @@ -27728,7 +27728,7 @@ paths: description: Success content: application/json: - schema: &460 + schema: &461 type: object properties: total_advanced_security_committers: @@ -27791,7 +27791,7 @@ paths: required: - repositories examples: - default: &461 + default: &462 value: total_advanced_security_committers: 2 total_count: 2 @@ -30998,7 +30998,7 @@ paths: type: array items: *73 examples: - default: &250 + default: &251 value: - login: github id: 1 @@ -31286,6 +31286,197 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - *17 + - *19 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: &217 + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio + subscription assignment in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This + is a GUID that comes from the Visual Studio management + portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + examples: + - true + examples: + default: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: *217 + examples: + default: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false + '404': *6 + '422': *15 + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -31375,7 +31566,7 @@ paths: application/json: schema: type: array - items: &245 + items: &246 title: Event description: Event type: object @@ -31386,7 +31577,7 @@ paths: type: - string - 'null' - actor: &217 + actor: &218 title: Actor description: Actor type: object @@ -31427,7 +31618,7 @@ paths: - id - name - url - org: *217 + org: *218 payload: oneOf: - title: CreateEvent @@ -31474,7 +31665,7 @@ paths: properties: action: type: string - discussion: &897 + discussion: &898 title: Discussion description: A Discussion in a repository. type: object @@ -31771,7 +31962,7 @@ paths: - id labels: type: array - items: &220 + items: &221 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -31854,7 +32045,7 @@ paths: properties: action: type: string - issue: &221 + issue: &222 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -31975,7 +32166,7 @@ paths: milestone: anyOf: - type: 'null' - - &420 + - &421 title: Milestone description: A collection of related issues and pull requests. @@ -32147,7 +32338,7 @@ paths: timeline_url: type: string format: uri - type: &386 + type: &387 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -32208,7 +32399,7 @@ paths: anyOf: - type: 'null' - *5 - author_association: &218 + author_association: &219 title: author_association type: string description: How the author is associated with the @@ -32224,7 +32415,7 @@ paths: - OWNER examples: - OWNER - reactions: &219 + reactions: &220 title: Reaction Rollup type: object properties: @@ -32260,7 +32451,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &816 + sub_issues_summary: &817 title: Sub-issues Summary type: object properties: @@ -32284,7 +32475,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &222 + - &223 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -32335,16 +32526,16 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - &688 + - &689 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -32365,7 +32556,7 @@ paths: minimized: anyOf: - type: 'null' - - &689 + - &690 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -32390,7 +32581,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &817 + issue_dependencies_summary: &818 title: Issue Dependencies Summary type: object properties: @@ -32409,7 +32600,7 @@ paths: - total_blocking issue_field_values: type: array - items: &672 + items: &673 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32588,10 +32779,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - issue @@ -32600,8 +32791,8 @@ paths: properties: action: type: string - issue: *221 - comment: *222 + issue: *222 + comment: *223 required: - action - issue @@ -32780,7 +32971,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 allow_forking: type: boolean is_template: @@ -32871,7 +33062,7 @@ paths: type: string number: type: integer - pull_request: &224 + pull_request: &225 title: Pull Request Minimal type: object properties: @@ -32942,10 +33133,10 @@ paths: assignees: type: array items: *4 - label: *220 + label: *221 labels: type: array - items: *220 + items: *221 required: - action - number @@ -32955,7 +33146,7 @@ paths: properties: action: type: string - pull_request: *224 + pull_request: *225 comment: type: object properties: @@ -33209,7 +33400,7 @@ paths: - pull_request updated_at: type: string - pull_request: *224 + pull_request: *225 required: - action - review @@ -33258,7 +33449,7 @@ paths: updated_at: type: string format: date-time - reactions: *219 + reactions: *220 required: - action - comment @@ -33269,7 +33460,7 @@ paths: type: string release: allOf: - - &734 + - &735 title: Release description: A release. type: object @@ -33351,7 +33542,7 @@ paths: author: *4 assets: type: array - items: &735 + items: &736 title: Release Asset description: Data related to a release. type: object @@ -33426,7 +33617,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *219 + reactions: *220 required: - assets_url - upload_url @@ -33609,7 +33800,7 @@ paths: _links: type: object properties: - timeline: &225 + timeline: &226 title: Link With Type description: Hypermedia Link with Type type: object @@ -33621,17 +33812,17 @@ paths: required: - href - type - user: *225 - security_advisories: *225 - current_user: *225 - current_user_public: *225 - current_user_actor: *225 - current_user_organization: *225 + user: *226 + security_advisories: *226 + current_user: *226 + current_user_public: *226 + current_user_actor: *226 + current_user_organization: *226 current_user_organizations: type: array - items: *225 - repository_discussions: *225 - repository_discussions_category: *225 + items: *226 + repository_discussions: *226 + repository_discussions_category: *226 required: - timeline - user @@ -33693,7 +33884,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *226 + - *227 - *17 - *19 responses: @@ -33703,7 +33894,7 @@ paths: application/json: schema: type: array - items: &227 + items: &228 title: Base Gist description: Base Gist type: object @@ -33829,7 +34020,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &228 + default: &229 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -33953,7 +34144,7 @@ paths: description: Response content: application/json: - schema: &229 + schema: &230 title: Gist Simple description: Gist Simple type: object @@ -33971,7 +34162,7 @@ paths: url: type: string format: uri - user: &825 + user: &826 title: Public User description: Public User type: object @@ -34353,7 +34544,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &230 + default: &231 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -34457,7 +34648,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -34467,9 +34658,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -34491,7 +34682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *226 + - *227 - *17 - *19 responses: @@ -34501,9 +34692,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '401': *23 @@ -34530,7 +34721,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &231 + - &232 name: gist_id description: The unique identifier of the gist. in: path @@ -34542,10 +34733,10 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 - '403': &234 + default: *231 + '403': &235 description: Forbidden Gist content: application/json: @@ -34593,7 +34784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *231 + - *232 requestBody: required: true content: @@ -34657,9 +34848,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - updateGist: *230 + updateGist: *231 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -34817,7 +35008,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -34845,7 +35036,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *231 + - *232 - *17 - *19 responses: @@ -34855,7 +35046,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 title: Gist Comment description: A comment made to a gist. type: object @@ -34893,7 +35084,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *218 + author_association: *219 required: - url - id @@ -34957,7 +35148,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *231 + - *232 requestBody: required: true content: @@ -34983,9 +35174,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: &233 + default: &234 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -35042,8 +35233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *231 - - &235 + - *232 + - &236 name: comment_id description: The unique identifier of the comment. in: path @@ -35056,12 +35247,12 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '304': *35 '404': *6 - '403': *234 + '403': *235 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35082,8 +35273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 requestBody: required: true content: @@ -35109,9 +35300,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *233 + default: *234 '404': *6 x-github: githubCloudOnly: false @@ -35128,8 +35319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *231 - - *235 + - *232 + - *236 responses: '204': description: Response @@ -35152,7 +35343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *231 + - *232 - *17 - *19 responses: @@ -35253,7 +35444,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *231 + - *232 - *17 - *19 responses: @@ -35263,7 +35454,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -35328,13 +35519,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *231 + - *232 responses: '201': description: Response content: application/json: - schema: *227 + schema: *228 examples: default: value: @@ -35411,7 +35602,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *231 + - *232 responses: '204': description: Response if gist is starred @@ -35441,7 +35632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -35463,7 +35654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *231 + - *232 responses: '204': description: Response @@ -35491,7 +35682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *231 + - *232 - name: sha in: path required: true @@ -35502,9 +35693,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '422': *15 '404': *6 '403': *27 @@ -35887,7 +36078,7 @@ paths: - closed - all default: open - - &389 + - &390 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -35906,7 +36097,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - name: collab in: query required: false @@ -35936,9 +36127,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &390 + default: &391 value: - id: 1 node_id: MDU6SXNzdWUx @@ -36218,7 +36409,7 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: default: value: @@ -36516,7 +36707,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &236 + X-CommonMarker-Version: &237 example: 0.17.4 schema: type: string @@ -36571,7 +36762,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *236 + X-CommonMarker-Version: *237 content: text/html: schema: @@ -36600,7 +36791,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: - - &239 + - &240 name: account_id description: account_id parameter in: path @@ -36612,7 +36803,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -36646,7 +36837,7 @@ paths: - 'null' id: type: integer - plan: &237 + plan: &238 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -36749,7 +36940,7 @@ paths: - 'null' updated_at: type: string - plan: *237 + plan: *238 required: - url - id @@ -36757,7 +36948,7 @@ paths: - login - marketplace_purchase examples: - default: &240 + default: &241 value: url: https://api.github.com/orgs/github type: Organization @@ -36842,9 +37033,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: &241 + default: &242 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -36884,14 +37075,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &242 + - &243 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &243 + - &244 name: sort description: The property to sort the results by. in: query @@ -36921,9 +37112,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: &244 + default: &245 value: - url: https://api.github.com/orgs/github type: Organization @@ -36997,15 +37188,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: - - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *240 + default: *241 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -37037,9 +37228,9 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: - default: *241 + default: *242 headers: Link: *45 '401': *23 @@ -37062,8 +37253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *242 - *243 + - *244 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -37083,9 +37274,9 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: - default: *244 + default: *245 headers: Link: *45 '401': *23 @@ -37350,14 +37541,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: - - &474 + - &475 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &475 + - &476 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -37374,7 +37565,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -37419,7 +37610,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &480 + '301': &481 description: Moved permanently content: application/json: @@ -37441,7 +37632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &708 + - &709 name: all description: If `true`, show notifications marked as read. in: query @@ -37449,7 +37640,7 @@ paths: schema: type: boolean default: false - - &709 + - &710 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -37458,8 +37649,8 @@ paths: schema: type: boolean default: false - - *226 - - &710 + - *227 + - &711 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: @@ -37484,14 +37675,14 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Thread description: Thread type: object properties: id: type: string - repository: &280 + repository: &281 title: Minimal Repository description: Minimal Repository type: object @@ -37841,7 +38032,7 @@ paths: type: boolean examples: - false - security_and_analysis: &431 + security_and_analysis: &432 type: - object - 'null' @@ -38066,7 +38257,7 @@ paths: - url - subscription_url examples: - default: &711 + default: &712 value: - id: '1' repository: @@ -38232,7 +38423,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &247 + - &248 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 @@ -38246,7 +38437,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -38349,7 +38540,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *247 + - *248 responses: '205': description: Reset Content @@ -38372,7 +38563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *247 + - *248 responses: '204': description: No content @@ -38395,13 +38586,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: - - *247 + - *248 responses: '200': description: Response content: application/json: - schema: &248 + schema: &249 title: Thread Subscription description: Thread Subscription type: object @@ -38445,7 +38636,7 @@ paths: - url - subscribed examples: - default: &249 + default: &250 value: subscribed: true ignored: false @@ -38476,7 +38667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *247 + - *248 requestBody: required: false content: @@ -38497,9 +38688,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 '304': *35 '403': *27 '401': *23 @@ -38522,7 +38713,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *247 + - *248 responses: '204': description: Response @@ -38619,7 +38810,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: example: ; rel="next" @@ -38671,7 +38862,7 @@ paths: - 3 custom_roles: type: array - items: &334 + items: &335 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -38720,7 +38911,7 @@ paths: - created_at - updated_at examples: - default: &335 + default: &336 value: id: 8030 name: Security Engineer @@ -38786,7 +38977,7 @@ paths: description: Response content: application/json: - schema: &251 + schema: &252 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -38825,7 +39016,7 @@ paths: required: true content: application/json: - schema: *251 + schema: *252 examples: selected_actions: *42 responses: @@ -38860,7 +39051,7 @@ paths: description: Response content: application/json: - schema: &252 + schema: &253 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -38899,7 +39090,7 @@ paths: required: true content: application/json: - schema: *252 + schema: *253 examples: selected_actions: *44 responses: @@ -38942,7 +39133,7 @@ paths: type: array items: *155 examples: - default: &717 + default: &718 value: - property_name: environment value: production @@ -38992,7 +39183,7 @@ paths: required: - properties examples: - default: &718 + default: &719 value: properties: - property_name: environment @@ -39039,7 +39230,7 @@ paths: description: Response content: application/json: - schema: &253 + schema: &254 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -39455,7 +39646,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &254 + default-response: &255 value: login: github id: 1 @@ -39787,17 +39978,17 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: - default: *254 + default: *255 '422': description: Validation failed content: application/json: schema: oneOf: - - *255 - *256 + - *257 '409': *119 x-github: githubCloudOnly: false @@ -39868,9 +40059,9 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: - default: *258 + default: *259 headers: Link: *45 x-github: @@ -39911,7 +40102,7 @@ paths: type: integer repository_cache_usages: type: array - items: &487 + items: &488 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -39989,7 +40180,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -40156,7 +40347,7 @@ paths: application/json: schema: *47 examples: - default: *260 + default: *261 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40248,7 +40439,7 @@ paths: application/json: schema: *50 examples: - default: *261 + default: *262 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40367,9 +40558,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40405,7 +40596,7 @@ paths: type: array items: *54 examples: - default: *264 + default: *265 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40649,7 +40840,7 @@ paths: required: true content: application/json: - schema: *265 + schema: *266 examples: default: *58 responses: @@ -40742,7 +40933,7 @@ paths: required: - include_claim_keys examples: - default: &266 + default: &267 value: include_claim_keys: - repo @@ -40787,13 +40978,13 @@ paths: format. type: boolean examples: - default: *266 + default: *267 responses: '201': description: Empty response content: application/json: - schema: &291 + schema: &292 title: Empty Object description: An object without any properties. type: object @@ -40832,7 +41023,7 @@ paths: schema: type: object properties: - enabled_repositories: &268 + enabled_repositories: &269 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -40846,7 +41037,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled_repositories @@ -40888,7 +41079,7 @@ paths: schema: type: object properties: - enabled_repositories: *268 + enabled_repositories: *269 allowed_actions: *60 sha_pinning_required: *61 required: @@ -40924,7 +41115,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: response: summary: Example response @@ -40955,7 +41146,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: application/json: value: @@ -40993,7 +41184,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -41050,7 +41241,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -41075,7 +41266,7 @@ paths: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -41127,7 +41318,7 @@ paths: type: array items: *78 examples: - default: &275 + default: &276 value: total_count: 1 repositories: @@ -41312,7 +41503,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - &274 + - &275 name: repository_id description: The unique identifier of the repository. in: path @@ -41341,7 +41532,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -41537,7 +41728,7 @@ paths: type: array items: *78 examples: - default: *275 + default: *276 '403': *27 '404': *6 x-github: @@ -41606,7 +41797,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -41633,7 +41824,7 @@ 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: - *87 - - *274 + - *275 responses: '204': description: No content @@ -41667,7 +41858,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -41701,7 +41892,7 @@ paths: required: false content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -41748,7 +41939,7 @@ paths: type: number runner_groups: type: array - items: &278 + items: &279 type: object properties: id: @@ -41938,9 +42129,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: &279 + default: &280 value: id: 2 name: octo-runner-group @@ -41982,7 +42173,7 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: default: value: @@ -42075,9 +42266,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *279 examples: - default: *279 + default: *280 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -42141,7 +42332,7 @@ paths: type: array items: *46 examples: - default: *259 + default: *260 headers: Link: *45 x-github: @@ -42182,9 +42373,9 @@ paths: type: number repositories: type: array - items: *280 + items: *281 examples: - default: &332 + default: &333 value: total_count: 1 repositories: @@ -42483,7 +42674,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -42507,7 +42698,7 @@ paths: parameters: - *87 - *72 - - *274 + - *275 responses: '204': description: Response @@ -42725,9 +42916,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42792,7 +42983,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -42831,7 +43022,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42867,7 +43058,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42898,7 +43089,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43073,7 +43264,7 @@ paths: - *87 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -43102,7 +43293,7 @@ paths: parameters: - *87 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -43147,7 +43338,7 @@ paths: type: integer secrets: type: array - items: &289 + items: &290 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -43181,7 +43372,7 @@ paths: - updated_at - visibility examples: - default: &295 + default: &296 value: total_count: 3 secrets: @@ -43228,7 +43419,7 @@ paths: description: Response content: application/json: - schema: &296 + schema: &297 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -43263,7 +43454,7 @@ paths: - key_id - key examples: - default: &297 + default: &298 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -43289,7 +43480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *87 - - &290 + - &291 name: secret_name description: The name of the secret. in: path @@ -43301,9 +43492,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: &298 + default: &299 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43332,7 +43523,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43389,7 +43580,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43416,7 +43607,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -43443,7 +43634,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -43461,9 +43652,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: &294 + default: &295 value: total_count: 1 repositories: @@ -43556,7 +43747,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -43609,7 +43800,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43643,7 +43834,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -43676,7 +43867,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *87 - - &299 + - &300 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)." @@ -43700,7 +43891,7 @@ paths: type: integer variables: type: array - items: &292 + items: &293 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -43748,7 +43939,7 @@ paths: - updated_at - visibility examples: - default: &300 + default: &301 value: total_count: 3 variables: @@ -43838,7 +44029,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -43864,7 +44055,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *87 - - &293 + - &294 name: name description: The name of the variable. in: path @@ -43876,9 +44067,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &301 + default: &302 value: name: USERNAME value: octocat @@ -43907,7 +44098,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -43970,7 +44161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -43997,7 +44188,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -44015,9 +44206,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -44044,7 +44235,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44094,7 +44285,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44129,7 +44320,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44181,9 +44372,9 @@ paths: type: integer secrets: type: array - items: *289 + items: *290 examples: - default: *295 + default: *296 headers: Link: *45 x-github: @@ -44214,9 +44405,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44239,15 +44430,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44270,7 +44461,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -44327,7 +44518,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -44354,7 +44545,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -44381,7 +44572,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -44399,9 +44590,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44425,7 +44616,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -44478,7 +44669,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -44512,7 +44703,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -44546,7 +44737,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *87 - - *299 + - *300 - *19 responses: '200': @@ -44563,9 +44754,9 @@ paths: type: integer variables: type: array - items: *292 + items: *293 examples: - default: *300 + default: *301 headers: Link: *45 x-github: @@ -44636,7 +44827,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -44662,15 +44853,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '200': description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *301 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44692,7 +44883,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44755,7 +44946,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *87 - - *293 + - *294 responses: '204': description: Response @@ -44782,7 +44973,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 - *19 - *17 responses: @@ -44800,9 +44991,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '409': description: Response when the visibility of the variable is not set to `selected` @@ -44829,7 +45020,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *87 - - *293 + - *294 requestBody: required: true content: @@ -44879,7 +45070,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44914,7 +45105,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *87 - - *293 + - *294 - name: repository_id in: path required: true @@ -44972,7 +45163,7 @@ paths: required: true content: application/json: - schema: *302 + schema: *303 examples: default: *85 parameters: @@ -45159,7 +45350,7 @@ paths: type: integer deployment_records: type: array - items: &303 + items: &304 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -45206,7 +45397,7 @@ paths: required: - total_count examples: - default: &304 + default: &305 value: total_count: 1 deployment_records: @@ -45388,11 +45579,11 @@ paths: type: integer deployment_records: type: array - items: *303 + items: *304 required: - total_count examples: - default: *304 + default: *305 '403': description: Forbidden content: @@ -45644,9 +45835,9 @@ paths: - 3 deployment_records: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45776,12 +45967,12 @@ paths: required: - subject_digests examples: - default: &857 + default: &858 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &858 + withPredicateType: &859 value: subject_digests: - sha256:abc123 @@ -45840,7 +46031,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &859 + default: &860 value: attestations_subject_digests: - sha256:abc: @@ -46206,7 +46397,7 @@ paths: initiator: type: string examples: - default: &520 + default: &521 value: attestations: - bundle: @@ -46346,7 +46537,7 @@ paths: required: false schema: type: string - - *305 + - *306 - *127 - *128 - *129 @@ -46358,9 +46549,9 @@ paths: application/json: schema: type: array - items: *306 + items: *307 examples: - default: *307 + default: *308 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46483,7 +46674,7 @@ paths: subcategory: bypass-requests parameters: - *87 - - &310 + - &311 name: repository_name description: The name of the repository to filter on. in: query @@ -46502,9 +46693,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -46528,7 +46719,7 @@ paths: subcategory: delegated-bypass parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 @@ -46542,9 +46733,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -46571,7 +46762,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &314 + schema: &315 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -46597,7 +46788,7 @@ paths: application/json: schema: type: array - items: &315 + items: &316 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -46628,7 +46819,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *313 + items: *314 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -46647,7 +46838,7 @@ paths: - string - 'null' format: date-time - state: *314 + state: *315 contact_link: description: The contact link of the campaign. type: @@ -46870,9 +47061,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: &316 + default: &317 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -46955,9 +47146,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '404': *6 '422': description: Unprocessable Entity @@ -47035,7 +47226,7 @@ paths: - string - 'null' format: uri - state: *314 + state: *315 examples: default: value: @@ -47045,9 +47236,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *316 examples: - default: *316 + default: *317 '400': description: Bad Request content: @@ -47114,8 +47305,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *87 - - *317 - *318 + - *319 - *108 - *109 - *19 @@ -47126,7 +47317,7 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: sort description: The property by which to sort the results. in: query @@ -47142,7 +47333,7 @@ paths: be returned. in: query required: false - schema: &545 + schema: &546 type: string description: Severity of a code scanning alert. enum: @@ -47168,9 +47359,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 headers: Link: *45 '404': *6 @@ -47545,7 +47736,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47573,9 +47764,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '304': *35 '403': *27 '404': *6 @@ -47664,7 +47855,7 @@ paths: application/json: schema: *114 examples: - default: *322 + default: *323 '304': *35 '403': *27 '404': *6 @@ -48109,7 +48300,7 @@ paths: default: value: default_for_new_repos: all - configuration: *322 + configuration: *323 '403': *27 '404': *6 x-github: @@ -48162,13 +48353,13 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *326 + repository: *327 '403': *27 '404': *6 x-github: @@ -48208,7 +48399,7 @@ paths: type: integer codespaces: type: array - items: &391 + items: &392 type: object title: Codespace description: A codespace. @@ -48239,11 +48430,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *280 + repository: *281 machine: anyOf: - type: 'null' - - &577 + - &578 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -48530,7 +48721,7 @@ paths: - pulls_url - recent_folders examples: - default: &392 + default: &393 value: total_count: 3 codespaces: @@ -49154,7 +49345,7 @@ paths: type: integer secrets: type: array - items: &327 + items: &328 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -49195,7 +49386,7 @@ paths: - updated_at - visibility examples: - default: &578 + default: &579 value: total_count: 2 secrets: @@ -49233,7 +49424,7 @@ paths: description: Response content: application/json: - schema: &579 + schema: &580 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -49268,7 +49459,7 @@ paths: - key_id - key examples: - default: &580 + default: &581 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -49292,15 +49483,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &582 + default: &583 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -49328,7 +49519,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -49383,7 +49574,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -49410,7 +49601,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -49436,7 +49627,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -49454,9 +49645,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 '404': *6 x-github: githubCloudOnly: false @@ -49479,7 +49670,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -49530,7 +49721,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -49564,7 +49755,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -49634,7 +49825,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &328 + items: &329 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -50031,9 +50222,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &329 + default: &330 summary: Example response for an organization copilot space value: id: 84 @@ -50138,9 +50329,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 x-github: @@ -50269,9 +50460,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *329 + default: *330 '403': *27 '404': *6 '422': *15 @@ -50354,7 +50545,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &330 + items: &331 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -50579,7 +50770,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -50709,7 +50900,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: user: value: @@ -50860,7 +51051,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &331 + items: &332 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -51004,7 +51195,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51020,7 +51211,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51075,7 +51266,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51144,7 +51335,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -51872,12 +52063,12 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 required: - total_count - repositories examples: - default: *332 + default: *333 '500': *38 '401': *23 '403': *27 @@ -51963,7 +52154,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#enable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -51997,7 +52188,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-coding-agent-management#disable-a-repository-for-copilot-cloud-agent-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: No Content @@ -52145,7 +52336,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': *333 + '413': *334 '422': *7 x-github: githubCloudOnly: @@ -52601,7 +52792,7 @@ paths: - 3 custom_roles: type: array - items: *334 + items: *335 examples: default: value: @@ -52693,7 +52884,7 @@ paths: required: true content: application/json: - schema: &336 + schema: &337 type: object properties: name: @@ -52735,9 +52926,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52768,9 +52959,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52798,7 +52989,7 @@ paths: required: true content: application/json: - schema: &337 + schema: &338 type: object properties: name: @@ -52837,9 +53028,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52897,7 +53088,7 @@ paths: required: true content: application/json: - schema: *336 + schema: *337 examples: default: value: @@ -52911,9 +53102,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -52950,9 +53141,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: true @@ -52986,7 +53177,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *338 examples: default: value: @@ -53001,9 +53192,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *335 examples: - default: *335 + default: *336 '422': *15 '404': *6 x-github: @@ -53063,12 +53254,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *87 - - *338 - *339 - *340 - *341 - *342 - *343 + - *344 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -53098,7 +53289,7 @@ paths: enum: - patch - deployment - - *344 + - *345 - name: runtime_risk in: query description: |- @@ -53107,8 +53298,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *345 - *346 + - *347 - *110 - *108 - *109 @@ -53120,9 +53311,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *348 + default: *349 '304': *35 '400': *14 '403': *27 @@ -53171,9 +53362,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *350 examples: - default: *350 + default: *351 '403': *27 '404': *6 x-github: @@ -53337,7 +53528,7 @@ paths: type: integer secrets: type: array - items: &351 + items: &352 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -53416,7 +53607,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -53435,7 +53626,7 @@ paths: - key_id - key examples: - default: &611 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -53459,13 +53650,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -53494,7 +53685,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -53551,7 +53742,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -53584,7 +53775,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -53609,7 +53800,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 - *19 - *17 responses: @@ -53627,9 +53818,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53651,7 +53842,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -53702,7 +53893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53734,7 +53925,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *87 - - *290 + - *291 - name: repository_id in: path required: true @@ -53771,7 +53962,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - &620 + - &621 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -53779,7 +53970,7 @@ paths: required: false schema: type: string - - &621 + - &622 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -53787,7 +53978,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: time_period description: |- The time period to filter by. @@ -53803,7 +53994,7 @@ paths: - week - month default: month - - &623 + - &624 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -53818,7 +54009,7 @@ paths: - denied - all default: all - - *310 + - *311 - *17 - *19 responses: @@ -53828,7 +54019,7 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -53938,7 +54129,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &353 + items: &354 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -53991,7 +54182,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &625 + default: &626 value: - id: 21 number: 42 @@ -54079,11 +54270,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -54093,7 +54284,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -54203,7 +54394,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *353 + items: *354 url: type: string format: uri @@ -54216,7 +54407,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &627 + default: &628 value: - id: 21 number: 42 @@ -54304,11 +54495,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - *310 + - *311 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -54318,9 +54509,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -54346,7 +54537,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Package description: A software package type: object @@ -54399,7 +54590,7 @@ paths: repository: anyOf: - type: 'null' - - *280 + - *281 created_at: type: string format: date-time @@ -54417,7 +54608,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &403 value: - id: 197 name: hello_docker @@ -54505,7 +54696,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -54604,7 +54795,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &472 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -54694,7 +54885,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &472 + default: &473 value: group_id: '123' group_name: Octocat admins @@ -54749,7 +54940,7 @@ paths: description: Response content: application/json: - schema: &468 + schema: &469 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -54789,7 +54980,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &469 + default: &470 value: groups: - group_id: '123' @@ -54834,7 +55025,7 @@ paths: application/json: schema: type: array - items: &380 + items: &381 title: Organization Invitation description: Organization Invitation type: object @@ -54888,7 +55079,7 @@ paths: - invitation_teams_url - node_id examples: - default: &381 + default: &382 value: - id: 1 login: monalisa @@ -54955,7 +55146,7 @@ paths: application/json: schema: type: array - items: &432 + items: &433 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -54969,7 +55160,7 @@ paths: - name - description examples: - default: &433 + default: &434 value: - name: add_assignee description: Assign or remove a user @@ -55010,7 +55201,7 @@ paths: application/json: schema: type: array - items: &356 + items: &357 title: Org Hook description: Org Hook type: object @@ -55193,9 +55384,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: &357 + default: &358 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -55240,7 +55431,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *87 - - &358 + - &359 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. @@ -55253,9 +55444,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *357 + default: *358 '404': *6 x-github: githubCloudOnly: false @@ -55277,7 +55468,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -55323,7 +55514,7 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: default: value: @@ -55363,7 +55554,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -55389,7 +55580,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 responses: '200': description: Response @@ -55418,7 +55609,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *87 - - *358 + - *359 requestBody: required: false content: @@ -55467,10 +55658,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *87 - - *358 - - *17 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -55478,9 +55669,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -55504,16 +55695,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -55537,7 +55728,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *87 - - *358 + - *359 - *16 responses: '202': *37 @@ -55564,7 +55755,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *87 - - *358 + - *359 responses: '204': description: Response @@ -55587,7 +55778,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *87 - - &369 + - &370 name: actor_type in: path description: The type of the actor @@ -55600,14 +55791,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &370 + - &371 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &365 + - &366 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`.' @@ -55615,7 +55806,7 @@ paths: required: true schema: type: string - - &366 + - &367 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) @@ -55710,12 +55901,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *87 - - *365 - *366 + - *367 - *19 - *17 - *110 - - &375 + - &376 name: sort description: The property to sort the results by. in: query @@ -55794,14 +55985,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *87 - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: &367 + schema: &368 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -55817,7 +56008,7 @@ paths: type: integer format: int64 examples: - default: &368 + default: &369 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -55838,23 +56029,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *87 - - &371 + - &372 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *365 - *366 + - *367 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55873,18 +56064,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *87 - - *365 - *366 - - *369 + - *367 - *370 + - *371 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: - default: *368 + default: *369 x-github: enabledForGitHubApps: true category: orgs @@ -55902,9 +56093,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *87 - - *365 - *366 - - &372 + - *367 + - &373 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -55917,7 +56108,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &374 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -55933,7 +56124,7 @@ paths: type: integer format: int64 examples: - default: &374 + default: &375 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -55970,18 +56161,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *87 - - *371 - - *365 - - *366 - *372 + - *366 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -55999,19 +56190,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *87 - - *369 - *370 - - *365 + - *371 - *366 - - *372 + - *367 + - *373 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *374 + default: *375 x-github: enabledForGitHubApps: true category: orgs @@ -56029,13 +56220,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *87 - - *371 - - *365 + - *372 - *366 + - *367 - *19 - *17 - *110 - - *375 + - *376 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -56119,7 +56310,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56239,12 +56430,12 @@ paths: application/json: schema: anyOf: - - &378 + - &379 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &377 + limit: &378 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -56272,7 +56463,7 @@ paths: properties: {} additionalProperties: false examples: - default: &379 + default: &380 value: limit: collaborators_only origin: organization @@ -56301,13 +56492,13 @@ paths: required: true content: application/json: - schema: &656 + schema: &657 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *377 + limit: *378 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -56332,9 +56523,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *379 + default: *380 '422': *15 x-github: githubCloudOnly: false @@ -56412,9 +56603,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 '404': *6 @@ -56492,7 +56683,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *381 examples: default: value: @@ -56549,7 +56740,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *87 - - &382 + - &383 name: invitation_id description: The unique identifier of the invitation. in: path @@ -56583,7 +56774,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *87 - - *382 + - *383 - *17 - *19 responses: @@ -56593,9 +56784,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: &400 + default: &401 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -56638,7 +56829,7 @@ paths: application/json: schema: type: array - items: &383 + items: &384 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -56901,9 +57092,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: &384 + default: &385 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -56959,7 +57150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *87 - - &385 + - &386 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -57069,9 +57260,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: *384 + default: *385 '404': *6 '422': *7 x-github: @@ -57096,7 +57287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *87 - - *385 + - *386 responses: '204': *126 '404': *6 @@ -57126,9 +57317,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: &660 + default: &661 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -57214,9 +57405,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -57249,7 +57440,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *87 - - &388 + - &389 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -57305,9 +57496,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 '422': *7 x-github: @@ -57332,7 +57523,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *87 - - *388 + - *389 responses: '204': description: Response @@ -57395,7 +57586,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: type description: Can be the name of an issue type. in: query @@ -57414,7 +57605,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -57424,9 +57615,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -57591,9 +57782,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -57620,7 +57811,7 @@ paths: parameters: - *87 - *143 - - &393 + - &394 name: codespace_name in: path required: true @@ -57655,15 +57846,15 @@ paths: parameters: - *87 - *143 - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: &576 + default: &577 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -57919,7 +58110,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &395 title: Org Membership description: Org Membership type: object @@ -57988,7 +58179,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &395 + response-if-user-has-an-active-admin-membership-with-organization: &396 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -58089,9 +58280,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: - response-if-user-already-had-membership-with-organization: *395 + response-if-user-already-had-membership-with-organization: *396 '422': *15 '403': *27 x-github: @@ -58169,7 +58360,7 @@ paths: application/json: schema: type: array - items: &396 + items: &397 title: Migration description: A migration. type: object @@ -58518,7 +58709,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -58697,7 +58888,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *87 - - &397 + - &398 name: migration_id description: The unique identifier of the migration. in: path @@ -58725,7 +58916,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -58895,7 +59086,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '302': description: Response @@ -58917,7 +59108,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *87 - - *397 + - *398 responses: '204': description: Response @@ -58941,8 +59132,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *87 - - *397 - - &840 + - *398 + - &841 name: repo_name description: repo_name parameter in: path @@ -58970,7 +59161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *87 - - *397 + - *398 - *17 - *19 responses: @@ -58980,9 +59171,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: &407 + default: &408 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59211,7 +59402,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &398 + items: &399 title: Organization Role description: Organization roles type: object @@ -59420,7 +59611,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59650,7 +59841,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59747,7 +59938,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -59906,7 +60097,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 type: description: The ownership type of the team type: string @@ -59939,7 +60130,7 @@ paths: - type - parent examples: - default: *400 + default: *401 headers: Link: *45 '404': @@ -59998,7 +60189,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *399 + items: *400 name: type: - string @@ -60308,7 +60499,7 @@ paths: - nuget - container - *87 - - &841 + - &842 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -60344,12 +60535,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 '403': *27 '401': *23 - '400': &843 + '400': &844 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60371,7 +60562,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &403 + - &404 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 @@ -60389,7 +60580,7 @@ paths: - docker - nuget - container - - &404 + - &405 name: package_name description: The name of the package. in: path @@ -60402,7 +60593,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -60454,8 +60645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 responses: '204': @@ -60488,8 +60679,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - name: token description: package token @@ -60522,8 +60713,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: - - *403 - *404 + - *405 - *87 - *19 - *17 @@ -60544,7 +60735,7 @@ paths: application/json: schema: type: array - items: &405 + items: &406 title: Package Version description: A version of a software package type: object @@ -60679,10 +60870,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: - - *403 - *404 + - *405 - *87 - - &406 + - &407 name: package_version_id description: Unique identifier of the package version. in: path @@ -60694,7 +60885,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -60730,10 +60921,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -60765,10 +60956,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *403 - *404 + - *405 - *87 - - *406 + - *407 responses: '204': description: Response @@ -60798,7 +60989,7 @@ paths: - *87 - *17 - *19 - - &408 + - &409 name: sort description: The property by which to sort the results. in: query @@ -60809,7 +61000,7 @@ paths: - created_at default: created_at - *110 - - &409 + - &410 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -60821,7 +61012,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &410 + - &411 name: repository description: The name of the repository to use to filter the results. in: query @@ -60830,7 +61021,7 @@ paths: type: string examples: - Hello-World - - &411 + - &412 name: permission description: The permission to use to filter the results. in: query @@ -60839,7 +61030,7 @@ paths: type: string examples: - issues_read - - &412 + - &413 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) @@ -60849,7 +61040,7 @@ paths: schema: type: string format: date-time - - &413 + - &414 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) @@ -60859,7 +61050,7 @@ paths: schema: type: string format: date-time - - &414 + - &415 name: token_id description: The ID of the token in: query @@ -61176,9 +61367,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -61204,14 +61395,14 @@ paths: - *87 - *17 - *19 - - *408 - - *110 - *409 + - *110 - *410 - *411 - *412 - *413 - *414 + - *415 responses: '500': *38 '422': *15 @@ -61493,9 +61684,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -61537,7 +61728,7 @@ paths: type: integer configurations: type: array - items: &415 + items: &416 title: Organization private registry description: Private registry configuration for an organization type: object @@ -62054,7 +62245,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &416 + org-private-registry-with-selected-visibility: &417 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -62146,15 +62337,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *415 + schema: *416 examples: - default: *416 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -62177,7 +62368,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 requestBody: required: true content: @@ -62366,7 +62557,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *87 - - *290 + - *291 responses: '204': description: Response @@ -62406,7 +62597,7 @@ paths: application/json: schema: type: array - items: &417 + items: &418 title: Projects v2 Project description: A projects v2 project type: object @@ -62480,7 +62671,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &930 + - &931 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -62565,7 +62756,7 @@ paths: - deleted_at - deleted_by examples: - default: &418 + default: &419 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -62668,7 +62859,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &419 + - &420 name: project_number description: The project's number. in: path @@ -62681,9 +62872,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -62706,7 +62897,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -62740,7 +62931,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &425 title: Projects v2 Item description: An item belonging to a project type: object @@ -62753,8 +62944,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *221 - - &591 + - *222 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -62874,7 +63065,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -62923,7 +63114,7 @@ paths: items: *4 requested_teams: type: array - items: *313 + items: *314 head: type: object properties: @@ -62967,7 +63158,7 @@ paths: _links: type: object properties: - comments: &421 + comments: &422 title: Link description: Hypermedia Link type: object @@ -62976,13 +63167,13 @@ paths: type: string required: - href - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -62992,8 +63183,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: &720 + author_association: *219 + auto_merge: &721 title: Auto merge description: The status of auto merging a pull request. type: @@ -63167,7 +63358,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &423 + content_type: &424 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -63211,7 +63402,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &425 + draft_issue: &426 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -63285,7 +63476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *419 + - *420 - *87 - *17 - *108 @@ -63297,7 +63488,7 @@ paths: application/json: schema: type: array - items: &422 + items: &423 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -63450,7 +63641,7 @@ paths: - updated_at - project_url examples: - default: &863 + default: &864 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63580,7 +63771,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *419 + - *420 - *87 requestBody: required: true @@ -63627,7 +63818,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &864 + items: &865 type: object properties: name: @@ -63664,7 +63855,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &865 + iteration_configuration: &866 type: object description: The configuration for iteration fields. properties: @@ -63714,7 +63905,7 @@ paths: value: name: Due date data_type: date - single_select_field: &866 + single_select_field: &867 summary: Create a single select field value: name: Priority @@ -63741,7 +63932,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &867 + iteration_field: &868 summary: Create an iteration field value: name: Sprint @@ -63765,9 +63956,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *422 + schema: *423 examples: - text_field: &868 + text_field: &869 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -63776,7 +63967,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &869 + number_field: &870 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -63785,7 +63976,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &870 + date_field: &871 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -63794,7 +63985,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &871 + single_select_field: &872 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63828,7 +64019,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &872 + iteration_field: &873 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -63873,8 +64064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *419 - - &873 + - *420 + - &874 name: field_id description: The unique identifier of the field. in: path @@ -63887,9 +64078,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: &874 + default: &875 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63945,7 +64136,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: - - *419 + - *420 - *87 - 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) @@ -63978,7 +64169,7 @@ paths: application/json: schema: type: array - items: &426 + items: &427 title: Projects v2 Item description: An item belonging to a project type: object @@ -63995,7 +64186,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: *423 + content_type: *424 content: type: - object @@ -64045,7 +64236,7 @@ paths: - updated_at - archived_at examples: - default: &427 + default: &428 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -64743,7 +64934,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -64813,22 +65004,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -64848,9 +65039,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: - - *419 + - *420 - *87 - - &428 + - &429 name: item_id description: The unique identifier of the project item. in: path @@ -64876,9 +65067,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -64899,9 +65090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -64974,13 +65165,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -65000,9 +65191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *419 + - *420 - *87 - - *428 + - *429 responses: '204': description: Response @@ -65026,7 +65217,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *87 - - *419 + - *420 requestBody: required: true content: @@ -65100,7 +65291,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &854 + schema: &855 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -65204,7 +65395,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &429 + value: &430 value: id: 1 number: 1 @@ -65250,10 +65441,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -65281,9 +65472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *419 + - *420 - *87 - - &875 + - &876 name: view_number description: The number that identifies the project view. in: path @@ -65315,9 +65506,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -65481,7 +65672,7 @@ paths: required: true content: application/json: - schema: *430 + schema: *431 examples: default: value: @@ -65847,9 +66038,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -66053,7 +66244,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &480 title: Full Repository description: Full Repository type: object @@ -66512,7 +66703,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -66531,7 +66722,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &596 + code_of_conduct: &597 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -66561,7 +66752,7 @@ paths: - key - name - html_url - security_and_analysis: *431 + security_and_analysis: *432 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -66656,7 +66847,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &481 + default: &482 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -67194,9 +67385,9 @@ paths: application/json: schema: type: array - items: *432 + items: *433 examples: - default: *433 + default: *434 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67221,7 +67412,7 @@ paths: - *87 - *17 - *19 - - &743 + - &744 name: targets description: | A comma-separated list of rule targets to filter by. @@ -67313,11 +67504,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: type: array description: An array of rules within the ruleset. - items: &436 + items: &437 title: Repository Rule type: object description: A repository rule. @@ -67382,7 +67573,7 @@ paths: application/json: schema: *190 examples: - default: &435 + default: &436 value: id: 21 name: super cool ruleset @@ -67438,7 +67629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *87 - - &745 + - &746 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 @@ -67448,16 +67639,16 @@ paths: schema: type: string x-multi-segment: true - - *310 + - *311 - *105 - - &746 + - &747 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 - - &747 + - &748 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -67470,7 +67661,7 @@ paths: - bypass - all default: all - - &748 + - &749 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -67493,7 +67684,7 @@ paths: description: Response content: application/json: - schema: &749 + schema: &750 title: Rule Suites description: Response type: array @@ -67549,7 +67740,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &750 + default: &751 value: - id: 21 actor_id: 12 @@ -67593,7 +67784,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &751 + - &752 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -67609,7 +67800,7 @@ paths: description: Response content: application/json: - schema: &752 + schema: &753 title: Rule Suite description: Response type: object @@ -67716,7 +67907,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &753 + default: &754 value: id: 21 actor_id: 12 @@ -67791,7 +67982,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '500': *38 put: @@ -67840,11 +68031,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *168 - conditions: *434 + conditions: *435 rules: description: An array of rules within the ruleset. type: array - items: *436 + items: *437 examples: default: value: @@ -67881,7 +68072,7 @@ paths: application/json: schema: *190 examples: - default: *435 + default: *436 '404': *6 '422': *15 '500': *38 @@ -67941,7 +68132,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -67978,7 +68169,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -68041,7 +68232,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *87 - - *439 - *440 - *441 - *442 @@ -68049,10 +68239,11 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - &755 + - &756 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 @@ -68062,7 +68253,7 @@ paths: required: false schema: type: string - - &756 + - &757 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 @@ -68072,13 +68263,13 @@ paths: required: false schema: type: string - - *447 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -68086,9 +68277,9 @@ paths: application/json: schema: type: array - items: *454 + items: *455 examples: - default: *455 + default: *456 headers: Link: *45 '404': *6 @@ -68123,9 +68314,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: - default: *457 + default: *458 '403': *27 '404': *6 patch: @@ -68278,7 +68469,7 @@ paths: application/json: schema: type: array - items: &777 + items: &778 description: A repository security advisory. type: object properties: @@ -68522,7 +68713,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 credits_detailed: type: - array @@ -68533,7 +68724,7 @@ paths: type: object properties: user: *4 - type: *458 + type: *459 state: type: string description: The state of the user's acceptance of the @@ -68559,7 +68750,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *313 + items: *314 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -68629,7 +68820,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &778 + default: &779 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -69016,7 +69207,7 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: default: value: @@ -69115,7 +69306,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *87 - - *459 + - *460 - *17 - *19 responses: @@ -69123,9 +69314,9 @@ paths: description: Success content: application/json: - schema: *460 + schema: *461 examples: - default: *461 + default: *462 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -69271,9 +69462,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69342,7 +69533,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -69365,7 +69556,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *87 - - *274 + - *275 responses: '204': description: Response @@ -69408,7 +69599,7 @@ paths: type: array items: *148 examples: - default: *462 + default: *463 headers: Link: *45 x-github: @@ -69637,15 +69828,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: - *87 - - *463 + - *464 responses: '200': description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *465 + default: *466 headers: Link: *45 x-github: @@ -69683,7 +69874,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -69735,7 +69926,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &477 + default: &478 value: groups: - group_id: '123' @@ -69790,9 +69981,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '403': *27 @@ -69886,7 +70077,7 @@ paths: description: Response content: application/json: - schema: &466 + schema: &467 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -69960,7 +70151,7 @@ paths: parent: anyOf: - type: 'null' - - *399 + - *400 members_count: type: integer examples: @@ -70285,7 +70476,7 @@ paths: - repos_count - organization examples: - default: &467 + default: &468 value: id: 1 node_id: MDQ6VGVhbTE= @@ -70373,9 +70564,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -70460,16 +70651,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -70499,7 +70690,7 @@ paths: responses: '204': description: Response - '422': &470 + '422': &471 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -70528,10 +70719,10 @@ paths: description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 - '422': *470 + default: *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -70575,10 +70766,10 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 - '422': *470 + default: *473 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70602,7 +70793,7 @@ paths: responses: '204': description: Response - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70634,12 +70825,12 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 - '422': *470 + '422': *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70683,7 +70874,7 @@ paths: application/json: schema: type: array - items: &819 + items: &820 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -70826,7 +71017,7 @@ paths: - type - url examples: - default: &820 + default: &821 value: - login: octocat id: 1 @@ -70885,7 +71076,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &474 title: Team Membership description: Team Membership type: object @@ -70913,7 +71104,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &821 + response-if-user-is-a-team-maintainer: &822 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -70976,9 +71167,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: &822 + response-if-users-membership-with-team-is-now-pending: &823 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -71052,9 +71243,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -71085,14 +71276,14 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &823 + schema: &824 title: Team Repository description: A team's access to a repository. type: object @@ -71118,7 +71309,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 forks: type: integer permissions: @@ -71820,8 +72011,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 requestBody: required: false content: @@ -71868,8 +72059,8 @@ paths: parameters: - *87 - *216 - - *474 - *475 + - *476 responses: '204': description: Response @@ -71902,10 +72093,10 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 - '422': *470 + default: *478 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71971,7 +72162,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -71983,7 +72174,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *470 + '422': *471 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -72015,9 +72206,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: &824 + response-if-child-teams-exist: &825 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -72170,7 +72361,7 @@ paths: resources: type: object properties: - core: &478 + core: &479 title: Rate Limit type: object properties: @@ -72187,21 +72378,21 @@ paths: - remaining - reset - used - graphql: *478 - search: *478 - code_search: *478 - source_import: *478 - integration_manifest: *478 - actions_runner_registration: *478 - scim: *478 - dependency_snapshots: *478 - dependency_sbom: *478 - code_scanning_autofix: *478 - copilot_usage_records: *478 + graphql: *479 + search: *479 + code_search: *479 + source_import: *479 + integration_manifest: *479 + actions_runner_registration: *479 + scim: *479 + dependency_snapshots: *479 + dependency_sbom: *479 + code_scanning_autofix: *479 + copilot_usage_records: *479 required: - core - search - rate: *478 + rate: *479 required: - rate - resources @@ -72315,14 +72506,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *479 + schema: *480 examples: default-response: summary: Default response @@ -72837,7 +73028,7 @@ paths: version: '2026-03-10' '403': *27 '404': *6 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72855,8 +73046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -73177,10 +73368,10 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 - '307': &482 + default: *482 + '307': &483 description: Temporary Redirect content: application/json: @@ -73209,8 +73400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -73232,7 +73423,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *482 + '307': *483 '404': *6 '409': *119 x-github: @@ -73256,11 +73447,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 - - &498 + - &499 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -73283,7 +73474,7 @@ paths: type: integer artifacts: type: array - items: &483 + items: &484 title: Artifact description: An artifact type: object @@ -73378,7 +73569,7 @@ paths: - expires_at - updated_at examples: - default: &499 + default: &500 value: total_count: 2 artifacts: @@ -73439,9 +73630,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *474 - *475 - - &484 + - *476 + - &485 name: artifact_id description: The unique identifier of the artifact. in: path @@ -73453,7 +73644,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -73491,9 +73682,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 responses: '204': description: Response @@ -73517,9 +73708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *474 - *475 - - *484 + - *476 + - *485 - name: archive_format in: path required: true @@ -73529,11 +73720,11 @@ paths: '302': description: Response headers: - Location: &613 + Location: &614 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': &661 + '410': &662 description: Gone content: application/json: @@ -73558,14 +73749,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &485 + schema: &486 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -73599,13 +73790,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *485 + schema: *486 examples: selected_actions: *42 responses: @@ -73634,14 +73825,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &486 + schema: &487 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -73675,13 +73866,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *486 + schema: *487 examples: selected_actions: *44 responses: @@ -73712,14 +73903,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *487 + schema: *488 examples: default: value: @@ -73745,11 +73936,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: - - *474 - *475 + - *476 - *17 - *19 - - &488 + - &489 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 @@ -73783,7 +73974,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: Repository actions caches description: Repository actions caches type: object @@ -73833,7 +74024,7 @@ paths: - total_count - actions_caches examples: - default: &490 + default: &491 value: total_count: 1 actions_caches: @@ -73865,23 +74056,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: - - *474 - *475 + - *476 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *488 + - *489 responses: '200': description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 + default: *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73901,8 +74092,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: - - *474 - *475 + - *476 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -73931,8 +74122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *109 responses: @@ -74015,8 +74206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *474 - *475 + - *476 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -74172,9 +74363,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: - - *474 - *475 - - &491 + - *476 + - &492 name: job_id description: The unique identifier of the job. in: path @@ -74186,7 +74377,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Job description: Information of a job execution in a workflow run type: object @@ -74533,9 +74724,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: - - *474 - *475 - - *491 + - *476 + - *492 responses: '302': description: Response @@ -74563,9 +74754,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: - - *474 - *475 - - *491 + - *476 + - *492 requestBody: required: false content: @@ -74592,7 +74783,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -74616,8 +74807,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: - - *474 - *475 + - *476 responses: '200': description: Status response @@ -74676,8 +74867,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -74716,7 +74907,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -74745,8 +74936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -74764,7 +74955,7 @@ paths: type: integer secrets: type: array - items: &504 + items: &505 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -74785,7 +74976,7 @@ paths: - created_at - updated_at examples: - default: &505 + default: &506 value: total_count: 2 secrets: @@ -74818,9 +75009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -74837,7 +75028,7 @@ paths: type: integer variables: type: array - items: &506 + items: &507 title: Actions Variable type: object properties: @@ -74871,7 +75062,7 @@ paths: - created_at - updated_at examples: - default: &507 + default: &508 value: total_count: 2 variables: @@ -74904,8 +75095,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -74914,11 +75105,11 @@ paths: schema: type: object properties: - enabled: &492 + enabled: &493 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *60 - selected_actions_url: *267 + selected_actions_url: *268 sha_pinning_required: *61 required: - enabled @@ -74949,8 +75140,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -74961,7 +75152,7 @@ paths: schema: type: object properties: - enabled: *492 + enabled: *493 allowed_actions: *60 sha_pinning_required: *61 required: @@ -74994,14 +75185,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &493 + schema: &494 type: object properties: access_level: @@ -75019,7 +75210,7 @@ paths: required: - access_level examples: - default: &494 + default: &495 value: access_level: organization x-github: @@ -75044,15 +75235,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 responses: '204': description: Response @@ -75076,14 +75267,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -75107,8 +75298,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: - - *474 - *475 + - *476 responses: '204': description: Empty response for successful settings update @@ -75118,7 +75309,7 @@ paths: required: true content: application/json: - schema: *270 + schema: *271 examples: default: summary: Set retention days @@ -75142,8 +75333,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -75151,7 +75342,7 @@ paths: application/json: schema: *62 examples: - default: *271 + default: *272 '404': *6 x-github: enabledForGitHubApps: true @@ -75170,8 +75361,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -75205,14 +75396,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default: *63 '403': *27 @@ -75234,13 +75425,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: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *273 + schema: *274 examples: default: *63 responses: @@ -75266,8 +75457,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -75298,8 +75489,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -75331,14 +75522,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: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: default: *69 x-github: @@ -75361,8 +75552,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: - - *474 - *475 + - *476 responses: '204': description: Success response @@ -75373,7 +75564,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *69 x-github: @@ -75402,8 +75593,8 @@ paths: in: query schema: type: string - - *474 - *475 + - *476 - *17 - *19 responses: @@ -75447,8 +75638,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -75456,9 +75647,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *282 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75480,8 +75671,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -75524,7 +75715,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *283 + '201': *284 '404': *6 '422': *7 '409': *119 @@ -75555,8 +75746,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -75564,7 +75755,7 @@ paths: application/json: schema: *79 examples: - default: *284 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75592,8 +75783,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: - - *474 - *475 + - *476 responses: '201': description: Response @@ -75601,7 +75792,7 @@ paths: application/json: schema: *79 examples: - default: *285 + default: *286 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75623,8 +75814,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: - - *474 - *475 + - *476 - *75 responses: '200': @@ -75633,7 +75824,7 @@ paths: application/json: schema: *76 examples: - default: *286 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75654,8 +75845,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: - - *474 - *475 + - *476 - *75 responses: '204': @@ -75682,8 +75873,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: - - *474 - *475 + - *476 - *75 responses: '200': *81 @@ -75708,8 +75899,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -75758,8 +75949,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: - - *474 - *475 + - *476 - *75 requestBody: required: true @@ -75809,11 +76000,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: - - *474 - *475 + - *476 - *75 responses: - '200': *287 + '200': *288 '404': *6 x-github: githubCloudOnly: false @@ -75840,10 +76031,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: - - *474 - *475 + - *476 - *75 - - *288 + - *289 responses: '200': *81 '404': *6 @@ -75871,9 +76062,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: - - *474 - *475 - - &510 + - *476 + - &511 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. @@ -75881,7 +76072,7 @@ paths: required: false schema: type: string - - &511 + - &512 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -75889,7 +76080,7 @@ paths: required: false schema: type: string - - &512 + - &513 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -75898,7 +76089,7 @@ paths: required: false schema: type: string - - &513 + - &514 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 @@ -75925,7 +76116,7 @@ paths: - pending - *17 - *19 - - &514 + - &515 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)." @@ -75934,7 +76125,7 @@ paths: schema: type: string format: date-time - - &495 + - &496 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -75943,13 +76134,13 @@ paths: schema: type: boolean default: false - - &515 + - &516 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &516 + - &517 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -75972,7 +76163,7 @@ paths: type: integer workflow_runs: type: array - items: &496 + items: &497 title: Workflow Run description: An invocation of a workflow type: object @@ -76089,7 +76280,7 @@ paths: type: - array - 'null' - items: *224 + items: *225 created_at: type: string format: date-time @@ -76150,7 +76341,7 @@ paths: head_commit: anyOf: - type: 'null' - - &540 + - &541 title: Simple Commit description: A commit. type: object @@ -76224,8 +76415,8 @@ paths: - timestamp - author - committer - repository: *280 - head_repository: *280 + repository: *281 + head_repository: *281 head_repository_id: type: integer examples: @@ -76265,7 +76456,7 @@ paths: - workflow_url - pull_requests examples: - default: &517 + default: &518 value: total_count: 1 workflow_runs: @@ -76501,24 +76692,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *474 - *475 - - &497 + - *476 + - &498 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: &500 + default: &501 value: id: 30433642 name: Build @@ -76759,9 +76950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -76784,9 +76975,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -76914,15 +77105,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -76949,12 +77140,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *19 - - *498 + - *499 - *110 responses: '200': @@ -76971,9 +77162,9 @@ paths: type: integer artifacts: type: array - items: *483 + items: *484 examples: - default: *499 + default: *500 headers: Link: *45 x-github: @@ -76997,25 +77188,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *474 - *475 - - *497 - - &501 + - *476 + - *498 + - &502 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *495 + - *496 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *500 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77038,10 +77229,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: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 - *17 - *19 responses: @@ -77059,9 +77250,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: &503 + default: &504 value: total_count: 1 jobs: @@ -77174,10 +77365,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *474 - *475 - - *497 - - *501 + - *476 + - *498 + - *502 responses: '302': description: Response @@ -77205,15 +77396,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77253,9 +77444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 - *17 - *108 - *109 @@ -77432,9 +77623,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -77501,15 +77692,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '202': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -77536,9 +77727,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: - - *474 - *475 - - *497 + - *476 + - *498 - 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 @@ -77568,9 +77759,9 @@ paths: type: integer jobs: type: array - items: *502 + items: *503 examples: - default: *503 + default: *504 headers: Link: *45 x-github: @@ -77595,9 +77786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '302': description: Response @@ -77624,9 +77815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '204': description: Response @@ -77653,9 +77844,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: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -77724,7 +77915,7 @@ paths: items: type: object properties: - type: &628 + type: &629 type: string description: The type of reviewer. enum: @@ -77735,7 +77926,7 @@ paths: reviewer: anyOf: - *4 - - *313 + - *314 required: - environment - wait_timer @@ -77810,9 +78001,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: true content: @@ -77862,7 +78053,7 @@ paths: application/json: schema: type: array - items: &615 + items: &616 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -77974,7 +78165,7 @@ paths: - created_at - updated_at examples: - default: &616 + default: &617 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -78030,9 +78221,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -78054,7 +78245,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78077,9 +78268,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: - - *474 - *475 - - *497 + - *476 + - *498 requestBody: required: false content: @@ -78101,7 +78292,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78134,9 +78325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *474 - *475 - - *497 + - *476 + - *498 responses: '200': description: Response @@ -78273,8 +78464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78292,9 +78483,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -78319,16 +78510,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78350,17 +78541,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: &518 + default: &519 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -78386,9 +78577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -78419,7 +78610,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78445,9 +78636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -78472,9 +78663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -78491,9 +78682,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -78516,8 +78707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -78544,7 +78735,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -78569,17 +78760,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &519 + default: &520 value: name: USERNAME value: octocat @@ -78605,9 +78796,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -78649,9 +78840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -78676,8 +78867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -78695,7 +78886,7 @@ paths: type: integer workflows: type: array - items: &508 + items: &509 title: Workflow description: A GitHub Actions workflow type: object @@ -78813,9 +79004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *474 - *475 - - &509 + - *476 + - &510 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -78830,7 +79021,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default: value: @@ -78863,9 +79054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -78890,9 +79081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -78990,9 +79181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '204': description: Response @@ -79019,19 +79210,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: - - *474 - *475 - - *509 + - *476 - *510 - *511 - *512 - *513 + - *514 - *17 - *19 - - *514 - - *495 - *515 + - *496 - *516 + - *517 responses: '200': description: Response @@ -79047,9 +79238,9 @@ paths: type: integer workflow_runs: type: array - items: *496 + items: *497 examples: - default: *517 + default: *518 headers: Link: *45 x-github: @@ -79082,9 +79273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *474 - *475 - - *509 + - *476 + - *510 responses: '200': description: Response @@ -79145,8 +79336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *474 - *475 + - *476 - *110 - *17 - *108 @@ -79319,8 +79510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -79338,9 +79529,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -79364,9 +79555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -79383,9 +79574,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -79410,8 +79601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -79429,9 +79620,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -79456,16 +79647,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79487,17 +79678,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79519,9 +79710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -79552,7 +79743,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -79578,9 +79769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -79605,9 +79796,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *474 - *475 - - *299 + - *476 + - *300 - *19 responses: '200': @@ -79624,9 +79815,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -79649,8 +79840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79677,7 +79868,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -79702,17 +79893,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79733,9 +79924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 requestBody: required: true content: @@ -79777,9 +79968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *474 - *475 - - *293 + - *476 + - *294 responses: '204': description: Response @@ -79800,8 +79991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -79838,8 +80029,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: - - *474 - *475 + - *476 - name: assignee in: path required: true @@ -79875,8 +80066,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -79986,8 +80177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *474 - *475 + - *476 - *17 - *108 - *109 @@ -80044,7 +80235,7 @@ paths: initiator: type: string examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80078,8 +80269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -80087,7 +80278,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Autolink reference description: An autolink reference. type: object @@ -80146,8 +80337,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -80186,9 +80377,9 @@ paths: description: response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: id: 1 key_prefix: TICKET- @@ -80219,9 +80410,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: - - *474 - *475 - - &523 + - *476 + - &524 name: autolink_id description: The unique identifier of the autolink. in: path @@ -80233,9 +80424,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '404': *6 x-github: githubCloudOnly: false @@ -80255,9 +80446,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: - - *474 - *475 - - *523 + - *476 + - *524 responses: '204': description: Response @@ -80281,8 +80472,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: - - *474 - *475 + - *476 responses: '200': description: Response if Dependabot is enabled @@ -80332,8 +80523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -80354,8 +80545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -80375,8 +80566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *474 - *475 + - *476 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -80414,7 +80605,7 @@ paths: - url protected: type: boolean - protection: &525 + protection: &526 title: Branch Protection description: Branch Protection type: object @@ -80457,7 +80648,7 @@ paths: required: - contexts - checks - enforce_admins: &528 + enforce_admins: &529 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -80474,7 +80665,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &530 + required_pull_request_reviews: &531 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -80496,7 +80687,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *313 + items: *314 apps: description: The list of apps with review dismissal access. @@ -80528,7 +80719,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *313 + items: *314 apps: description: The list of apps allowed to bypass pull request requirements. @@ -80558,7 +80749,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &527 + restrictions: &528 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -80621,7 +80812,7 @@ paths: type: string teams: type: array - items: *313 + items: *314 apps: type: array items: @@ -80851,9 +81042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *474 - *475 - - &526 + - *476 + - &527 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). @@ -80867,14 +81058,14 @@ paths: description: Response content: application/json: - schema: &536 + schema: &537 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &587 + commit: &588 title: Commit description: Commit type: object @@ -80913,7 +81104,7 @@ paths: author: anyOf: - type: 'null' - - &524 + - &525 title: Git User description: Metaproperties for Git author/committer information. @@ -80935,7 +81126,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 message: type: string examples: @@ -80959,7 +81150,7 @@ paths: required: - sha - url - verification: &646 + verification: &647 title: Verification type: object properties: @@ -80995,14 +81186,14 @@ paths: author: oneOf: - *4 - - *291 + - *292 type: - 'null' - object committer: oneOf: - *4 - - *291 + - *292 type: - 'null' - object @@ -81039,7 +81230,7 @@ paths: type: integer files: type: array - items: &598 + items: &599 title: Diff Entry description: Diff Entry type: object @@ -81135,7 +81326,7 @@ paths: - self protected: type: boolean - protection: *525 + protection: *526 protection_url: type: string format: uri @@ -81244,7 +81435,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *480 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -81266,15 +81457,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: default: value: @@ -81468,9 +81659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -81730,7 +81921,7 @@ paths: url: type: string format: uri - required_status_checks: &533 + required_status_checks: &534 title: Status Check Policy description: Status Check Policy type: object @@ -81811,7 +82002,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -81829,7 +82020,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 apps: type: array items: *5 @@ -81889,7 +82080,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *527 + restrictions: *528 required_conversation_resolution: type: object properties: @@ -82001,9 +82192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82028,17 +82219,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -82060,17 +82251,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82089,9 +82280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82116,17 +82307,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: &531 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -82222,9 +82413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82322,9 +82513,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '422': *15 x-github: githubCloudOnly: false @@ -82345,9 +82536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82374,17 +82565,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &532 + default: &533 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -82407,17 +82598,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *532 + default: *533 '404': *6 x-github: githubCloudOnly: false @@ -82437,9 +82628,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82464,17 +82655,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &534 + default: &535 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -82500,9 +82691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82554,9 +82745,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '404': *6 '422': *15 x-github: @@ -82578,9 +82769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82604,9 +82795,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82640,9 +82831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82709,9 +82900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -82775,9 +82966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -82843,15 +83034,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: default: value: @@ -82942,9 +83133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 responses: '204': description: Response @@ -82967,9 +83158,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -82979,7 +83170,7 @@ paths: type: array items: *5 examples: - default: &535 + default: &536 value: - id: 1 slug: octoapp @@ -83036,9 +83227,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83072,7 +83263,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -83093,9 +83284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83129,7 +83320,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -83150,9 +83341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83186,7 +83377,7 @@ paths: type: array items: *5 examples: - default: *535 + default: *536 '422': *15 x-github: githubCloudOnly: false @@ -83208,9 +83399,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -83218,9 +83409,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -83240,9 +83431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -83278,9 +83469,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -83301,9 +83492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: false content: @@ -83339,9 +83530,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -83362,9 +83553,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: content: application/json: @@ -83399,9 +83590,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -83423,9 +83614,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: - - *474 - *475 - - *526 + - *476 + - *527 responses: '200': description: Response @@ -83459,9 +83650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83519,9 +83710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83579,9 +83770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83641,9 +83832,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 requestBody: required: true content: @@ -83665,7 +83856,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -83779,8 +83970,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -83794,9 +83985,9 @@ paths: application/json: schema: type: array - items: *308 + items: *309 examples: - default: *309 + default: *310 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -83816,8 +84007,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -83831,7 +84022,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: default: value: @@ -83890,8 +84081,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 @@ -83905,9 +84096,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 '404': *6 '403': *27 '500': *38 @@ -83931,8 +84122,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -83944,7 +84135,7 @@ paths: description: A single bypass request. content: application/json: - schema: *311 + schema: *312 examples: default: value: @@ -84002,8 +84193,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_request_number in: path required: true @@ -84074,8 +84265,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *474 - *475 + - *476 - name: bypass_response_id in: path required: true @@ -84108,8 +84299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -84388,7 +84579,7 @@ paths: description: Response content: application/json: - schema: &537 + schema: &538 title: CheckRun description: A check performed on the code of a given code change type: object @@ -84523,8 +84714,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *224 - deployment: &886 + items: *225 + deployment: &887 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -84811,9 +85002,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *474 - *475 - - &538 + - *476 + - &539 name: check_run_id description: The unique identifier of the check run. in: path @@ -84825,9 +85016,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: &539 + default: &540 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -84927,9 +85118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 requestBody: required: true content: @@ -85169,9 +85360,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85191,9 +85382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *474 - *475 - - *538 + - *476 + - *539 - *17 - *19 responses: @@ -85303,15 +85494,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *474 - *475 - - *538 + - *476 + - *539 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -85349,8 +85540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -85372,7 +85563,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &541 + schema: &542 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -85454,12 +85645,12 @@ paths: type: - array - 'null' - items: *224 + items: *225 app: anyOf: - type: 'null' - *5 - repository: *280 + repository: *281 created_at: type: - string @@ -85470,7 +85661,7 @@ paths: - string - 'null' format: date-time - head_commit: *540 + head_commit: *541 latest_check_runs_count: type: integer check_runs_url: @@ -85498,7 +85689,7 @@ paths: - check_runs_url - pull_requests examples: - default: &542 + default: &543 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -85789,9 +85980,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85810,8 +86001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -85872,7 +86063,7 @@ paths: required: - app_id - setting - repository: *280 + repository: *281 examples: default: value: @@ -86120,9 +86311,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *474 - *475 - - &543 + - *476 + - &544 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -86134,9 +86325,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86159,17 +86350,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: - - *474 - *475 - - *543 - - &593 + - *476 + - *544 + - &594 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &594 + - &595 name: status description: Returns check runs with the specified `status`. in: query @@ -86208,9 +86399,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: &595 + default: &596 value: total_count: 1 check_runs: @@ -86312,15 +86503,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *474 - *475 - - *543 + - *476 + - *544 responses: '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -86347,21 +86538,21 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - &559 + - &560 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: *544 - - &560 + schema: *545 + - &561 name: pr description: The number of the pull request for the results you want to list. in: query @@ -86386,13 +86577,13 @@ paths: be returned. in: query required: false - schema: *319 + schema: *320 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *545 + schema: *546 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -86416,7 +86607,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -86424,11 +86615,11 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 - rule: *549 - tool: *550 - most_recent_instance: *551 + dismissed_reason: *548 + dismissed_comment: *549 + rule: *550 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -86551,7 +86742,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &552 + '403': &553 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -86578,9 +86769,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: - - *474 - *475 - - &553 + - *476 + - &554 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -86594,7 +86785,7 @@ paths: description: Response content: application/json: - schema: &554 + schema: &555 type: object properties: number: *130 @@ -86602,7 +86793,7 @@ paths: updated_at: *138 url: *135 html_url: *136 - instances_url: *546 + instances_url: *547 state: *113 fixed_at: *140 dismissed_by: @@ -86610,8 +86801,8 @@ paths: - type: 'null' - *4 dismissed_at: *139 - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 rule: type: object properties: @@ -86673,8 +86864,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *550 - most_recent_instance: *551 + tool: *551 + most_recent_instance: *552 dismissal_approved_by: anyOf: - type: 'null' @@ -86770,7 +86961,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -86790,9 +86981,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -86807,8 +86998,8 @@ paths: enum: - open - dismissed - dismissed_reason: *547 - dismissed_comment: *548 + dismissed_reason: *548 + dismissed_comment: *549 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -86836,7 +87027,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -86912,7 +87103,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &558 + '403': &559 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -86939,15 +87130,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 type: object properties: status: @@ -86974,13 +87165,13 @@ paths: - description - started_at examples: - default: &556 + default: &557 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &557 + '400': &558 description: Bad Request content: application/json: @@ -86991,7 +87182,7 @@ 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': *552 + '403': *553 '404': *6 '500': *38 x-github: @@ -87016,29 +87207,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: - - *474 - *475 - - *553 + - *476 + - *554 responses: '200': description: OK content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '202': description: Accepted content: application/json: - schema: *555 + schema: *556 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *557 + '400': *558 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -87070,9 +87261,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: false content: @@ -87118,8 +87309,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *557 - '403': *558 + '400': *558 + '403': *559 '404': *6 '422': description: Unprocessable Entity @@ -87143,13 +87334,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 - - *559 - *560 + - *561 responses: '200': description: Response @@ -87160,10 +87351,10 @@ paths: items: type: object properties: - ref: *544 - analysis_key: *561 - environment: *562 - category: *563 + ref: *545 + analysis_key: *562 + environment: *563 + category: *564 state: type: - string @@ -87180,7 +87371,7 @@ paths: properties: text: type: string - location: *564 + location: *565 html_url: type: string classifications: @@ -87188,7 +87379,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *565 + items: *566 examples: default: value: @@ -87225,7 +87416,7 @@ paths: end_column: 50 classifications: - source - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87259,25 +87450,25 @@ 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: - - *474 - *475 - - *317 + - *476 - *318 + - *319 - *19 - *17 - - *560 + - *561 - 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: *544 + schema: *545 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &566 + schema: &567 type: string description: An identifier for the upload. examples: @@ -87299,23 +87490,23 @@ paths: application/json: schema: type: array - items: &567 + items: &568 type: object properties: - ref: *544 - commit_sha: &575 + ref: *545 + commit_sha: &576 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *561 + analysis_key: *562 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *563 + category: *564 error: type: string examples: @@ -87340,8 +87531,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *566 - tool: *550 + sarif_id: *567 + tool: *551 deletable: type: boolean warning: @@ -87403,7 +87594,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87439,8 +87630,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -87453,7 +87644,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: response: summary: application/json response @@ -87507,7 +87698,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *552 + '403': *553 '404': *6 '422': description: Response if analysis could not be processed @@ -87594,8 +87785,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: - - *474 - *475 + - *476 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -87651,7 +87842,7 @@ 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': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -87673,8 +87864,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -87682,7 +87873,7 @@ paths: application/json: schema: type: array - items: &568 + items: &569 title: CodeQL Database description: A CodeQL database. type: object @@ -87794,7 +87985,7 @@ 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': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87823,8 +88014,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: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -87836,7 +88027,7 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: default: value: @@ -87868,9 +88059,9 @@ 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': &602 + '302': &603 description: Found - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -87892,8 +88083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *474 - *475 + - *476 - name: language in: path description: The language of the CodeQL database. @@ -87903,7 +88094,7 @@ paths: responses: '204': description: Response - '403': *558 + '403': *559 '404': *6 '503': *195 x-github: @@ -87931,8 +88122,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -87941,7 +88132,7 @@ paths: type: object additionalProperties: false properties: - language: &569 + language: &570 type: string description: The language targeted by the CodeQL query enum: @@ -88021,7 +88212,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &573 + schema: &574 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -88031,7 +88222,7 @@ paths: description: The ID of the variant analysis. controller_repo: *120 actor: *4 - query_language: *569 + query_language: *570 query_pack_url: type: string description: The download url for the query pack. @@ -88079,7 +88270,7 @@ paths: items: type: object properties: - repository: &570 + repository: &571 title: Repository Identifier description: Repository Identifier type: object @@ -88121,7 +88312,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &574 + analysis_status: &575 type: string description: The new status of the CodeQL variant analysis repository task. @@ -88153,7 +88344,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &571 + access_mismatch_repos: &572 type: object properties: repository_count: @@ -88168,7 +88359,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: *570 + items: *571 required: - repository_count - repositories @@ -88191,8 +88382,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *571 - over_limit_repos: *571 + no_codeql_db_repos: *572 + over_limit_repos: *572 required: - access_mismatch_repos - not_found_repos @@ -88208,7 +88399,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &572 + value: &573 summary: Default response value: id: 1 @@ -88354,10 +88545,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *572 + value: *573 repository_lists: summary: Response for a successful variant analysis submission - value: *572 + value: *573 '404': *6 '422': description: Unable to process variant analysis submission @@ -88385,8 +88576,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: - - *474 - *475 + - *476 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -88398,9 +88589,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *572 + default: *573 '404': *6 '503': *195 x-github: @@ -88423,7 +88614,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: - - *474 + - *475 - name: repo in: path description: The name of the controller repository. @@ -88458,7 +88649,7 @@ paths: type: object properties: repository: *120 - analysis_status: *574 + analysis_status: *575 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -88583,8 +88774,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -88694,7 +88885,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *552 + '403': *553 '404': *6 '503': *195 x-github: @@ -88715,8 +88906,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88785,7 +88976,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -88810,7 +89001,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *558 + '403': *559 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -88881,8 +89072,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -88890,7 +89081,7 @@ paths: schema: type: object properties: - commit_sha: *575 + commit_sha: *576 ref: type: string description: |- @@ -88950,7 +89141,7 @@ paths: schema: type: object properties: - id: *566 + id: *567 url: type: string description: The REST API URL for checking the status of the upload. @@ -88964,7 +89155,7 @@ 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': *558 + '403': *559 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -88987,8 +89178,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: - - *474 - *475 + - *476 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -89036,7 +89227,7 @@ 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': *552 + '403': *553 '404': description: Not Found if the sarif id does not match any upload '503': *195 @@ -89061,8 +89252,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -89143,8 +89334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *474 - *475 + - *476 - 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 @@ -89272,8 +89463,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -89289,7 +89480,7 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: default: value: @@ -89587,8 +89778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -89652,17 +89843,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '400': *14 '401': *23 '403': *27 @@ -89691,8 +89882,8 @@ paths: parameters: - *17 - *19 - - *474 - *475 + - *476 responses: '200': description: Response @@ -89756,8 +89947,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: - - *474 - *475 + - *476 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -89794,9 +89985,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: &830 + default: &831 value: total_count: 2 machines: @@ -89836,8 +90027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *474 - *475 + - *476 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -89924,8 +90115,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: - - *474 - *475 + - *476 - 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 @@ -89994,8 +90185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -90013,7 +90204,7 @@ paths: type: integer secrets: type: array - items: &581 + items: &582 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -90034,7 +90225,7 @@ paths: - created_at - updated_at examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -90057,16 +90248,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90086,17 +90277,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90116,9 +90307,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: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -90146,7 +90337,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -90170,9 +90361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -90200,8 +90391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *474 - *475 + - *476 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -90239,7 +90430,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Collaborator description: Collaborator type: object @@ -90432,8 +90623,8 @@ 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: - - *474 - *475 + - *476 - *143 responses: '204': @@ -90480,8 +90671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 requestBody: required: false @@ -90508,7 +90699,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &659 + schema: &660 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -90520,7 +90711,7 @@ paths: format: int64 examples: - 42 - repository: *280 + repository: *281 invitee: anyOf: - type: 'null' @@ -90696,7 +90887,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *255 + schema: *256 '403': *27 x-github: triggersNotification: true @@ -90736,8 +90927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *474 - *475 + - *476 - *143 responses: '204': @@ -90769,8 +90960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *474 - *475 + - *476 - *143 responses: '200': @@ -90791,7 +90982,7 @@ paths: user: anyOf: - type: 'null' - - *583 + - *584 required: - permission - role_name @@ -90845,8 +91036,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -90856,7 +91047,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Commit Comment description: Commit Comment type: object @@ -90897,8 +91088,8 @@ paths: updated_at: type: string format: date-time - author_association: *218 - reactions: *219 + author_association: *219 + reactions: *220 required: - url - html_url @@ -90914,7 +91105,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &590 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90973,17 +91164,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &590 + default: &591 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91040,9 +91231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -91064,7 +91255,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: default: value: @@ -91115,9 +91306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -91138,9 +91329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -91166,7 +91357,7 @@ paths: application/json: schema: type: array - items: &585 + items: &586 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -91210,7 +91401,7 @@ paths: - content - created_at examples: - default: &663 + default: &664 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91255,9 +91446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -91289,9 +91480,9 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: &586 + default: &587 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91320,9 +91511,9 @@ paths: description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -91344,10 +91535,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *474 - *475 - - *235 - - &664 + - *476 + - *236 + - &665 name: reaction_id description: The unique identifier of the reaction. in: path @@ -91402,8 +91593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *474 - *475 + - *476 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -91459,9 +91650,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: &727 + default: &728 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -91555,9 +91746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *474 - *475 - - &588 + - *476 + - &589 name: commit_sha description: The SHA of the commit. in: path @@ -91629,9 +91820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -91641,9 +91832,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *589 + default: *590 headers: Link: *45 x-github: @@ -91671,9 +91862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *474 - *475 - - *588 + - *476 + - *589 requestBody: required: true content: @@ -91708,9 +91899,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *590 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91738,9 +91929,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: - - *474 - *475 - - *588 + - *476 + - *589 - *17 - *19 responses: @@ -91750,9 +91941,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: &719 + default: &720 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -92289,11 +92480,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *474 - *475 + - *476 - *19 - *17 - - &592 + - &593 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)" @@ -92308,9 +92499,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &705 + default: &706 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -92398,7 +92589,7 @@ paths: schema: type: string examples: - default: &599 + default: &600 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -92411,7 +92602,7 @@ paths: schema: type: string examples: - default: &600 + default: &601 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -92464,11 +92655,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: - - *474 - *475 - - *592 + - *476 - *593 - *594 + - *595 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -92502,9 +92693,9 @@ paths: type: integer check_runs: type: array - items: *537 + items: *538 examples: - default: *595 + default: *596 headers: Link: *45 x-github: @@ -92529,9 +92720,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: - - *474 - *475 - - *592 + - *476 + - *593 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -92539,7 +92730,7 @@ paths: schema: type: integer example: 1 - - *593 + - *594 - *17 - *19 responses: @@ -92557,7 +92748,7 @@ paths: type: integer check_suites: type: array - items: *541 + items: *542 examples: default: value: @@ -92757,9 +92948,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: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -92830,7 +93021,7 @@ paths: type: string total_count: type: integer - repository: *280 + repository: *281 commit_url: type: string format: uri @@ -92961,9 +93152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *474 - *475 - - *592 + - *476 + - *593 - *17 - *19 responses: @@ -92973,7 +93164,7 @@ paths: application/json: schema: type: array - items: &782 + items: &783 title: Status description: The status of a commit. type: object @@ -93054,7 +93245,7 @@ paths: site_admin: false headers: Link: *45 - '301': *480 + '301': *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93082,8 +93273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -93116,11 +93307,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *596 + - *597 code_of_conduct_file: anyOf: - type: 'null' - - &597 + - &598 title: Community Health File type: object properties: @@ -93136,23 +93327,23 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 contributing: anyOf: - type: 'null' - - *597 + - *598 readme: anyOf: - type: 'null' - - *597 + - *598 issue_template: anyOf: - type: 'null' - - *597 + - *598 pull_request_template: anyOf: - type: 'null' - - *597 + - *598 required: - code_of_conduct - code_of_conduct_file @@ -93281,8 +93472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *474 - *475 + - *476 - *19 - *17 - name: basehead @@ -93330,8 +93521,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *587 - merge_base_commit: *587 + base_commit: *588 + merge_base_commit: *588 status: type: string enum: @@ -93355,10 +93546,10 @@ paths: - 6 commits: type: array - items: *587 + items: *588 files: type: array - items: *598 + items: *599 required: - url - html_url @@ -93604,12 +93795,12 @@ paths: schema: type: string examples: - default: *599 + default: *600 application/vnd.github.patch: schema: type: string examples: - default: *600 + default: *601 '404': *6 '500': *38 '503': *195 @@ -93654,8 +93845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -93825,7 +94016,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &601 + response-if-content-is-a-file-github-object: &602 summary: Response if content is a file value: type: file @@ -93962,7 +94153,7 @@ paths: - size - type - url - - &732 + - &733 title: Content File description: Content File type: object @@ -94180,7 +94371,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *601 + response-if-content-is-a-file: *602 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -94249,7 +94440,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *602 + '302': *603 '304': *35 x-github: githubCloudOnly: false @@ -94302,8 +94493,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -94398,7 +94589,7 @@ paths: description: Response content: application/json: - schema: &603 + schema: &604 title: File Commit description: File Commit type: object @@ -94554,7 +94745,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: example-for-creating-a-file: value: @@ -94608,7 +94799,7 @@ paths: schema: oneOf: - *3 - - &641 + - &642 description: Repository rule violation was detected type: object properties: @@ -94629,7 +94820,7 @@ paths: items: type: object properties: - placeholder_id: &774 + placeholder_id: &775 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -94661,8 +94852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *474 - *475 + - *476 - name: path description: path parameter in: path @@ -94723,7 +94914,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: default: value: @@ -94778,8 +94969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *474 - *475 + - *476 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -94909,8 +95100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -95043,24 +95234,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *474 - *475 - - *338 + - *476 - *339 - *340 - *341 - *342 + - *343 - 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 - - *343 - - *604 - *344 + - *605 - *345 - *346 + - *347 - *110 - *108 - *109 @@ -95072,7 +95263,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 type: object description: A Dependabot alert. properties: @@ -95123,7 +95314,7 @@ paths: - transitive - inconclusive - - security_advisory: *605 + security_advisory: *606 security_vulnerability: *134 url: *135 html_url: *136 @@ -95154,8 +95345,8 @@ paths: dismissal. maxLength: 280 fixed_at: *140 - auto_dismissed_at: *606 - dismissal_request: *607 + auto_dismissed_at: *607 + dismissal_request: *608 assignees: type: array description: The users assigned to this alert. @@ -95410,9 +95601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *474 - *475 - - &609 + - *476 + - &610 name: alert_number in: path description: |- @@ -95427,7 +95618,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -95559,9 +95750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *474 - *475 - - *609 + - *476 + - *610 requestBody: required: true content: @@ -95634,7 +95825,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -95764,8 +95955,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -95783,7 +95974,7 @@ paths: type: integer secrets: type: array - items: &612 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -95837,16 +96028,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95866,15 +96057,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -95900,9 +96091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 requestBody: required: true content: @@ -95930,7 +96121,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -95954,9 +96145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *474 - *475 - - *290 + - *476 + - *291 responses: '204': description: Response @@ -95978,8 +96169,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: - - *474 - *475 + - *476 - 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 @@ -96156,8 +96347,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -96416,8 +96607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 - name: sbom_uuid in: path required: true @@ -96428,7 +96619,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *613 + Location: *614 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -96449,8 +96640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -96488,8 +96679,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -96572,7 +96763,7 @@ paths: - version - url additionalProperties: false - metadata: &614 + metadata: &615 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -96611,7 +96802,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *614 + metadata: *615 resolved: type: object description: A collection of resolved package dependencies. @@ -96625,7 +96816,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *614 + metadata: *615 relationship: type: string description: A notation of whether a dependency is requested @@ -96758,8 +96949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *474 - *475 + - *476 - name: sha description: The SHA recorded at creation time. in: query @@ -96800,9 +96991,9 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: - default: *616 + default: *617 headers: Link: *45 x-github: @@ -96868,8 +97059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -96951,7 +97142,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: simple-example: summary: Simple example @@ -97024,9 +97215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *474 - *475 - - &617 + - *476 + - &618 name: deployment_id description: deployment_id parameter in: path @@ -97038,7 +97229,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: default: value: @@ -97103,9 +97294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *474 - *475 - - *617 + - *476 + - *618 responses: '204': description: Response @@ -97127,9 +97318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *474 - *475 - - *617 + - *476 + - *618 - *17 - *19 responses: @@ -97139,7 +97330,7 @@ paths: application/json: schema: type: array - items: &618 + items: &619 title: Deployment Status description: The status of a deployment. type: object @@ -97303,9 +97494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 requestBody: required: true content: @@ -97380,9 +97571,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: &619 + default: &620 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -97438,9 +97629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *474 - *475 - - *617 + - *476 + - *618 - name: status_id in: path required: true @@ -97451,9 +97642,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *619 examples: - default: *619 + default: *620 '404': *6 x-github: githubCloudOnly: false @@ -97480,12 +97671,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -97495,9 +97686,9 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: - default: *625 + default: *626 '404': *6 '403': *27 '500': *38 @@ -97521,8 +97712,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97534,7 +97725,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -97590,8 +97781,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97650,12 +97841,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 - - *620 + - *476 - *621 - *622 - *623 + - *624 - *17 - *19 responses: @@ -97665,9 +97856,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *627 + default: *628 '404': *6 '403': *27 '500': *38 @@ -97691,8 +97882,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97704,7 +97895,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -97755,8 +97946,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97794,7 +97985,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -97845,8 +98036,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97917,8 +98108,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -97951,12 +98142,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - *103 - *104 - *105 - - *352 + - *353 - *17 - *19 responses: @@ -97966,9 +98157,9 @@ paths: application/json: schema: type: array - items: *354 + items: *355 examples: - default: *355 + default: *356 '404': *6 '403': *27 '500': *38 @@ -97993,8 +98184,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -98006,7 +98197,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *354 + schema: *355 examples: default: value: @@ -98064,8 +98255,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *474 - *475 + - *476 - name: alert_number in: path required: true @@ -98134,8 +98325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -98192,8 +98383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -98211,7 +98402,7 @@ paths: - 5 environments: type: array - items: &629 + items: &630 title: Environment description: Details of a deployment environment type: object @@ -98273,7 +98464,7 @@ paths: type: string examples: - wait_timer - wait_timer: &631 + wait_timer: &632 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -98315,11 +98506,11 @@ paths: items: type: object properties: - type: *628 + type: *629 reviewer: anyOf: - *4 - - *313 + - *314 required: - id - node_id @@ -98342,7 +98533,7 @@ paths: - id - node_id - type - deployment_branch_policy: &632 + deployment_branch_policy: &633 type: - object - 'null' @@ -98459,9 +98650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *474 - *475 - - &630 + - *476 + - &631 name: environment_name in: path required: true @@ -98474,9 +98665,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &633 + default: &634 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -98560,9 +98751,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: false content: @@ -98572,7 +98763,7 @@ paths: - object - 'null' properties: - wait_timer: *631 + wait_timer: *632 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -98591,14 +98782,14 @@ paths: items: type: object properties: - type: *628 + type: *629 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *632 + deployment_branch_policy: *633 additionalProperties: false examples: default: @@ -98618,9 +98809,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *633 + default: *634 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -98644,9 +98835,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '204': description: Default response @@ -98671,9 +98862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -98692,7 +98883,7 @@ paths: - 2 branch_policies: type: array - items: &634 + items: &635 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -98753,9 +98944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -98803,9 +98994,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - example-wildcard: &635 + example-wildcard: &636 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -98847,10 +99038,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - &636 + - *476 + - *631 + - &637 name: branch_policy_id in: path required: true @@ -98862,9 +99053,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98883,10 +99074,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 requestBody: required: true content: @@ -98915,9 +99106,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98936,10 +99127,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *474 - *475 - - *630 - - *636 + - *476 + - *631 + - *637 responses: '204': description: Response @@ -98964,9 +99155,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: - - *630 + - *631 + - *476 - *475 - - *474 responses: '200': description: List of deployment protection rules @@ -98983,7 +99174,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &637 + items: &638 title: Deployment protection rule description: Deployment protection rule type: object @@ -99005,7 +99196,7 @@ paths: for the environment. examples: - true - app: &638 + app: &639 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -99108,9 +99299,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: - - *630 + - *631 + - *476 - *475 - - *474 requestBody: content: application/json: @@ -99131,9 +99322,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *637 + schema: *638 examples: - default: &639 + default: &640 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -99168,9 +99359,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: - - *630 + - *631 + - *476 - *475 - - *474 - *19 - *17 responses: @@ -99190,7 +99381,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *638 + items: *639 examples: default: value: @@ -99225,10 +99416,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: - - *474 - *475 - - *630 - - &640 + - *476 + - *631 + - &641 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -99240,9 +99431,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *639 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99263,10 +99454,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: - - *630 + - *631 + - *476 - *475 - - *474 - - *640 + - *641 responses: '204': description: Response @@ -99292,9 +99483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *474 - *475 - - *630 + - *476 + - *631 - *17 - *19 responses: @@ -99312,9 +99503,9 @@ paths: type: integer secrets: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *45 x-github: @@ -99339,17 +99530,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *474 - *475 - - *630 + - *476 + - *631 responses: '200': description: Response content: application/json: - schema: *296 + schema: *297 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99371,18 +99562,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '200': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99404,10 +99595,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 requestBody: required: true content: @@ -99438,7 +99629,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -99464,10 +99655,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *474 - *475 - - *630 - - *290 + - *476 + - *631 + - *291 responses: '204': description: Default response @@ -99492,10 +99683,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *474 - *475 - - *630 - - *299 + - *476 + - *631 + - *300 - *19 responses: '200': @@ -99512,9 +99703,9 @@ paths: type: integer variables: type: array - items: *506 + items: *507 examples: - default: *507 + default: *508 headers: Link: *45 x-github: @@ -99537,9 +99728,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *474 - *475 - - *630 + - *476 + - *631 requestBody: required: true content: @@ -99566,7 +99757,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -99591,18 +99782,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *474 - *475 - - *630 - - *293 + - *476 + - *631 + - *294 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99623,10 +99814,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 requestBody: required: true content: @@ -99668,10 +99859,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *474 - *475 - - *293 - - *630 + - *476 + - *294 + - *631 responses: '204': description: Response @@ -99693,8 +99884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -99704,7 +99895,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: 200-response: value: @@ -99762,8 +99953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *474 - *475 + - *476 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -99785,7 +99976,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -99922,8 +100113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -99956,9 +100147,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -99979,8 +100170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100039,8 +100230,8 @@ paths: application/json: schema: oneOf: - - *255 - - *641 + - *256 + - *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100065,8 +100256,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *474 - *475 + - *476 - name: file_sha in: path required: true @@ -100166,8 +100357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100276,7 +100467,7 @@ paths: description: Response content: application/json: - schema: &642 + schema: &643 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -100503,15 +100694,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *474 - *475 - - *588 + - *476 + - *589 responses: '200': description: Response content: application/json: - schema: *642 + schema: *643 examples: default: value: @@ -100567,9 +100758,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *474 - *475 - - &643 + - *476 + - &644 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. @@ -100586,7 +100777,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 title: Git Reference description: Git references within a repository type: object @@ -100662,17 +100853,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '200': description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &645 + default: &646 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -100701,8 +100892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100731,9 +100922,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -100759,9 +100950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 requestBody: required: true content: @@ -100790,9 +100981,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 '422': *15 '409': *119 x-github: @@ -100810,9 +101001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *474 - *475 - - *643 + - *476 + - *644 responses: '204': description: Response @@ -100867,8 +101058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -100935,7 +101126,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &648 title: Git Tag description: Metadata for a Git tag type: object @@ -100991,7 +101182,7 @@ paths: - sha - type - url - verification: *646 + verification: *647 required: - sha - url @@ -101001,7 +101192,7 @@ paths: - tag - message examples: - default: &648 + default: &649 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -101074,8 +101265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *474 - *475 + - *476 - name: tag_sha in: path required: true @@ -101086,9 +101277,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *648 + default: *649 '404': *6 '409': *119 x-github: @@ -101112,8 +101303,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -101187,7 +101378,7 @@ paths: description: Response content: application/json: - schema: &649 + schema: &650 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -101289,8 +101480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *474 - *475 + - *476 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -101313,7 +101504,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *650 examples: default-response: summary: Default response @@ -101371,8 +101562,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -101416,8 +101607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -101427,7 +101618,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Webhook description: Webhooks for repositories. type: object @@ -101490,7 +101681,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &922 + last_response: &923 title: Hook Response type: object properties: @@ -101567,8 +101758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -101621,9 +101812,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: &651 + default: &652 value: type: Repository id: 12345678 @@ -101671,17 +101862,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '404': *6 x-github: githubCloudOnly: false @@ -101701,9 +101892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: true content: @@ -101748,9 +101939,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: - default: *651 + default: *652 '422': *15 '404': *6 x-github: @@ -101771,9 +101962,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -101797,9 +101988,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: - - *474 - *475 - - *358 + - *476 + - *359 responses: '200': description: Response @@ -101826,9 +102017,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: - - *474 - *475 - - *358 + - *476 + - *359 requestBody: required: false content: @@ -101872,12 +102063,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *474 - *475 - - *358 - - *17 + - *476 - *359 + - *17 - *360 + - *361 responses: '200': description: Response @@ -101885,9 +102076,9 @@ paths: application/json: schema: type: array - items: *361 + items: *362 examples: - default: *362 + default: *363 '400': *14 '422': *15 x-github: @@ -101906,18 +102097,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '400': *14 '422': *15 x-github: @@ -101936,9 +102127,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: - - *474 - *475 - - *358 + - *476 + - *359 - *16 responses: '202': *37 @@ -101961,9 +102152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -101988,9 +102179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *474 - *475 - - *358 + - *476 + - *359 responses: '204': description: Response @@ -102013,8 +102204,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response if immutable releases are enabled @@ -102062,8 +102253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -102083,8 +102274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *474 - *475 + - *476 responses: '204': *126 '409': *119 @@ -102141,14 +102332,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &652 + schema: &653 title: Import description: A repository import from an external source. type: object @@ -102255,7 +102446,7 @@ paths: - html_url - authors_url examples: - default: &655 + default: &656 value: vcs: subversion use_lfs: true @@ -102271,7 +102462,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': &653 + '503': &654 description: Unavailable due to service under maintenance. content: application/json: @@ -102300,8 +102491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102349,7 +102540,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -102374,7 +102565,7 @@ paths: type: string '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102402,8 +102593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -102455,7 +102646,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: example-1: summary: Example 1 @@ -102503,7 +102694,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102526,12 +102717,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *474 - *475 + - *476 responses: '204': description: Response - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102557,9 +102748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *474 - *475 - - &852 + - *476 + - &853 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -102573,7 +102764,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: Porter Author description: Porter Author type: object @@ -102627,7 +102818,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': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102652,8 +102843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *474 - *475 + - *476 - name: author_id in: path required: true @@ -102683,7 +102874,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: default: value: @@ -102696,7 +102887,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102720,8 +102911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102762,7 +102953,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102790,8 +102981,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -102818,11 +103009,11 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *655 + default: *656 '422': *15 - '503': *653 + '503': *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102845,8 +103036,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102854,8 +103045,8 @@ paths: application/json: schema: *20 examples: - default: *376 - '301': *480 + default: *377 + '301': *481 '404': *6 x-github: githubCloudOnly: false @@ -102875,8 +103066,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -102884,12 +103075,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: &657 + default: &658 value: limit: collaborators_only origin: repository @@ -102914,13 +103105,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *656 + schema: *657 examples: default: summary: Example request body @@ -102932,9 +103123,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *657 + default: *658 '409': description: Response x-github: @@ -102956,8 +103147,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -102984,8 +103175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -103039,13 +103230,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: &658 + schema: &659 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -103095,13 +103286,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: application/json: - schema: *658 + schema: *659 examples: default: summary: Example request body @@ -103134,8 +103325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -103188,8 +103379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -103265,8 +103456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -103276,9 +103467,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: &845 + default: &846 value: - id: 1 repository: @@ -103409,9 +103600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 requestBody: required: false content: @@ -103440,7 +103631,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: default: value: @@ -103571,9 +103762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *474 - *475 - - *382 + - *476 + - *383 responses: '204': description: Response @@ -103596,8 +103787,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -103605,9 +103796,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: *660 + default: *661 '404': *6 x-github: githubCloudOnly: false @@ -103636,8 +103827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *474 - *475 + - *476 - 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 @@ -103699,7 +103890,7 @@ paths: required: false schema: type: string - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -103712,7 +103903,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -103722,9 +103913,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: &671 + default: &672 value: - id: 1 node_id: MDU6SXNzdWUx @@ -103873,7 +104064,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *480 + '301': *481 '422': *15 '404': *6 x-github: @@ -103902,8 +104093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -104018,9 +104209,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: &668 + default: &669 value: id: 1 node_id: MDU6SXNzdWUx @@ -104183,7 +104374,7 @@ paths: '422': *15 '503': *195 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -104221,9 +104412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *474 - *475 - - *243 + - *476 + - *244 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -104233,7 +104424,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -104243,9 +104434,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: &670 + default: &671 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -104304,17 +104495,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: &662 + default: &663 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -104370,9 +104561,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -104394,9 +104585,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 '422': *15 x-github: githubCloudOnly: false @@ -104414,9 +104605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -104444,15 +104635,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *222 + schema: *223 examples: default: value: @@ -104508,7 +104699,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -104525,16 +104716,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 '503': *195 x-github: githubCloudOnly: false @@ -104552,9 +104743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -104580,9 +104771,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -104603,9 +104794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -104637,16 +104828,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -104668,10 +104859,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -104691,8 +104882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -104702,7 +104893,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: Issue Event description: Issue Event type: object @@ -104749,7 +104940,7 @@ paths: issue: anyOf: - type: 'null' - - *221 + - *222 label: title: Issue Event Label description: Issue Event Label @@ -104782,7 +104973,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *313 + requested_team: *314 dismissed_review: title: Issue Event Dismissed Review type: object @@ -104849,7 +105040,7 @@ paths: required: - from - to - issue_type: &665 + issue_type: &666 title: Issue Type description: The type of issue. type: @@ -104880,11 +105071,11 @@ paths: required: - id - name - prev_issue_type: *665 + prev_issue_type: *666 sub_issue: anyOf: - type: 'null' - - &666 + - &667 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -104942,16 +105133,16 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 blocked_by: anyOf: - type: 'null' - - *666 + - *667 blocking: anyOf: - type: 'null' - - *666 - author_association: *218 + - *667 + author_association: *219 lock_reason: type: - string @@ -105144,8 +105335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *474 - *475 + - *476 - name: event_id in: path required: true @@ -105156,7 +105347,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -105349,7 +105540,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *661 + '410': *662 '403': *27 x-github: githubCloudOnly: false @@ -105383,9 +105574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *474 - *475 - - &669 + - *476 + - &670 name: issue_number description: The number that identifies the issue. in: path @@ -105397,11 +105588,11 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: summary: Issue - value: *668 + value: *669 pinned_comment: summary: Issue with pinned comment value: @@ -105606,9 +105797,9 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 '304': *35 x-github: githubCloudOnly: false @@ -105633,9 +105824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -105791,17 +105982,17 @@ paths: application/json: schema: allOf: - - *221 + - *222 - type: object properties: {} examples: - default: *668 + default: *669 '422': *15 '503': *195 '403': *27 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105829,9 +106020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -105857,9 +106048,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105875,9 +106066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: content: application/json: @@ -105902,9 +106093,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105926,9 +106117,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: assignee in: path required: true @@ -105968,10 +106159,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *474 - *475 - - *669 - - *226 + - *476 + - *670 + - *227 - *17 - *19 responses: @@ -105981,13 +106172,13 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *670 + default: *671 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106016,9 +106207,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -106040,16 +106231,16 @@ paths: description: Response content: application/json: - schema: *222 + schema: *223 examples: - default: *662 + default: *663 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -106077,9 +106268,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106089,14 +106280,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106124,9 +106315,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: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -106148,17 +106339,17 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *480 + '301': *481 '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -106189,9 +106380,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: - - *474 - *475 - - *669 + - *476 + - *670 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -106203,15 +106394,15 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *661 + '410': *662 x-github: triggersNotification: true githubCloudOnly: false @@ -106237,9 +106428,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: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106249,14 +106440,14 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106273,9 +106464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -106289,7 +106480,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &675 + - &676 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -106338,7 +106529,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &676 + - &677 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -106466,7 +106657,7 @@ paths: - performed_via_github_app - assignee - assigner - - &677 + - &678 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -106512,7 +106703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &679 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -106558,7 +106749,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &680 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -106607,7 +106798,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &681 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -106636,7 +106827,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -106649,7 +106840,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &682 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -106678,7 +106869,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *313 + requested_team: *314 requested_reviewer: *4 required: - review_requester @@ -106691,7 +106882,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &683 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -106747,7 +106938,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &684 title: Locked Issue Event description: Locked Issue Event type: object @@ -106792,7 +106983,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &685 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -106853,7 +107044,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &686 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -106914,7 +107105,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &686 + - &687 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -106975,7 +107166,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &688 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -107033,7 +107224,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &691 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -107061,7 +107252,7 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 + issue_type: *666 required: - issue_type - id @@ -107073,7 +107264,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &692 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -107101,7 +107292,7 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *665 + prev_issue_type: *666 required: - prev_issue_type - id @@ -107113,7 +107304,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &693 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -107141,8 +107332,8 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *665 - prev_issue_type: *665 + issue_type: *666 + prev_issue_type: *666 required: - issue_type - prev_issue_type @@ -107155,7 +107346,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &694 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -107186,7 +107377,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -107198,7 +107389,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &695 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -107229,7 +107420,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *666 + - *667 required: - sub_issue - id @@ -107241,7 +107432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &696 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -107272,7 +107463,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -107284,7 +107475,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &697 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -107315,7 +107506,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *666 + - *667 required: - parent_issue - id @@ -107327,7 +107518,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &697 + - &698 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -107358,7 +107549,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -107370,7 +107561,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &698 + - &699 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -107401,7 +107592,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *666 + - *667 required: - blocked_by - id @@ -107413,7 +107604,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &699 + - &700 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -107444,7 +107635,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -107456,7 +107647,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &700 + - &701 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -107487,7 +107678,7 @@ paths: blocking: anyOf: - type: 'null' - - *666 + - *667 required: - blocking - id @@ -107534,7 +107725,7 @@ paths: color: red headers: Link: *45 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107551,9 +107742,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107563,9 +107754,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &673 + default: &674 value: - issue_field_id: 1 issue_field_name: DRI @@ -107605,9 +107796,9 @@ paths: color: green headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107636,9 +107827,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107710,9 +107901,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -107748,9 +107939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -107817,9 +108008,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *672 + items: *673 examples: - default: *673 + default: *674 '400': *14 '403': *27 '404': *6 @@ -107850,10 +108041,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *474 - *475 - - *669 - - *385 + - *476 + - *670 + - *386 responses: '204': description: Issue field value deleted successfully @@ -107878,9 +108069,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -107890,9 +108081,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: &674 + default: &675 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -107910,9 +108101,9 @@ paths: default: false headers: Link: *45 - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107928,9 +108119,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -107973,12 +108164,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -107995,9 +108186,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -108057,12 +108248,12 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 - '301': *480 + default: *675 + '301': *481 '404': *6 - '410': *661 + '410': *662 '422': *15 x-github: githubCloudOnly: false @@ -108079,15 +108270,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108106,9 +108297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - name: name in: path required: true @@ -108121,7 +108312,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -108132,9 +108323,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *480 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108154,9 +108345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: false content: @@ -108185,7 +108376,7 @@ paths: '204': description: Response '403': *27 - '410': *661 + '410': *662 '404': *6 '422': *15 x-github: @@ -108203,9 +108394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '204': description: Response @@ -108235,20 +108426,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 responses: '200': description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 - '301': *480 + default: *669 + '301': *481 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108265,9 +108456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - 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. @@ -108293,13 +108484,13 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108317,9 +108508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -108351,16 +108542,16 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -108382,10 +108573,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *474 - *475 - - *669 - - *664 + - *476 + - *670 + - *665 responses: '204': description: Response @@ -108414,9 +108605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -108438,9 +108629,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -108473,9 +108664,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -108485,13 +108676,13 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *671 + default: *672 headers: Link: *45 '404': *6 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108519,9 +108710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -108548,16 +108739,16 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *661 + '410': *662 '422': *15 '404': *6 x-github: @@ -108577,9 +108768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 requestBody: required: true content: @@ -108610,9 +108801,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *668 + default: *669 '403': *27 '404': *6 '422': *7 @@ -108634,9 +108825,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *474 - *475 - - *669 + - *476 + - *670 - *17 - *19 responses: @@ -108651,7 +108842,6 @@ paths: description: Timeline Event type: object anyOf: - - *675 - *676 - *677 - *678 @@ -108664,6 +108854,7 @@ paths: - *685 - *686 - *687 + - *688 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -108711,20 +108902,20 @@ paths: issue_url: type: string format: uri - author_association: *218 + author_association: *219 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *219 + reactions: *220 pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - event - actor @@ -108755,7 +108946,7 @@ paths: properties: type: type: string - issue: *221 + issue: *222 required: - event - created_at @@ -108977,7 +109168,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - event - id @@ -109000,7 +109191,7 @@ paths: type: string comments: type: array - items: &721 + items: &722 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -109108,7 +109299,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: @@ -109203,7 +109394,7 @@ paths: enum: - line - file - reactions: *219 + reactions: *220 body_html: type: string examples: @@ -109241,7 +109432,7 @@ paths: type: string comments: type: array - items: *584 + items: *585 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -109361,7 +109552,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *690 - *691 - *692 - *693 @@ -109372,6 +109562,7 @@ paths: - *698 - *699 - *700 + - *701 examples: default: value: @@ -109528,7 +109719,7 @@ paths: Link: *45 '404': *6 '400': *14 - '410': *661 + '410': *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109545,8 +109736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -109556,7 +109747,7 @@ paths: application/json: schema: type: array - items: &701 + items: &702 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -109624,8 +109815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109661,9 +109852,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: &702 + default: &703 value: id: 1 key: ssh-rsa AAA... @@ -109697,9 +109888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *474 - *475 - - &703 + - *476 + - &704 name: key_id description: The unique identifier of the key. in: path @@ -109711,9 +109902,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -109731,9 +109922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *474 - *475 - - *703 + - *476 + - *704 responses: '204': description: Response @@ -109753,8 +109944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -109764,9 +109955,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 '404': *6 @@ -109787,8 +109978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -109824,9 +110015,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: &704 + default: &705 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -109858,8 +110049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109870,9 +110061,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *704 + default: *705 '404': *6 x-github: githubCloudOnly: false @@ -109889,8 +110080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109929,7 +110120,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -109955,8 +110146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *474 - *475 + - *476 - name: name in: path required: true @@ -109982,8 +110173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -110019,8 +110210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '202': *37 '403': @@ -110048,8 +110239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -110075,9 +110266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *474 - *475 - - *559 + - *476 + - *560 responses: '200': description: Response @@ -110143,7 +110334,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 required: - _links - git_url @@ -110224,8 +110415,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110290,8 +110481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110325,9 +110516,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *587 + schema: *588 examples: - default: *705 + default: *706 '204': description: Response when already merged '404': @@ -110352,8 +110543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *474 - *475 + - *476 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -110394,7 +110585,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -110450,8 +110641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -110491,9 +110682,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: &706 + default: &707 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -110552,9 +110743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *474 - *475 - - &707 + - *476 + - &708 name: milestone_number description: The number that identifies the milestone. in: path @@ -110566,9 +110757,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 '404': *6 x-github: githubCloudOnly: false @@ -110585,9 +110776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 requestBody: required: false content: @@ -110625,9 +110816,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *706 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110643,9 +110834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *474 - *475 - - *707 + - *476 + - *708 responses: '204': description: Response @@ -110666,9 +110857,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: - - *474 - *475 - - *707 + - *476 + - *708 - *17 - *19 responses: @@ -110678,9 +110869,9 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: - default: *674 + default: *675 headers: Link: *45 x-github: @@ -110699,12 +110890,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: - - *474 - *475 - - *708 + - *476 - *709 - - *226 - *710 + - *227 + - *711 - *17 - *19 responses: @@ -110714,9 +110905,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *711 + default: *712 headers: Link: *45 x-github: @@ -110740,8 +110931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -110799,14 +110990,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: &712 + schema: &713 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -110950,7 +111141,7 @@ paths: - custom_404 - public examples: - default: &713 + default: &714 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -110991,8 +111182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111047,9 +111238,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: - default: *713 + default: *714 '422': *15 '409': *119 x-github: @@ -111072,8 +111263,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111181,8 +111372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -111208,8 +111399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -111219,7 +111410,7 @@ paths: application/json: schema: type: array - items: &714 + items: &715 title: Page Build description: Page Build type: object @@ -111311,8 +111502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *474 - *475 + - *476 responses: '201': description: Response @@ -111359,16 +111550,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: &715 + default: &716 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -111416,8 +111607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *474 - *475 + - *476 - name: build_id in: path required: true @@ -111428,9 +111619,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111450,8 +111641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -111559,9 +111750,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: - - *474 - *475 - - &716 + - *476 + - &717 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -111619,9 +111810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *474 - *475 - - *716 + - *476 + - *717 responses: '204': *126 '404': *6 @@ -111648,8 +111839,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -111917,7 +112108,7 @@ paths: description: Empty response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -111944,8 +112135,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: - - *474 - *475 + - *476 responses: '200': description: Private vulnerability reporting status @@ -111982,8 +112173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -112004,8 +112195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *474 - *475 + - *476 responses: '204': *126 '422': *14 @@ -112027,8 +112218,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -112038,7 +112229,7 @@ paths: type: array items: *155 examples: - default: *717 + default: *718 '403': *27 '404': *6 x-github: @@ -112060,8 +112251,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -112077,7 +112268,7 @@ paths: required: - properties examples: - default: *718 + default: *719 responses: '204': description: No Content when custom property values are successfully created @@ -112115,8 +112306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *474 - *475 + - *476 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -112176,9 +112367,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *719 + default: *720 headers: Link: *45 '304': *35 @@ -112210,8 +112401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -112278,7 +112469,7 @@ paths: description: Response content: application/json: - schema: &723 + schema: &724 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -112407,7 +112598,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 active_lock_reason: type: - string @@ -112456,7 +112647,7 @@ paths: items: *4 requested_teams: type: array - items: *399 + items: *400 head: type: object properties: @@ -112494,14 +112685,14 @@ paths: _links: type: object properties: - comments: *421 - commits: *421 - statuses: *421 - html: *421 - issue: *421 - review_comments: *421 - review_comment: *421 - self: *421 + comments: *422 + commits: *422 + statuses: *422 + html: *422 + issue: *422 + review_comments: *422 + review_comment: *422 + self: *422 required: - comments - commits @@ -112511,8 +112702,8 @@ paths: - review_comments - review_comment - self - author_association: *218 - auto_merge: *720 + author_association: *219 + auto_merge: *721 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -112708,7 +112899,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &724 + default: &725 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -113246,8 +113437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *474 - *475 + - *476 - name: sort in: query required: false @@ -113266,7 +113457,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -113276,9 +113467,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: &726 + default: &727 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113355,17 +113546,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '200': description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: &722 + default: &723 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113440,9 +113631,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -113464,9 +113655,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: *722 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113482,9 +113673,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: - - *474 - *475 - - *235 + - *476 + - *236 responses: '204': description: Response @@ -113505,9 +113696,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: - - *474 - *475 - - *235 + - *476 + - *236 - 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. @@ -113533,9 +113724,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -113556,9 +113747,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: - - *474 - *475 - - *235 + - *476 + - *236 requestBody: required: true content: @@ -113590,16 +113781,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -113621,10 +113812,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *474 - *475 - - *235 - - *664 + - *476 + - *236 + - *665 responses: '204': description: Response @@ -113667,9 +113858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *474 - *475 - - &725 + - *476 + - &726 name: pull_number description: The number that identifies the pull request. in: path @@ -113682,9 +113873,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '304': *35 '404': *6 '406': @@ -113719,9 +113910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -113763,9 +113954,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *724 examples: - default: *724 + default: *725 '422': *15 '403': *27 x-github: @@ -113787,9 +113978,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -113850,17 +114041,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -113890,10 +114081,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: - - *474 - *475 - - *725 - - *243 + - *476 + - *726 + - *244 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -113903,7 +114094,7 @@ paths: enum: - asc - desc - - *226 + - *227 - *17 - *19 responses: @@ -113913,9 +114104,9 @@ paths: application/json: schema: type: array - items: *721 + items: *722 examples: - default: *726 + default: *727 headers: Link: *45 x-github: @@ -113948,9 +114139,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -114056,7 +114247,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: example-for-a-multi-line-comment: value: @@ -114144,10 +114335,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: - - *474 - *475 - - *725 - - *235 + - *476 + - *726 + - *236 requestBody: required: true content: @@ -114169,7 +114360,7 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: default: value: @@ -114255,9 +114446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -114267,9 +114458,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *727 + default: *728 headers: Link: *45 x-github: @@ -114299,9 +114490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -114311,7 +114502,7 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: default: value: @@ -114349,9 +114540,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '204': description: Response if pull request has been merged @@ -114374,9 +114565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -114488,9 +114679,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: - - *474 - *475 - - *725 + - *476 + - *726 responses: '200': description: Response @@ -114506,7 +114697,7 @@ paths: items: *4 teams: type: array - items: *313 + items: *314 required: - users - teams @@ -114565,9 +114756,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -114604,7 +114795,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -115140,9 +115331,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: true content: @@ -115176,7 +115367,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -115692,9 +115883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *474 - *475 - - *725 + - *476 + - *726 - *17 - *19 responses: @@ -115704,7 +115895,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -115778,7 +115969,7 @@ paths: type: string body_text: type: string - author_association: *218 + author_association: *219 required: - id - node_id @@ -115860,9 +116051,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: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -115952,9 +116143,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &730 + default: &731 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -116017,10 +116208,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: - - *474 - *475 - - *725 - - &729 + - *476 + - *726 + - &730 name: review_id description: The unique identifier of the review. in: path @@ -116032,9 +116223,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: &731 + default: &732 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -116093,10 +116284,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -116119,7 +116310,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -116181,18 +116372,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 responses: '200': description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *730 + default: *731 '422': *7 '404': *6 x-github: @@ -116219,10 +116410,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 - *17 - *19 responses: @@ -116316,13 +116507,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *218 + author_association: *219 _links: type: object properties: - self: *421 - html: *421 - pull_request: *421 + self: *422 + html: *422 + pull_request: *422 required: - self - html @@ -116331,7 +116522,7 @@ paths: type: string body_html: type: string - reactions: *219 + reactions: *220 side: description: The side of the first line of the range for a multi-line comment. @@ -116480,10 +116671,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -116512,7 +116703,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -116575,10 +116766,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: - - *474 - *475 - - *725 - - *729 + - *476 + - *726 + - *730 requestBody: required: true content: @@ -116613,9 +116804,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *731 + default: *732 '404': *6 '422': *7 '403': *27 @@ -116637,9 +116828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *474 - *475 - - *725 + - *476 + - *726 requestBody: required: false content: @@ -116703,8 +116894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *474 - *475 + - *476 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -116717,9 +116908,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: &733 + default: &734 value: type: file encoding: base64 @@ -116761,8 +116952,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: - - *474 - *475 + - *476 - name: dir description: The alternate path to look for a README file in: path @@ -116782,9 +116973,9 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: - default: *733 + default: *734 '404': *6 '422': *15 x-github: @@ -116806,8 +116997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -116817,7 +117008,7 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: default: value: @@ -116911,8 +117102,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -116988,9 +117179,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &738 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -117095,9 +117286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *474 - *475 - - &736 + - *476 + - &737 name: asset_id description: The unique identifier of the asset. in: path @@ -117109,9 +117300,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: &737 + default: &738 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 @@ -117146,7 +117337,7 @@ paths: type: User site_admin: false '404': *6 - '302': *602 + '302': *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117162,9 +117353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 requestBody: required: false content: @@ -117193,9 +117384,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *736 examples: - default: *737 + default: *738 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117211,9 +117402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *474 - *475 - - *736 + - *476 + - *737 responses: '204': description: Response @@ -117238,8 +117429,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -117325,16 +117516,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *474 - *475 + - *476 responses: '200': description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -117352,8 +117543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *474 - *475 + - *476 - name: tag description: tag parameter in: path @@ -117366,9 +117557,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': *6 x-github: githubCloudOnly: false @@ -117390,9 +117581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *474 - *475 - - &739 + - *476 + - &740 name: release_id description: The unique identifier of the release. in: path @@ -117406,9 +117597,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: *734 + schema: *735 examples: - default: *738 + default: *739 '401': description: Unauthorized x-github: @@ -117426,9 +117617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: false content: @@ -117492,9 +117683,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *738 + default: *739 '404': description: Not Found if the discussion category name is invalid content: @@ -117515,9 +117706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 responses: '204': description: Response @@ -117538,9 +117729,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *474 - *475 - - *739 + - *476 + - *740 - *17 - *19 responses: @@ -117550,7 +117741,7 @@ paths: application/json: schema: type: array - items: *735 + items: *736 examples: default: value: @@ -117632,9 +117823,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: - - *474 - *475 - - *739 + - *476 + - *740 - name: name in: query required: true @@ -117660,7 +117851,7 @@ paths: description: Response for successful upload content: application/json: - schema: *735 + schema: *736 examples: response-for-successful-upload: value: @@ -117715,9 +117906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 - 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. @@ -117741,9 +117932,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *663 + default: *664 headers: Link: *45 '404': *6 @@ -117764,9 +117955,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *474 - *475 - - *739 + - *476 + - *740 requestBody: required: true content: @@ -117796,16 +117987,16 @@ paths: description: Reaction exists content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '201': description: Reaction created content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -117827,10 +118018,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *474 - *475 - - *739 - - *664 + - *476 + - *740 + - *665 responses: '204': description: Response @@ -117854,9 +118045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *474 - *475 - - *526 + - *476 + - *527 - *17 - *19 responses: @@ -117873,7 +118064,7 @@ paths: oneOf: - allOf: - *169 - - &740 + - &741 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -117894,70 +118085,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *170 - - *740 + - *741 - allOf: - *171 - - *740 + - *741 - allOf: - *172 - - *740 + - *741 - allOf: + - *742 - *741 - - *740 - allOf: - *173 - - *740 + - *741 - allOf: - *174 - - *740 + - *741 - allOf: - *175 - - *740 + - *741 - allOf: - *176 - - *740 + - *741 - allOf: - *177 - - *740 + - *741 - allOf: - *178 - - *740 + - *741 - allOf: - *179 - - *740 + - *741 - allOf: - *180 - - *740 + - *741 - allOf: - *181 - - *740 + - *741 - allOf: - *182 - - *740 + - *741 - allOf: - *183 - - *740 + - *741 - allOf: - *184 - - *740 + - *741 - allOf: - *185 - - *740 + - *741 - allOf: - - *742 - - *740 + - *743 + - *741 - allOf: - *186 - - *740 + - *741 - allOf: - *187 - - *740 + - *741 - allOf: - *188 - - *740 + - *741 - allOf: - *189 - - *740 + - *741 examples: default: value: @@ -117996,8 +118187,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - *17 - *19 - name: includes_parents @@ -118008,7 +118199,7 @@ paths: schema: type: boolean default: true - - *743 + - *744 responses: '200': description: Response @@ -118063,8 +118254,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 requestBody: description: Request body required: true @@ -118093,7 +118284,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *744 + items: *745 required: - name - enforcement @@ -118126,7 +118317,7 @@ paths: application/json: schema: *190 examples: - default: &754 + default: &755 value: id: 42 name: super cool ruleset @@ -118174,13 +118365,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *474 - *475 - - *745 - - *105 + - *476 - *746 + - *105 - *747 - *748 + - *749 - *17 - *19 responses: @@ -118188,9 +118379,9 @@ paths: description: Response content: application/json: - schema: *749 + schema: *750 examples: - default: *750 + default: *751 '404': *6 '500': *38 x-github: @@ -118211,17 +118402,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *474 - *475 - - *751 + - *476 + - *752 responses: '200': description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 '500': *38 x-github: @@ -118249,8 +118440,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118272,7 +118463,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '500': *38 put: @@ -118290,8 +118481,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118325,7 +118516,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *744 + items: *745 examples: default: value: @@ -118355,7 +118546,7 @@ paths: application/json: schema: *190 examples: - default: *754 + default: *755 '404': *6 '422': *15 '500': *38 @@ -118374,8 +118565,8 @@ paths: category: repos subcategory: rules parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118398,8 +118589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *474 - *475 + - *476 - *17 - *19 - name: ruleset_id @@ -118417,7 +118608,7 @@ paths: type: array items: *194 examples: - default: *437 + default: *438 '404': *6 '500': *38 x-github: @@ -118436,8 +118627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *474 - *475 + - *476 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118455,7 +118646,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: default: value: @@ -118510,9 +118701,8 @@ 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: - - *474 - *475 - - *439 + - *476 - *440 - *441 - *442 @@ -118520,18 +118710,19 @@ paths: - *444 - *445 - *446 + - *447 - *110 - *19 - *17 - - *755 - *756 - - *447 + - *757 - *448 - *449 - *450 - *451 - *452 - *453 + - *454 responses: '200': description: Response @@ -118555,8 +118746,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -118662,7 +118853,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -118821,16 +119012,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: - - *474 - *475 - - *553 - - *450 + - *476 + - *554 + - *451 responses: '200': description: Response content: application/json: - schema: &760 + schema: &761 type: object properties: number: *130 @@ -118845,8 +119036,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolved_at: type: - string @@ -118952,7 +119143,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *759 + - *760 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -118975,7 +119166,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &941 + metadata: &942 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -119048,9 +119239,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: - - *474 - *475 - - *553 + - *476 + - *554 requestBody: required: true content: @@ -119058,8 +119249,8 @@ paths: schema: type: object properties: - state: *757 - resolution: *758 + state: *758 + resolution: *759 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -119107,7 +119298,7 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: default: value: @@ -119209,9 +119400,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: - - *474 - *475 - - *553 + - *476 + - *554 - *19 - *17 responses: @@ -119222,7 +119413,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &943 + items: &944 type: object properties: type: @@ -119249,7 +119440,6 @@ paths: - commit details: oneOf: - - *761 - *762 - *763 - *764 @@ -119262,6 +119452,7 @@ paths: - *771 - *772 - *773 + - *774 examples: default: value: @@ -119347,8 +119538,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -119356,14 +119547,14 @@ paths: schema: type: object properties: - reason: &775 + reason: &776 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *774 + placeholder_id: *775 required: - reason - placeholder_id @@ -119380,7 +119571,7 @@ paths: schema: type: object properties: - reason: *775 + reason: *776 expire_at: type: - string @@ -119427,8 +119618,8 @@ 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: - - *474 - *475 + - *476 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -119443,7 +119634,7 @@ paths: properties: incremental_scans: type: array - items: &776 + items: &777 description: Information on a single scan performed by secret scanning on the repository type: object @@ -119476,15 +119667,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *776 + items: *777 backfill_scans: type: array - items: *776 + items: *777 custom_pattern_backfill_scans: type: array items: allOf: - - *776 + - *777 - type: object properties: pattern_name: @@ -119497,7 +119688,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *776 + items: *777 examples: default: value: @@ -119562,8 +119753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *474 - *475 + - *476 - *110 - name: sort description: The property to sort the results by. @@ -119607,9 +119798,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *778 + default: *779 '400': *14 '404': *6 x-github: @@ -119632,8 +119823,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -119713,7 +119904,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -119803,9 +119994,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &780 + default: &781 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -120044,8 +120235,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: - - *474 - *475 + - *476 requestBody: required: true content: @@ -120158,7 +120349,7 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: default: value: @@ -120311,17 +120502,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '200': description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 + default: *781 '403': *27 '404': *6 x-github: @@ -120345,9 +120536,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: - - *474 - *475 - - *779 + - *476 + - *780 requestBody: required: true content: @@ -120427,7 +120618,7 @@ paths: login: type: string description: The username of the user credited. - type: *458 + type: *459 required: - login - type @@ -120518,17 +120709,17 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *780 - add_credit: *780 + default: *781 + add_credit: *781 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *255 + schema: *256 examples: invalid_state_transition: value: @@ -120559,9 +120750,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': *37 '400': *14 @@ -120588,17 +120779,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: - - *474 - *475 - - *779 + - *476 + - *780 responses: '202': description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 '400': *14 '422': *15 '403': *27 @@ -120624,8 +120815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -120721,8 +120912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -120731,7 +120922,7 @@ paths: application/json: schema: type: array - items: &781 + items: &782 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -120764,8 +120955,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: - - *474 - *475 + - *476 responses: '200': description: Response @@ -120843,8 +121034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -120938,8 +121129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *474 - *475 + - *476 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -121093,8 +121284,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: - - *474 - *475 + - *476 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -121104,7 +121295,7 @@ paths: application/json: schema: type: array - items: *781 + items: *782 examples: default: value: @@ -121137,8 +121328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *474 - *475 + - *476 - name: sha in: path required: true @@ -121194,7 +121385,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -121248,8 +121439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -121281,14 +121472,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &783 + schema: &784 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -121361,8 +121552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *474 - *475 + - *476 requestBody: required: false content: @@ -121388,7 +121579,7 @@ paths: description: Response content: application/json: - schema: *783 + schema: *784 examples: default: value: @@ -121415,8 +121606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -121436,8 +121627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -121519,8 +121710,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -121556,8 +121747,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *474 - *475 + - *476 - *17 - *19 responses: @@ -121567,9 +121758,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - default: *400 + default: *401 headers: Link: *45 '404': *6 @@ -121589,8 +121780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *474 - *475 + - *476 - *19 - *17 responses: @@ -121598,7 +121789,7 @@ paths: description: Response content: application/json: - schema: &784 + schema: &785 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -121610,7 +121801,7 @@ paths: required: - names examples: - default: &785 + default: &786 value: names: - octocat @@ -121633,8 +121824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -121665,9 +121856,9 @@ paths: description: Response content: application/json: - schema: *784 + schema: *785 examples: - default: *785 + default: *786 '404': *6 '422': *7 x-github: @@ -121688,9 +121879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *474 - *475 - - &786 + - *476 + - &787 name: per description: The time frame to display results for. in: query @@ -121721,7 +121912,7 @@ paths: - 128 clones: type: array - items: &787 + items: &788 title: Traffic type: object properties: @@ -121808,8 +121999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -121903,8 +122094,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *474 - *475 + - *476 responses: '200': description: Response @@ -121967,9 +122158,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *474 - *475 - - *786 + - *476 + - *787 responses: '200': description: Response @@ -121990,7 +122181,7 @@ paths: - 3782 views: type: array - items: *787 + items: *788 required: - uniques - count @@ -122067,8 +122258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *474 - *475 + - *476 requestBody: required: true content: @@ -122104,7 +122295,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -122348,8 +122539,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: - - *474 - *475 + - *476 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -122372,8 +122563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -122395,8 +122586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *474 - *475 + - *476 responses: '204': description: Response @@ -122422,8 +122613,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *474 - *475 + - *476 - name: ref in: path required: true @@ -122515,9 +122706,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -122558,7 +122749,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -122668,7 +122859,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &795 + - &796 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -122678,7 +122869,7 @@ paths: type: string examples: - members - - &800 + - &801 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -122690,7 +122881,7 @@ paths: format: int32 examples: - 1 - - &801 + - &802 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -122734,7 +122925,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &790 + items: &791 allOf: - type: object required: @@ -122816,7 +123007,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: &802 + meta: &803 type: object description: The metadata associated with the creation/updates to the user. @@ -122881,30 +123072,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &791 + '400': &792 description: Bad request content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '401': *789 - '403': &792 + schema: *789 + '401': *790 + '403': &793 description: Permission denied - '429': &793 + '429': &794 description: Too many requests content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '500': &794 + schema: *789 + '500': &795 description: Internal server error content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 + schema: *789 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -122928,7 +123119,7 @@ paths: required: true content: application/json: - schema: &798 + schema: &799 type: object required: - schemas @@ -122992,9 +123183,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *790 + schema: *791 examples: - group: &796 + group: &797 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -123013,13 +123204,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': *791 - '401': *789 - '403': *792 - '409': &799 + '400': *792 + '401': *790 + '403': *793 + '409': &800 description: Duplicate record detected - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123036,7 +123227,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: - - &797 + - &798 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -123045,22 +123236,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *795 + - *796 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *790 + schema: *791 examples: - default: *796 - '400': *791 - '401': *789 - '403': *792 + default: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123079,13 +123270,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: *798 + schema: *799 examples: group: summary: Group @@ -123111,17 +123302,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - group: *796 - groupWithMembers: *796 - '400': *791 - '401': *789 - '403': *792 + group: *797 + groupWithMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123145,13 +123336,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: - - *797 + - *798 - *39 requestBody: required: true content: application/json: - schema: &809 + schema: &810 type: object required: - Operations @@ -123211,17 +123402,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *790 + schema: *791 examples: - updateGroup: *796 - addMembers: *796 - '400': *791 - '401': *789 - '403': *792 + updateGroup: *797 + addMembers: *797 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123237,17 +123428,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: - - *797 + - *798 - *39 responses: '204': description: Group was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123281,8 +123472,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *800 - *801 + - *802 - *39 responses: '200': @@ -123316,7 +123507,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &804 + items: &805 allOf: - type: object required: @@ -123408,7 +123599,7 @@ paths: address. examples: - true - roles: &803 + roles: &804 type: array description: The roles assigned to the user. items: @@ -123467,7 +123658,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *802 + meta: *803 startIndex: type: integer description: A starting index for the returned page @@ -123506,11 +123697,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *791 - '401': *789 - '403': *792 - '429': *793 - '500': *794 + '400': *792 + '401': *790 + '403': *793 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123534,7 +123725,7 @@ paths: required: true content: application/json: - schema: &807 + schema: &808 type: object required: - schemas @@ -123627,9 +123818,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *803 + roles: *804 examples: - user: &808 + user: &809 summary: User value: schemas: @@ -123676,9 +123867,9 @@ paths: description: User has been created content: application/scim+json: - schema: *804 + schema: *805 examples: - user: &805 + user: &806 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -123704,13 +123895,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: *805 - '400': *791 - '401': *789 - '403': *792 - '409': *799 - '429': *793 - '500': *794 + enterpriseOwner: *806 + '400': *792 + '401': *790 + '403': *793 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123727,7 +123918,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: - - &806 + - &807 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -123740,15 +123931,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *804 + schema: *805 examples: - default: *805 - '400': *791 - '401': *789 - '403': *792 + default: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123799,30 +123990,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *807 + schema: *808 examples: - user: *808 + user: *809 responses: '200': description: User was updated content: application/scim+json: - schema: *804 + schema: *805 examples: - user: *805 - '400': *791 - '401': *789 - '403': *792 + user: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123863,13 +124054,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: - - *806 + - *807 - *39 requestBody: required: true content: application/json: - schema: *809 + schema: *810 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -123909,18 +124100,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *804 - examples: - userMultiValuedProperties: *805 - userSingleValuedProperties: *805 - disableUser: *805 - '400': *791 - '401': *789 - '403': *792 + schema: *805 + examples: + userMultiValuedProperties: *806 + userSingleValuedProperties: *806 + disableUser: *806 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '409': *799 - '429': *793 - '500': *794 + '409': *800 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -123940,17 +124131,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: - - *806 + - *807 - *39 responses: '204': description: User was deleted, no content - '400': *791 - '401': *789 - '403': *792 + '400': *792 + '401': *790 + '403': *793 '404': *6 - '429': *793 - '500': *794 + '429': *794 + '500': *795 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124041,7 +124232,7 @@ paths: - 1 Resources: type: array - items: &810 + items: &811 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -124288,22 +124479,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': &811 + '404': &812 description: Resource not found content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '403': &812 + schema: *789 + '403': &813 description: Forbidden content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 - '429': *793 + schema: *789 + '400': *792 + '429': *794 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -124329,9 +124520,9 @@ paths: description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: &813 + default: &814 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -124354,17 +124545,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': *811 - '403': *812 - '500': *794 + '404': *812 + '403': *813 + '500': *795 '409': description: Conflict content: application/json: - schema: *788 + schema: *789 application/scim+json: - schema: *788 - '400': *791 + schema: *789 + '400': *792 requestBody: required: true content: @@ -124464,17 +124655,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 - '404': *811 - '403': *812 + default: *814 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -124498,18 +124689,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 + '404': *812 + '403': *813 requestBody: required: true content: @@ -124624,19 +124815,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *806 + - *807 responses: '200': description: Response content: application/scim+json: - schema: *810 + schema: *811 examples: - default: *813 + default: *814 '304': *35 - '404': *811 - '403': *812 - '400': *791 + '404': *812 + '403': *813 + '400': *792 '429': description: Response content: @@ -124732,12 +124923,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *806 + - *807 responses: '204': description: Response - '404': *811 - '403': *812 + '404': *812 + '403': *813 '304': *35 x-github: githubCloudOnly: true @@ -124855,7 +125046,7 @@ paths: html_url: type: string format: uri - repository: *280 + repository: *281 score: type: number file_size: @@ -124874,7 +125065,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &814 + text_matches: &815 title: Search Result Text Matches type: array items: @@ -125038,7 +125229,7 @@ paths: enum: - author-date - committer-date - - &815 + - &816 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 @@ -125107,7 +125298,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 comment_count: type: integer message: @@ -125126,7 +125317,7 @@ paths: url: type: string format: uri - verification: *646 + verification: *647 required: - author - committer @@ -125141,7 +125332,7 @@ paths: committer: anyOf: - type: 'null' - - *524 + - *525 parents: type: array items: @@ -125153,12 +125344,12 @@ paths: type: string sha: type: string - repository: *280 + repository: *281 score: type: number node_id: type: string - text_matches: *814 + text_matches: *815 required: - sha - node_id @@ -125351,7 +125542,7 @@ paths: - interactions - created - updated - - *815 + - *816 - *17 - *19 - name: advanced_search @@ -125465,11 +125656,11 @@ paths: type: - string - 'null' - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: type: string state_reason: @@ -125483,7 +125674,7 @@ paths: milestone: anyOf: - type: 'null' - - *420 + - *421 comments: type: integer created_at: @@ -125497,7 +125688,7 @@ paths: - string - 'null' format: date-time - text_matches: *814 + text_matches: *815 pull_request: type: object properties: @@ -125535,7 +125726,7 @@ paths: type: string score: type: number - author_association: *218 + author_association: *219 draft: type: boolean repository: *78 @@ -125546,7 +125737,7 @@ paths: timeline_url: type: string format: uri - type: *386 + type: *387 performed_via_github_app: anyOf: - type: 'null' @@ -125554,8 +125745,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *222 - reactions: *219 + - *223 + reactions: *220 required: - assignee - closed_at @@ -125807,7 +125998,7 @@ paths: enum: - created - updated - - *815 + - *816 - *17 - *19 responses: @@ -125852,7 +126043,7 @@ paths: - 'null' score: type: number - text_matches: *814 + text_matches: *815 required: - id - node_id @@ -125938,7 +126129,7 @@ paths: - forks - help-wanted-issues - updated - - *815 + - *816 - *17 - *19 responses: @@ -126166,7 +126357,7 @@ paths: license: anyOf: - type: 'null' - - *223 + - *224 permissions: type: object properties: @@ -126184,7 +126375,7 @@ paths: - admin - pull - push - text_matches: *814 + text_matches: *815 temp_clone_token: type: string allow_merge_commit: @@ -126493,7 +126684,7 @@ paths: - string - 'null' format: uri - text_matches: *814 + text_matches: *815 related: type: - array @@ -126688,7 +126879,7 @@ paths: - followers - repositories - joined - - *815 + - *816 - *17 - *19 responses: @@ -126798,7 +126989,7 @@ paths: type: - boolean - 'null' - text_matches: *814 + text_matches: *815 blog: type: - string @@ -126880,7 +127071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &818 + - &819 name: team_id description: The unique identifier of the team. in: path @@ -126892,9 +127083,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 x-github: githubCloudOnly: false @@ -126921,7 +127112,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *818 + - *819 requestBody: required: true content: @@ -126985,16 +127176,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '201': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 '404': *6 '422': *15 '403': *27 @@ -127022,7 +127213,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *818 + - *819 responses: '204': description: Response @@ -127051,7 +127242,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -127061,9 +127252,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 headers: Link: *45 x-github: @@ -127091,7 +127282,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *818 + - *819 - name: role description: Filters members returned by their role in the team. in: query @@ -127112,9 +127303,9 @@ paths: application/json: schema: type: array - items: *819 + items: *820 examples: - default: *820 + default: *821 headers: Link: *45 '404': *6 @@ -127142,7 +127333,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -127179,7 +127370,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -127219,7 +127410,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -127256,16 +127447,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: - - *818 + - *819 - *143 responses: '200': description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-user-is-a-team-maintainer: *821 + response-if-user-is-a-team-maintainer: *822 '404': *6 x-github: githubCloudOnly: false @@ -127298,7 +127489,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 requestBody: required: false @@ -127324,9 +127515,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - response-if-users-membership-with-team-is-now-pending: *822 + response-if-users-membership-with-team-is-now-pending: *823 '403': description: Forbidden if team synchronization is set up '422': @@ -127360,7 +127551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *818 + - *819 - *143 responses: '204': @@ -127388,7 +127579,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -127398,9 +127589,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '404': *6 @@ -127430,15 +127621,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *823 + schema: *824 examples: alternative-response-with-extra-repository-information: value: @@ -127595,9 +127786,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: - - *818 - - *474 + - *819 - *475 + - *476 requestBody: required: false content: @@ -127647,9 +127838,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: - - *818 - - *474 + - *819 - *475 + - *476 responses: '204': description: Response @@ -127678,15 +127869,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: - - *818 + - *819 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 '403': *27 '404': *6 x-github: @@ -127713,7 +127904,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: - - *818 + - *819 requestBody: required: true content: @@ -127774,7 +127965,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: default: value: @@ -127805,7 +127996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *818 + - *819 - *17 - *19 responses: @@ -127815,9 +128006,9 @@ paths: application/json: schema: type: array - items: *313 + items: *314 examples: - response-if-child-teams-exist: *824 + response-if-child-teams-exist: *825 headers: Link: *45 '404': *6 @@ -127850,7 +128041,7 @@ paths: application/json: schema: oneOf: - - &826 + - &827 title: Private User description: Private User type: object @@ -128100,7 +128291,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *825 + - *826 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -128260,7 +128451,7 @@ paths: description: Response content: application/json: - schema: *826 + schema: *827 examples: default: value: @@ -128463,9 +128654,9 @@ paths: type: integer codespaces: type: array - items: *391 + items: *392 examples: - default: *392 + default: *393 '304': *35 '500': *38 '401': *23 @@ -128604,17 +128795,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -128658,7 +128849,7 @@ paths: type: integer secrets: type: array - items: &827 + items: &828 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -128700,7 +128891,7 @@ paths: - visibility - selected_repositories_url examples: - default: *578 + default: *579 headers: Link: *45 x-github: @@ -128772,13 +128963,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: - - *290 + - *291 responses: '200': description: Response content: application/json: - schema: *827 + schema: *828 examples: default: value: @@ -128808,7 +128999,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: - - *290 + - *291 requestBody: required: true content: @@ -128853,7 +129044,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -128881,7 +129072,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: - - *290 + - *291 responses: '204': description: Response @@ -128906,7 +129097,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: - - *290 + - *291 responses: '200': description: Response @@ -128922,9 +129113,9 @@ paths: type: integer repositories: type: array - items: *280 + items: *281 examples: - default: *332 + default: *333 '401': *23 '403': *27 '404': *6 @@ -128949,7 +129140,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: - - *290 + - *291 requestBody: required: true content: @@ -129003,7 +129194,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -129036,7 +129227,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: - - *290 + - *291 - name: repository_id in: path required: true @@ -129068,15 +129259,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '401': *23 @@ -129102,7 +129293,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: - - *393 + - *394 requestBody: required: false content: @@ -129132,9 +129323,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '401': *23 '403': *27 '404': *6 @@ -129156,7 +129347,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: - - *393 + - *394 responses: '202': *37 '304': *35 @@ -129185,13 +129376,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: - - *393 + - *394 responses: '202': description: Response content: application/json: - schema: &828 + schema: &829 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -129244,7 +129435,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &829 + default: &830 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -129276,7 +129467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *393 + - *394 - name: export_id in: path required: true @@ -129289,9 +129480,9 @@ paths: description: Response content: application/json: - schema: *828 + schema: *829 examples: - default: *829 + default: *830 '404': *6 x-github: githubCloudOnly: false @@ -129312,7 +129503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *393 + - *394 responses: '200': description: Response @@ -129328,9 +129519,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: *830 + default: *831 '304': *35 '500': *38 '401': *23 @@ -129359,7 +129550,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: - - *393 + - *394 requestBody: required: true content: @@ -129415,11 +129606,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *479 + repository: *480 machine: anyOf: - type: 'null' - - *577 + - *578 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -130216,15 +130407,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '304': *35 '500': *38 '400': *14 @@ -130256,15 +130447,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: - - *393 + - *394 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *576 + default: *577 '500': *38 '401': *23 '403': *27 @@ -130294,9 +130485,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: &842 + default: &843 value: - id: 197 name: hello_docker @@ -130397,7 +130588,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 title: Email description: Email type: object @@ -130467,9 +130658,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: &844 + default: &845 value: - email: octocat@github.com verified: true @@ -130546,7 +130737,7 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: default: value: @@ -130804,7 +130995,7 @@ paths: application/json: schema: type: array - items: &832 + items: &833 title: GPG Key description: A unique encryption key type: object @@ -130949,7 +131140,7 @@ paths: - subkeys - revoked examples: - default: &861 + default: &862 value: - id: 3 name: Octocat's GPG Key @@ -131034,9 +131225,9 @@ paths: description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: &833 + default: &834 value: id: 3 name: Octocat's GPG Key @@ -131093,7 +131284,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: - - &834 + - &835 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -131105,9 +131296,9 @@ paths: description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: *833 + default: *834 '404': *6 '304': *35 '403': *27 @@ -131130,7 +131321,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: - - *834 + - *835 responses: '204': description: Response @@ -131332,7 +131523,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *275 + default: *276 headers: Link: *45 '404': *6 @@ -131358,7 +131549,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -131384,7 +131575,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *274 + - *275 responses: '204': description: Response @@ -131418,12 +131609,12 @@ paths: application/json: schema: anyOf: - - *378 + - *379 - type: object properties: {} additionalProperties: false examples: - default: *379 + default: *380 '204': description: Response when there are no restrictions x-github: @@ -131447,7 +131638,7 @@ paths: required: true content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -131458,7 +131649,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *379 examples: default: value: @@ -131539,7 +131730,7 @@ paths: - closed - all default: open - - *389 + - *390 - name: sort description: What to sort results by. in: query @@ -131552,7 +131743,7 @@ paths: - comments default: created - *110 - - *226 + - *227 - *17 - *19 responses: @@ -131562,9 +131753,9 @@ paths: application/json: schema: type: array - items: *221 + items: *222 examples: - default: *390 + default: *391 headers: Link: *45 '404': *6 @@ -131597,7 +131788,7 @@ paths: application/json: schema: type: array - items: &835 + items: &836 title: Key description: Key type: object @@ -131700,9 +131891,9 @@ paths: description: Response content: application/json: - schema: *835 + schema: *836 examples: - default: &836 + default: &837 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -131735,15 +131926,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: - - *703 + - *704 responses: '200': description: Response content: application/json: - schema: *835 + schema: *836 examples: - default: *836 + default: *837 '404': *6 '304': *35 '403': *27 @@ -131766,7 +131957,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: - - *703 + - *704 responses: '204': description: Response @@ -131799,7 +131990,7 @@ paths: application/json: schema: type: array - items: &837 + items: &838 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -131867,7 +132058,7 @@ paths: - id - type - login - plan: *237 + plan: *238 required: - billing_cycle - next_billing_date @@ -131878,7 +132069,7 @@ paths: - account - plan examples: - default: &838 + default: &839 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -131940,9 +132131,9 @@ paths: application/json: schema: type: array - items: *837 + items: *838 examples: - default: *838 + default: *839 headers: Link: *45 '304': *35 @@ -131982,7 +132173,7 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: default: value: @@ -132096,7 +132287,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -132183,9 +132374,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: &839 + default: &840 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -132232,9 +132423,9 @@ paths: processed asynchronously. content: application/json: - schema: *394 + schema: *395 examples: - default: *839 + default: *840 '403': *27 '404': *6 '422': *15 @@ -132263,7 +132454,7 @@ paths: application/json: schema: type: array - items: *396 + items: *397 examples: default: value: @@ -132525,7 +132716,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -132705,7 +132896,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *397 + - *398 - name: exclude in: query required: false @@ -132718,7 +132909,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -132912,7 +133103,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *397 + - *398 responses: '302': description: Response @@ -132938,7 +133129,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *397 + - *398 responses: '204': description: Response @@ -132967,8 +133158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *397 - - *840 + - *398 + - *841 responses: '204': description: Response @@ -132992,7 +133183,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *397 + - *398 - *17 - *19 responses: @@ -133002,9 +133193,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '404': *6 @@ -133059,7 +133250,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 '304': *35 @@ -133101,7 +133292,7 @@ paths: - docker - nuget - container - - *841 + - *842 - *19 - *17 responses: @@ -133111,10 +133302,10 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 - '400': *843 + default: *843 + '400': *844 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133134,16 +133325,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: - - *403 - *404 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &862 + default: &863 value: id: 40201 name: octo-name @@ -133256,8 +133447,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: - - *403 - *404 + - *405 responses: '204': description: Response @@ -133287,8 +133478,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: - - *403 - *404 + - *405 - name: token description: package token schema: @@ -133320,8 +133511,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: - - *403 - *404 + - *405 - *19 - *17 - name: state @@ -133341,7 +133532,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -133390,15 +133581,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -133434,9 +133625,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -133466,9 +133657,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: - - *403 - *404 - - *406 + - *405 + - *407 responses: '204': description: Response @@ -133505,9 +133696,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: *844 + default: *845 headers: Link: *45 '304': *35 @@ -133620,7 +133811,7 @@ paths: type: array items: *78 examples: - default: &851 + default: &852 summary: Default response value: - id: 1296269 @@ -133938,9 +134129,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *481 + default: *482 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -133984,9 +134175,9 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: - default: *845 + default: *846 headers: Link: *45 '304': *35 @@ -134009,7 +134200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -134038,7 +134229,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *382 + - *383 responses: '204': description: Response @@ -134071,7 +134262,7 @@ paths: application/json: schema: type: array - items: &846 + items: &847 title: Social account description: Social media account type: object @@ -134088,7 +134279,7 @@ paths: - provider - url examples: - default: &847 + default: &848 value: - provider: twitter url: https://twitter.com/github @@ -134151,9 +134342,9 @@ paths: application/json: schema: type: array - items: *846 + items: *847 examples: - default: *847 + default: *848 '422': *15 '304': *35 '404': *6 @@ -134241,7 +134432,7 @@ paths: application/json: schema: type: array - items: &848 + items: &849 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -134261,7 +134452,7 @@ paths: - title - created_at examples: - default: &876 + default: &877 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -134326,9 +134517,9 @@ paths: description: Response content: application/json: - schema: *848 + schema: *849 examples: - default: &849 + default: &850 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -134358,7 +134549,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: - - &850 + - &851 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -134370,9 +134561,9 @@ paths: description: Response content: application/json: - schema: *848 + schema: *849 examples: - default: *849 + default: *850 '404': *6 '304': *35 '403': *27 @@ -134395,7 +134586,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: - - *850 + - *851 responses: '204': description: Response @@ -134424,7 +134615,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: - - &877 + - &878 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 @@ -134449,11 +134640,11 @@ paths: type: array items: *78 examples: - default-response: *851 + default-response: *852 application/vnd.github.v3.star+json: schema: type: array - items: &878 + items: &879 title: Starred Repository description: Starred Repository type: object @@ -134609,8 +134800,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: - - *474 - *475 + - *476 responses: '204': description: Response if this repository is starred by you @@ -134638,8 +134829,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -134663,8 +134854,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: - - *474 - *475 + - *476 responses: '204': description: Response @@ -134697,9 +134888,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 '304': *35 @@ -134736,7 +134927,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -134814,7 +135005,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *239 + - *240 responses: '200': description: Response @@ -134822,10 +135013,10 @@ paths: application/json: schema: oneOf: + - *827 - *826 - - *825 examples: - default-response: &855 + default-response: &856 summary: Default response value: login: octocat @@ -134860,7 +135051,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &856 + response-with-git-hub-plan-information: &857 summary: Response with GitHub plan information value: login: octocat @@ -134917,14 +135108,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &853 + - &854 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *419 + - *420 requestBody: required: true description: Details of the draft item to create in the project. @@ -134958,9 +135149,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - draft_issue: *425 + draft_issue: *426 '304': *35 '403': *27 '401': *23 @@ -134983,7 +135174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *852 + - *853 - *17 responses: '200': @@ -135018,8 +135209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *853 - - *419 + - *854 + - *420 requestBody: required: true content: @@ -135093,17 +135284,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *854 + schema: *855 examples: table_view: summary: Response for creating a table view - value: *429 + value: *430 board_view: summary: Response for creating a board view with filter - value: *429 + value: *430 roadmap_view: summary: Response for creating a roadmap view - value: *429 + value: *430 '304': *35 '403': *27 '401': *23 @@ -135145,11 +135336,11 @@ paths: application/json: schema: oneOf: + - *827 - *826 - - *825 examples: - default-response: *855 - response-with-git-hub-plan-information: *856 + default-response: *856 + response-with-git-hub-plan-information: *857 '404': *6 x-github: githubCloudOnly: false @@ -135199,8 +135390,8 @@ paths: required: - subject_digests examples: - default: *857 - withPredicateType: *858 + default: *858 + withPredicateType: *859 responses: '200': description: Response @@ -135254,7 +135445,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *859 + default: *860 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -135474,12 +135665,12 @@ paths: initiator: type: string examples: - default: *520 + default: *521 '201': description: Response content: application/json: - schema: *291 + schema: *292 examples: default: value: @@ -135555,7 +135746,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *328 + items: *329 examples: default: summary: Example response for listing user copilot spaces @@ -135770,9 +135961,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: &860 + default: &861 summary: Example response for a user copilot space value: id: 42 @@ -135871,9 +136062,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 x-github: @@ -135997,9 +136188,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *329 examples: - default: *860 + default: *861 '403': *27 '404': *6 '422': *15 @@ -136076,7 +136267,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *330 + items: *331 examples: default: value: @@ -136219,7 +136410,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -136330,7 +136521,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -136460,7 +136651,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *331 + items: *332 examples: default: value: @@ -136552,7 +136743,7 @@ paths: description: Resource created content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -136568,7 +136759,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -136621,7 +136812,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -136688,7 +136879,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -136765,9 +136956,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 + default: *843 '403': *27 '401': *23 x-github: @@ -136800,7 +136991,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -136873,7 +137064,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -136960,7 +137151,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -137108,7 +137299,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *143 - - *226 + - *227 - *17 - *19 responses: @@ -137118,9 +137309,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *228 + default: *229 headers: Link: *45 '422': *15 @@ -137151,9 +137342,9 @@ paths: application/json: schema: type: array - items: *832 + items: *833 examples: - default: *861 + default: *862 headers: Link: *45 x-github: @@ -137257,7 +137448,7 @@ paths: application/json: schema: *20 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -137343,7 +137534,7 @@ paths: type: array items: *73 examples: - default: *250 + default: *251 headers: Link: *45 x-github: @@ -137382,7 +137573,7 @@ paths: - docker - nuget - container - - *841 + - *842 - *143 - *19 - *17 @@ -137393,12 +137584,12 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *842 + default: *843 '403': *27 '401': *23 - '400': *843 + '400': *844 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -137418,17 +137609,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *862 + default: *863 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -137449,8 +137640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '204': @@ -137483,8 +137674,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *403 - *404 + - *405 - *143 - name: token description: package token @@ -137517,8 +137708,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-a-user parameters: - - *403 - *404 + - *405 - *143 responses: '200': @@ -137527,7 +137718,7 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: default: value: @@ -137585,16 +137776,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: - - *403 - *404 - - *406 + - *405 + - *407 - *143 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -137629,10 +137820,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -137664,10 +137855,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *403 - *404 + - *405 - *143 - - *406 + - *407 responses: '204': description: Response @@ -137708,9 +137899,9 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -137732,16 +137923,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *419 + - *420 - *143 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 headers: Link: *45 '304': *35 @@ -137763,7 +137954,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *419 + - *420 - *143 - *17 - *108 @@ -137775,9 +137966,9 @@ paths: application/json: schema: type: array - items: *422 + items: *423 examples: - default: *863 + default: *864 headers: Link: *45 '304': *35 @@ -137799,7 +137990,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true content: @@ -137837,7 +138028,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *864 + items: *865 required: - name - data_type @@ -137853,7 +138044,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *865 + iteration_configuration: *866 required: - name - data_type @@ -137875,20 +138066,20 @@ paths: value: name: Due date data_type: date - single_select_field: *866 - iteration_field: *867 + single_select_field: *867 + iteration_field: *868 responses: '201': description: Response content: application/json: - schema: *422 + schema: *423 examples: - text_field: *868 - number_field: *869 - date_field: *870 - single_select_field: *871 - iteration_field: *872 + text_field: *869 + number_field: *870 + date_field: *871 + single_select_field: *872 + iteration_field: *873 '304': *35 '403': *27 '401': *23 @@ -137909,17 +138100,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *419 - - *873 + - *420 + - *874 - *143 responses: '200': description: Response content: application/json: - schema: *422 + schema: *423 examples: - default: *874 + default: *875 headers: Link: *45 '304': *35 @@ -137942,7 +138133,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *419 + - *420 - *143 - *108 - *109 @@ -137975,9 +138166,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -137999,7 +138190,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *143 - - *419 + - *420 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -138069,22 +138260,22 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *425 + value: *426 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *425 + value: *426 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *425 + value: *426 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *425 + value: *426 '304': *35 '403': *27 '401': *23 @@ -138104,9 +138295,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: - - *419 + - *420 - *143 - - *428 + - *429 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -138126,9 +138317,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -138149,9 +138340,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -138224,13 +138415,13 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - text_field: *427 - number_field: *427 - date_field: *427 - single_select_field: *427 - iteration_field: *427 + text_field: *428 + number_field: *428 + date_field: *428 + single_select_field: *428 + iteration_field: *428 '401': *23 '403': *27 '404': *6 @@ -138250,9 +138441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *419 + - *420 - *143 - - *428 + - *429 responses: '204': description: Response @@ -138274,9 +138465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *419 + - *420 - *143 - - *875 + - *876 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -138302,9 +138493,9 @@ paths: application/json: schema: type: array - items: *426 + items: *427 examples: - default: *427 + default: *428 headers: Link: *45 '304': *35 @@ -138342,7 +138533,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -138417,7 +138608,7 @@ paths: application/json: schema: type: array - items: *245 + items: *246 examples: default: value: @@ -138523,9 +138714,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -138555,9 +138746,9 @@ paths: application/json: schema: type: array - items: *846 + items: *847 examples: - default: *847 + default: *848 headers: Link: *45 x-github: @@ -138587,9 +138778,9 @@ paths: application/json: schema: type: array - items: *848 + items: *849 examples: - default: *876 + default: *877 headers: Link: *45 x-github: @@ -138614,7 +138805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *143 - - *877 + - *878 - *110 - *17 - *19 @@ -138626,11 +138817,11 @@ paths: schema: anyOf: - type: array - items: *878 + items: *879 - type: array items: *78 examples: - default-response: *851 + default-response: *852 headers: Link: *45 x-github: @@ -138659,9 +138850,9 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: - default: *407 + default: *408 headers: Link: *45 x-github: @@ -138790,7 +138981,7 @@ webhooks: type: string enum: - disabled - enterprise: &879 + enterprise: &880 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -138859,7 +139050,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &880 + installation: &881 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -138880,7 +139071,7 @@ webhooks: required: - id - node_id - organization: &881 + organization: &882 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -138953,7 +139144,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &882 + repository: &883 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -138982,7 +139173,7 @@ webhooks: license: anyOf: - type: 'null' - - *223 + - *224 organization: anyOf: - type: 'null' @@ -139893,10 +140084,10 @@ webhooks: type: string enum: - enabled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -139972,11 +140163,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: &883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: &884 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) @@ -140199,11 +140390,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -140391,11 +140582,11 @@ webhooks: - everyone required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - rule: *883 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + rule: *884 sender: *4 required: - action @@ -140468,7 +140659,7 @@ webhooks: required: true content: application/json: - schema: &903 + schema: &904 title: Exemption request cancellation event type: object properties: @@ -140476,11 +140667,11 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: &884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: &885 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -140789,7 +140980,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &885 + items: &886 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -140901,7 +141092,7 @@ webhooks: required: true content: application/json: - schema: &904 + schema: &905 title: Exemption request completed event type: object properties: @@ -140909,11 +141100,11 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -140985,7 +141176,7 @@ webhooks: required: true content: application/json: - schema: &901 + schema: &902 title: Exemption request created event type: object properties: @@ -140993,11 +141184,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 sender: *4 required: - action @@ -141069,7 +141260,7 @@ webhooks: required: true content: application/json: - schema: &905 + schema: &906 title: Exemption response dismissed event type: object properties: @@ -141077,12 +141268,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -141156,7 +141347,7 @@ webhooks: required: true content: application/json: - schema: &902 + schema: &903 title: Exemption response submitted event type: object properties: @@ -141164,12 +141355,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - exemption_request: *884 - exemption_response: *885 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + exemption_request: *885 + exemption_response: *886 sender: *4 required: - action @@ -141253,7 +141444,7 @@ webhooks: type: string enum: - completed - check_run: &887 + check_run: &888 title: CheckRun description: A check performed on the code of a given code change type: object @@ -141318,8 +141509,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *224 - repository: *280 + items: *225 + repository: *281 status: type: string enum: @@ -141363,7 +141554,7 @@ webhooks: - examples: - neutral - deployment: *886 + deployment: *887 details_url: type: string examples: @@ -141423,7 +141614,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *224 + items: *225 started_at: type: string format: date-time @@ -141461,10 +141652,10 @@ webhooks: - output - app - pull_requests - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -141855,11 +142046,11 @@ webhooks: type: string enum: - created - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -142253,11 +142444,11 @@ webhooks: type: string enum: - requested_action - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 requested_action: description: The action requested by the user. type: object @@ -142660,11 +142851,11 @@ webhooks: type: string enum: - rerequested - check_run: *887 - installation: *880 - enterprise: *879 - organization: *881 - repository: *882 + check_run: *888 + installation: *881 + enterprise: *880 + organization: *882 + repository: *883 sender: *4 required: - check_run @@ -143649,10 +143840,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -144366,10 +144557,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -145077,10 +145268,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -145249,7 +145440,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -145401,20 +145592,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &888 + commit_oid: &889 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: *879 - installation: *880 - organization: *881 - ref: &889 + enterprise: *880 + installation: *881 + organization: *882 + ref: &890 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: *882 + repository: *883 sender: *4 required: - action @@ -145581,7 +145772,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -145822,12 +146013,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -145925,7 +146116,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -146110,12 +146301,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -146284,7 +146475,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -146461,12 +146652,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -146567,7 +146758,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -146756,9 +146947,9 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -146766,7 +146957,7 @@ webhooks: type: - string - 'null' - repository: *882 + repository: *883 sender: *4 required: - action @@ -146865,7 +147056,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -147012,12 +147203,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *888 - enterprise: *879 - installation: *880 - organization: *881 - ref: *889 - repository: *882 + commit_oid: *889 + enterprise: *880 + installation: *881 + organization: *882 + ref: *890 + repository: *883 sender: *4 required: - action @@ -147186,7 +147377,7 @@ webhooks: required: - login - id - dismissed_comment: *548 + dismissed_comment: *549 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -147338,10 +147529,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -147601,10 +147792,10 @@ webhooks: - updated_at - author_association - body - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -147685,18 +147876,18 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *881 - pusher_type: &890 + organization: *882 + pusher_type: &891 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &891 + ref: &892 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -147706,7 +147897,7 @@ webhooks: enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -147789,9 +147980,9 @@ webhooks: enum: - created definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -147876,9 +148067,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -147956,9 +148147,9 @@ webhooks: enum: - promote_to_enterprise definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -148036,9 +148227,9 @@ webhooks: enum: - updated definition: *156 - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -148115,10 +148306,10 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - repository: *882 - organization: *881 + enterprise: *880 + installation: *881 + repository: *883 + organization: *882 sender: *4 new_property_values: type: array @@ -148203,18 +148394,18 @@ webhooks: title: delete event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - pusher_type: *890 - ref: *891 + enterprise: *880 + installation: *881 + organization: *882 + pusher_type: *891 + ref: *892 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *882 + repository: *883 sender: *4 required: - ref @@ -148294,11 +148485,11 @@ webhooks: type: string enum: - assignees_changed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148378,11 +148569,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148463,11 +148654,11 @@ webhooks: type: string enum: - auto_reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148548,11 +148739,11 @@ webhooks: type: string enum: - created - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148631,11 +148822,11 @@ webhooks: type: string enum: - dismissed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148714,11 +148905,11 @@ webhooks: type: string enum: - fixed - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148798,11 +148989,11 @@ webhooks: type: string enum: - reintroduced - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148881,11 +149072,11 @@ webhooks: type: string enum: - reopened - alert: *608 - installation: *880 - organization: *881 - enterprise: *879 - repository: *882 + alert: *609 + installation: *881 + organization: *882 + enterprise: *880 + repository: *883 sender: *4 required: - action @@ -148962,9 +149153,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - key: &892 + enterprise: *880 + installation: *881 + key: &893 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -149002,8 +149193,8 @@ webhooks: - verified - created_at - read_only - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -149080,11 +149271,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - key: *892 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + key: *893 + organization: *882 + repository: *883 sender: *4 required: - action @@ -149651,12 +149842,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: &896 + workflow: &897 title: Workflow type: - object @@ -150407,13 +150598,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *615 + - *616 pull_requests: type: array - items: *723 - repository: *882 - organization: *881 - installation: *880 + items: *724 + repository: *883 + organization: *882 + installation: *881 sender: *4 responses: '200': @@ -150484,7 +150675,7 @@ webhooks: type: string enum: - approved - approver: &893 + approver: &894 type: object properties: avatar_url: @@ -150527,11 +150718,11 @@ webhooks: type: string comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: &894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: &895 type: array items: type: object @@ -150612,7 +150803,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &895 + workflow_job_run: &896 type: object properties: conclusion: @@ -151358,18 +151549,18 @@ webhooks: type: string enum: - rejected - approver: *893 + approver: *894 comment: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - reviewers: *894 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + reviewers: *895 sender: *4 since: type: string - workflow_job_run: *895 + workflow_job_run: *896 workflow_job_runs: type: array items: @@ -152086,13 +152277,13 @@ webhooks: type: string enum: - requested - enterprise: *879 + enterprise: *880 environment: type: string - installation: *880 - organization: *881 - repository: *882 - requestor: &906 + installation: *881 + organization: *882 + repository: *883 + requestor: &907 title: User type: - object @@ -154025,12 +154216,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Deployment Workflow Run type: @@ -154721,7 +154912,7 @@ webhooks: type: string enum: - answered - answer: &899 + answer: &900 type: object properties: author_association: @@ -154881,11 +155072,11 @@ webhooks: - created_at - updated_at - body - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155012,11 +155203,11 @@ webhooks: - from required: - category - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155099,11 +155290,11 @@ webhooks: type: string enum: - closed - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155185,7 +155376,7 @@ webhooks: type: string enum: - created - comment: &898 + comment: &899 type: object properties: author_association: @@ -155345,11 +155536,11 @@ webhooks: - updated_at - body - reactions - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155432,12 +155623,12 @@ webhooks: type: string enum: - deleted - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155532,12 +155723,12 @@ webhooks: - from required: - body - comment: *898 - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + comment: *899 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155621,11 +155812,11 @@ webhooks: type: string enum: - created - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155707,11 +155898,11 @@ webhooks: type: string enum: - deleted - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155811,11 +156002,11 @@ webhooks: type: string required: - from - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -155897,10 +156088,10 @@ webhooks: type: string enum: - labeled - discussion: *897 - enterprise: *879 - installation: *880 - label: &900 + discussion: *898 + enterprise: *880 + installation: *881 + label: &901 title: Label type: object properties: @@ -155933,8 +156124,8 @@ webhooks: - color - default - description - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156017,11 +156208,11 @@ webhooks: type: string enum: - locked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156103,11 +156294,11 @@ webhooks: type: string enum: - pinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156189,11 +156380,11 @@ webhooks: type: string enum: - reopened - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156278,16 +156469,16 @@ webhooks: changes: type: object properties: - new_discussion: *897 - new_repository: *882 + new_discussion: *898 + new_repository: *883 required: - new_discussion - new_repository - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156370,10 +156561,10 @@ webhooks: type: string enum: - unanswered - discussion: *897 - old_answer: *899 - organization: *881 - repository: *882 + discussion: *898 + old_answer: *900 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156455,12 +156646,12 @@ webhooks: type: string enum: - unlabeled - discussion: *897 - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156543,11 +156734,11 @@ webhooks: type: string enum: - unlocked - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156629,11 +156820,11 @@ webhooks: type: string enum: - unpinned - discussion: *897 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + discussion: *898 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -156702,7 +156893,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156765,7 +156956,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156828,7 +157019,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156891,7 +157082,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -156954,7 +157145,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157020,7 +157211,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157086,7 +157277,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157152,7 +157343,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157218,7 +157409,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157284,7 +157475,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157349,7 +157540,7 @@ webhooks: required: true content: application/json: - schema: *903 + schema: *904 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157414,7 +157605,7 @@ webhooks: required: true content: application/json: - schema: *904 + schema: *905 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157479,7 +157670,7 @@ webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157544,7 +157735,7 @@ webhooks: required: true content: application/json: - schema: *905 + schema: *906 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157610,7 +157801,7 @@ webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157677,7 +157868,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *879 + enterprise: *880 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -158355,9 +158546,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - forkee @@ -158503,9 +158694,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pages: description: The pages that were updated. type: array @@ -158543,7 +158734,7 @@ webhooks: - action - sha - html_url - repository: *882 + repository: *883 sender: *4 required: - pages @@ -158619,10 +158810,10 @@ webhooks: type: string enum: - created - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: &907 + organization: *882 + repositories: &908 description: An array of repository objects that the installation can access. type: array @@ -158648,8 +158839,8 @@ webhooks: - name - full_name - private - repository: *882 - requester: *906 + repository: *883 + requester: *907 sender: *4 required: - action @@ -158724,11 +158915,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -158805,11 +158996,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -158886,10 +159077,10 @@ webhooks: type: string enum: - added - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: &908 + organization: *882 + repositories_added: &909 description: An array of repository objects, which were added to the installation. type: array @@ -158935,15 +159126,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *882 - repository_selection: &909 + repository: *883 + repository_selection: &910 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *906 + requester: *907 sender: *4 required: - action @@ -159022,10 +159213,10 @@ webhooks: type: string enum: - removed - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories_added: *908 + organization: *882 + repositories_added: *909 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -159052,9 +159243,9 @@ webhooks: - name - full_name - private - repository: *882 - repository_selection: *909 - requester: *906 + repository: *883 + repository_selection: *910 + requester: *907 sender: *4 required: - action @@ -159133,11 +159324,11 @@ webhooks: type: string enum: - suspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -159320,10 +159511,10 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 target_type: type: string @@ -159402,11 +159593,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *879 + enterprise: *880 installation: *20 - organization: *881 - repositories: *907 - repository: *882 + organization: *882 + repositories: *908 + repository: *883 requester: type: - 'null' @@ -159572,11 +159763,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 user: title: User type: @@ -159662,8 +159853,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160475,8 +160666,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160493,7 +160684,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -160837,8 +161028,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -160918,7 +161109,7 @@ webhooks: type: string enum: - deleted - comment: &910 + comment: &911 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -161075,11 +161266,11 @@ webhooks: pin: anyOf: - type: 'null' - - *688 + - *689 minimized: anyOf: - type: 'null' - - *689 + - *690 required: - url - html_url @@ -161093,8 +161284,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161902,8 +162093,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161920,7 +162111,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -162266,8 +162457,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -162347,7 +162538,7 @@ webhooks: type: string enum: - edited - changes: &934 + changes: &935 description: The changes to the comment. type: object properties: @@ -162359,9 +162550,9 @@ webhooks: type: string required: - from - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163172,8 +163363,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163190,7 +163381,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -163534,8 +163725,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -163616,9 +163807,9 @@ webhooks: type: string enum: - pinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -164431,8 +164622,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164449,7 +164640,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -164795,8 +164986,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -164876,9 +165067,9 @@ webhooks: type: string enum: - unpinned - comment: *910 - enterprise: *879 - installation: *880 + comment: *911 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -165691,8 +165882,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165709,7 +165900,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -166055,8 +166246,8 @@ webhooks: - state - locked - assignee - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166139,15 +166330,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166230,15 +166421,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 + blocking_issue: *222 blocking_issue_repo: *78 - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166320,15 +166511,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166411,15 +166602,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *221 + blocked_issue: *222 blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *221 - installation: *880 - organization: *881 - repository: *882 + blocking_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -166499,10 +166690,10 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - issue: &911 + assignee: *907 + enterprise: *880 + installation: *881 + issue: &912 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -167312,12 +167503,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167334,7 +167525,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -167437,8 +167628,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -167518,8 +167709,8 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -168334,12 +168525,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168356,7 +168547,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -168602,8 +168793,8 @@ webhooks: required: - state - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -168682,8 +168873,8 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169489,12 +169680,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169511,7 +169702,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -169613,8 +169804,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -169693,8 +169884,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170523,12 +170714,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170545,7 +170736,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -170626,7 +170817,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &912 + milestone: &913 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170769,8 +170960,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -170869,8 +171060,8 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171680,12 +171871,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171699,7 +171890,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -171805,9 +171996,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -171887,9 +172078,9 @@ webhooks: type: string enum: - field_added - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was set or updated on the @@ -172055,8 +172246,8 @@ webhooks: - id required: - from - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -172136,9 +172327,9 @@ webhooks: type: string enum: - field_removed - enterprise: *879 - installation: *880 - issue: *911 + enterprise: *880 + installation: *881 + issue: *912 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -172225,8 +172416,8 @@ webhooks: - 'null' required: - id - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -172306,8 +172497,8 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173116,12 +173307,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173135,7 +173326,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -173241,9 +173432,9 @@ webhooks: - active_lock_reason - body - reactions - label: *900 - organization: *881 - repository: *882 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -173323,8 +173514,8 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174158,12 +174349,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174177,7 +174368,7 @@ webhooks: timeline_url: type: string format: uri - type: *386 + type: *387 title: description: Title of the issue type: string @@ -174260,8 +174451,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -174340,8 +174531,8 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175169,12 +175360,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175191,7 +175382,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -175271,9 +175462,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *912 - organization: *881 - repository: *882 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -176160,11 +176351,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176191,7 +176382,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -176264,7 +176455,7 @@ webhooks: required: - login - id - type: *386 + type: *387 required: - id - number @@ -176756,8 +176947,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -177564,11 +177755,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *816 - issue_dependencies_summary: *817 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177585,7 +177776,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -177596,7 +177787,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 + - *223 user: title: User type: @@ -177691,8 +177882,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -177772,9 +177963,9 @@ webhooks: type: string enum: - pinned - enterprise: *879 - installation: *880 - issue: &913 + enterprise: *880 + installation: *881 + issue: &914 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -178578,12 +178769,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178600,7 +178791,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -178702,8 +178893,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -178782,8 +178973,8 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -179615,12 +179806,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179717,9 +179908,9 @@ webhooks: format: uri user_view_type: type: string - type: *386 - organization: *881 - repository: *882 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -180606,12 +180797,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -180628,7 +180819,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -181221,11 +181412,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181305,12 +181496,12 @@ webhooks: type: string enum: - typed - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181391,7 +181582,7 @@ webhooks: type: string enum: - unassigned - assignee: &937 + assignee: &938 title: User type: - object @@ -181463,11 +181654,11 @@ webhooks: required: - login - id - enterprise: *879 - installation: *880 - issue: *911 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181546,12 +181737,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - issue: *911 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -181631,8 +181822,8 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -182464,12 +182655,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *222 - sub_issues_summary: *816 - issue_dependencies_summary: *817 + - *223 + sub_issues_summary: *817 + issue_dependencies_summary: *818 issue_field_values: type: array - items: *672 + items: *673 state: description: State of the issue; either 'open' or 'closed' type: string @@ -182486,7 +182677,7 @@ webhooks: title: description: Title of the issue type: string - type: *386 + type: *387 updated_at: type: string format: date-time @@ -182566,8 +182757,8 @@ webhooks: format: uri user_view_type: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182647,11 +182838,11 @@ webhooks: type: string enum: - unpinned - enterprise: *879 - installation: *880 - issue: *913 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *914 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182730,12 +182921,12 @@ webhooks: type: string enum: - untyped - enterprise: *879 - installation: *880 - issue: *911 - type: *386 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + issue: *912 + type: *387 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182815,11 +183006,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -182897,11 +183088,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183011,11 +183202,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - label: *900 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + label: *901 + organization: *882 + repository: *883 sender: *4 required: - action @@ -183097,9 +183288,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: &914 + enterprise: *880 + installation: *881 + marketplace_purchase: &915 title: Marketplace Purchase type: object required: @@ -183187,8 +183378,8 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: &915 + organization: *882 + previous_marketplace_purchase: &916 title: Marketplace Purchase type: object properties: @@ -183272,7 +183463,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -183352,10 +183543,10 @@ webhooks: - changed effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183443,7 +183634,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -183525,10 +183716,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183614,7 +183805,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *882 + repository: *883 sender: *4 required: - action @@ -183695,8 +183886,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 marketplace_purchase: title: Marketplace Purchase type: object @@ -183782,9 +183973,9 @@ webhooks: type: integer unit_count: type: integer - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -183864,12 +184055,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *879 - installation: *880 - marketplace_purchase: *914 - organization: *881 - previous_marketplace_purchase: *915 - repository: *882 + enterprise: *880 + installation: *881 + marketplace_purchase: *915 + organization: *882 + previous_marketplace_purchase: *916 + repository: *883 sender: *4 required: - action @@ -183971,11 +184162,11 @@ webhooks: type: string required: - to - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184077,11 +184268,11 @@ webhooks: type: - string - 'null' - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184160,11 +184351,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184242,11 +184433,11 @@ webhooks: type: string enum: - added - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184324,7 +184515,7 @@ webhooks: required: - login - id - team: &916 + team: &917 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -184554,11 +184745,11 @@ webhooks: type: string enum: - removed - enterprise: *879 - installation: *880 - member: *906 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + member: *907 + organization: *882 + repository: *883 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184637,7 +184828,7 @@ webhooks: required: - login - id - team: *916 + team: *917 required: - action - scope @@ -184719,8 +184910,8 @@ webhooks: type: string enum: - checks_requested - installation: *880 - merge_group: &917 + installation: *881 + merge_group: &918 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -184739,15 +184930,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *540 + head_commit: *541 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184833,10 +185024,10 @@ webhooks: - merged - invalidated - dequeued - installation: *880 - merge_group: *917 - organization: *881 - repository: *882 + installation: *881 + merge_group: *918 + organization: *882 + repository: *883 sender: *4 required: - action @@ -184909,7 +185100,7 @@ webhooks: type: string enum: - deleted - enterprise: *879 + enterprise: *880 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -185018,12 +185209,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *880 - organization: *881 + installation: *881 + organization: *882 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -185103,11 +185294,11 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185186,9 +185377,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - milestone: &918 + enterprise: *880 + installation: *881 + milestone: &919 title: Milestone description: A collection of related issues and pull requests. type: object @@ -185330,8 +185521,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185410,11 +185601,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185524,11 +185715,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - milestone: *912 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *913 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185608,11 +185799,11 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - milestone: *918 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + milestone: *919 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185691,11 +185882,11 @@ webhooks: type: string enum: - blocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185774,11 +185965,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *906 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + blocked_user: *907 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -185854,7 +186045,7 @@ webhooks: enum: - created definition: *151 - enterprise: *879 + enterprise: *880 sender: *4 required: - action @@ -185934,8 +186125,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -186008,8 +186199,8 @@ webhooks: enum: - updated definition: *151 - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 sender: *4 required: - action @@ -186081,9 +186272,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 new_property_values: type: array @@ -186171,9 +186362,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - membership: &919 + enterprise: *880 + installation: *881 + membership: &920 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -186283,8 +186474,8 @@ webhooks: - role - organization_url - user - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 required: - action @@ -186362,11 +186553,11 @@ webhooks: type: string enum: - member_added - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -186445,8 +186636,8 @@ webhooks: type: string enum: - member_invited - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -186568,10 +186759,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 - user: *906 + user: *907 required: - action - invitation @@ -186649,11 +186840,11 @@ webhooks: type: string enum: - member_removed - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -186740,11 +186931,11 @@ webhooks: properties: from: type: string - enterprise: *879 - installation: *880 - membership: *919 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + membership: *920 + organization: *882 + repository: *883 sender: *4 required: - action @@ -186822,9 +187013,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -187347,7 +187538,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &920 + items: &921 title: Ruby Gems metadata type: object properties: @@ -187444,7 +187635,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -187521,9 +187712,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 package: description: Information about the package. type: object @@ -187885,7 +188076,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 source_url: type: string format: uri @@ -187956,7 +188147,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -188136,12 +188327,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *879 + enterprise: *880 id: type: integer - installation: *880 - organization: *881 - repository: *882 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - id @@ -188218,7 +188409,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &921 + personal_access_token_request: &922 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -188368,10 +188559,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *879 - organization: *881 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -188448,11 +188639,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -188528,11 +188719,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *921 - enterprise: *879 - organization: *881 + personal_access_token_request: *922 + enterprise: *880 + organization: *882 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -188607,11 +188798,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *921 - organization: *881 - enterprise: *879 + personal_access_token_request: *922 + organization: *882 + enterprise: *880 sender: *4 - installation: *880 + installation: *881 required: - action - personal_access_token_request @@ -188716,7 +188907,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *922 + last_response: *923 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -188748,8 +188939,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 zen: description: Random string of GitHub zen. @@ -188994,10 +189185,10 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: &923 + enterprise: *880 + installation: *881 + organization: *882 + project_card: &924 title: Project Card type: object properties: @@ -189120,7 +189311,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -189201,11 +189392,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -189285,9 +189476,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: title: Project Card type: object @@ -189417,7 +189608,7 @@ webhooks: repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -189511,11 +189702,11 @@ webhooks: - from required: - note - enterprise: *879 - installation: *880 - organization: *881 - project_card: *923 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_card: *924 + repository: *883 sender: *4 required: - action @@ -189609,9 +189800,9 @@ webhooks: - from required: - column_id - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 project_card: allOf: - title: Project Card @@ -189808,7 +189999,7 @@ webhooks: type: string required: - after_id - repository: *882 + repository: *883 sender: *4 required: - action @@ -189888,10 +190079,10 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - organization: *881 - project: &925 + enterprise: *880 + installation: *881 + organization: *882 + project: &926 title: Project type: object properties: @@ -190018,7 +190209,7 @@ webhooks: - creator - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -190098,10 +190289,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project_column: &924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: &925 title: Project Column type: object properties: @@ -190141,7 +190332,7 @@ webhooks: - name - created_at - updated_at - repository: *882 + repository: *883 sender: *4 required: - action @@ -190220,14 +190411,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -190316,11 +190507,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -190400,11 +190591,11 @@ webhooks: type: string enum: - moved - enterprise: *879 - installation: *880 - organization: *881 - project_column: *924 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project_column: *925 + repository: *883 sender: *4 required: - action @@ -190484,11 +190675,11 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -190568,14 +190759,14 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - project: *925 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 repository: anyOf: - type: 'null' - - *882 + - *883 sender: *4 required: - action @@ -190676,11 +190867,11 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -190759,11 +190950,11 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - organization: *881 - project: *925 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + project: *926 + repository: *883 sender: *4 required: - action @@ -190844,9 +191035,9 @@ webhooks: type: string enum: - closed - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -190927,9 +191118,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -191010,9 +191201,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -191133,9 +191324,9 @@ webhooks: type: string to: type: string - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -191218,7 +191409,7 @@ webhooks: type: string enum: - archived - changes: &929 + changes: &930 type: object properties: archived_at: @@ -191234,9 +191425,9 @@ webhooks: - string - 'null' format: date-time - installation: *880 - organization: *881 - projects_v2_item: &926 + installation: *881 + organization: *882 + projects_v2_item: &927 title: Projects v2 Item description: An item belonging to a project type: object @@ -191254,7 +191445,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *423 + content_type: *424 creator: *4 created_at: type: string @@ -191376,9 +191567,9 @@ webhooks: - 'null' to: type: string - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191460,9 +191651,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191543,9 +191734,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191650,7 +191841,7 @@ webhooks: oneOf: - type: string - type: integer - - &927 + - &928 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -191674,7 +191865,7 @@ webhooks: required: - id - name - - &928 + - &929 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -191714,8 +191905,8 @@ webhooks: oneOf: - type: string - type: integer - - *927 - *928 + - *929 type: - 'null' - string @@ -191738,9 +191929,9 @@ webhooks: - 'null' required: - body - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191837,9 +192028,9 @@ webhooks: type: - string - 'null' - installation: *880 - organization: *881 - projects_v2_item: *926 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -191922,10 +192113,10 @@ webhooks: type: string enum: - restored - changes: *929 - installation: *880 - organization: *881 - projects_v2_item: *926 + changes: *930 + installation: *881 + organization: *882 + projects_v2_item: *927 sender: *4 required: - action @@ -192007,9 +192198,9 @@ webhooks: type: string enum: - reopened - installation: *880 - organization: *881 - projects_v2: *417 + installation: *881 + organization: *882 + projects_v2: *418 sender: *4 required: - action @@ -192090,9 +192281,9 @@ webhooks: type: string enum: - created - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -192173,9 +192364,9 @@ webhooks: type: string enum: - deleted - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -192321,9 +192512,9 @@ webhooks: - string - 'null' format: date - installation: *880 - organization: *881 - projects_v2_status_update: *930 + installation: *881 + organization: *882 + projects_v2_status_update: *931 sender: *4 required: - action @@ -192394,10 +192585,10 @@ webhooks: title: public event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - repository @@ -192474,13 +192665,13 @@ webhooks: type: string enum: - assigned - assignee: *906 - enterprise: *879 - installation: *880 - number: &931 + assignee: *907 + enterprise: *880 + installation: *881 + number: &932 description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -194851,7 +195042,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -194948,11 +195139,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -197316,7 +197507,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -197413,11 +197604,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -199781,7 +199972,7 @@ webhooks: - draft reason: type: string - repository: *882 + repository: *883 sender: *4 required: - action @@ -199878,13 +200069,13 @@ webhooks: type: string enum: - closed - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: &932 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: &933 allOf: - - *723 + - *724 - type: object properties: allow_auto_merge: @@ -199946,7 +200137,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *882 + repository: *883 sender: *4 required: - action @@ -200027,12 +200218,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -200112,11 +200303,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: &933 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: &934 title: Pull Request type: object properties: @@ -202507,7 +202698,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *882 + repository: *883 sender: *4 required: - action @@ -202586,11 +202777,11 @@ webhooks: type: string enum: - dequeued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -204958,7 +205149,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *882 + repository: *883 sender: *4 required: - action @@ -205090,12 +205281,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -205175,11 +205366,11 @@ webhooks: type: string enum: - enqueued - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -207532,7 +207723,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -207620,11 +207811,11 @@ webhooks: type: string enum: - labeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -209994,7 +210185,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -210090,10 +210281,10 @@ webhooks: type: string enum: - locked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -212461,7 +212652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -212556,12 +212747,12 @@ webhooks: type: string enum: - milestoned - enterprise: *879 - milestone: *420 - number: *931 - organization: *881 - pull_request: *933 - repository: *882 + enterprise: *880 + milestone: *421 + number: *932 + organization: *882 + pull_request: *934 + repository: *883 sender: *4 required: - action @@ -212640,12 +212831,12 @@ webhooks: type: string enum: - opened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -212726,12 +212917,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -212811,12 +213002,12 @@ webhooks: type: string enum: - reopened - enterprise: *879 - installation: *880 - number: *931 - organization: *881 - pull_request: *932 - repository: *882 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 + pull_request: *933 + repository: *883 sender: *4 required: - action @@ -213191,9 +213382,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -215445,7 +215636,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -215540,7 +215731,7 @@ webhooks: type: string enum: - deleted - comment: &935 + comment: &936 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. @@ -215833,9 +216024,9 @@ webhooks: - start_side - side - reactions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -218075,7 +218266,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -218170,11 +218361,11 @@ webhooks: type: string enum: - edited - changes: *934 - comment: *935 - enterprise: *879 - installation: *880 - organization: *881 + changes: *935 + comment: *936 + enterprise: *880 + installation: *881 + organization: *882 pull_request: type: object properties: @@ -220417,7 +220608,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *882 + repository: *883 sender: *4 required: - action @@ -220513,9 +220704,9 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -222770,7 +222961,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 review: description: The review that was affected. type: object @@ -223036,9 +223227,9 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -225152,8 +225343,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: &936 + repository: *883 + review: &937 description: The review that was affected. type: object properties: @@ -225399,12 +225590,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -227773,7 +227964,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -227859,12 +228050,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -230240,7 +230431,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -230458,12 +230649,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -232834,7 +233025,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_reviewer: title: User type: @@ -232921,12 +233112,12 @@ webhooks: type: string enum: - review_requested - enterprise: *879 - installation: *880 + enterprise: *880 + installation: *881 number: description: The pull request number. type: integer - organization: *881 + organization: *882 pull_request: title: Pull Request type: object @@ -235288,7 +235479,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 requested_team: title: Team description: Groups of organization members that gives permissions @@ -235495,9 +235686,9 @@ webhooks: type: string enum: - submitted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -237755,8 +237946,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 - review: *936 + repository: *883 + review: *937 sender: *4 required: - action @@ -237851,9 +238042,9 @@ webhooks: type: string enum: - resolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -240006,7 +240197,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -240411,9 +240602,9 @@ webhooks: type: string enum: - unresolved - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 pull_request: title: Simple Pull Request type: object @@ -242549,7 +242740,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *882 + repository: *883 sender: *4 thread: type: object @@ -242950,10 +243141,10 @@ webhooks: type: string enum: - stacked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -245323,7 +245514,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -245424,10 +245615,10 @@ webhooks: type: string before: type: string - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -247784,7 +247975,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -247881,11 +248072,11 @@ webhooks: type: string enum: - unassigned - assignee: *937 - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + assignee: *938 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -250257,7 +250448,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -250351,11 +250542,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *879 - installation: *880 - label: *900 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + label: *901 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -252716,7 +252907,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -252812,10 +253003,10 @@ webhooks: type: string enum: - unlocked - enterprise: *879 - installation: *880 - number: *931 - organization: *881 + enterprise: *880 + installation: *881 + number: *932 + organization: *882 pull_request: title: Pull Request type: object @@ -255166,7 +255357,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *882 + repository: *883 sender: *4 required: - action @@ -255384,7 +255575,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *879 + enterprise: *880 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -255479,8 +255670,8 @@ webhooks: - url - author - committer - installation: *880 - organization: *881 + installation: *881 + organization: *882 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -256079,9 +256270,9 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -256558,7 +256749,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -256614,7 +256805,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -256692,9 +256883,9 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 registry_package: type: object properties: @@ -257006,7 +257197,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -257056,7 +257247,7 @@ webhooks: - owner - package_version - registry - repository: *882 + repository: *883 sender: *4 required: - action @@ -257133,10 +257324,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - release: &938 + enterprise: *880 + installation: *881 + organization: *882 + release: &939 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -257467,7 +257658,7 @@ webhooks: - updated_at - zipball_url - body - repository: *882 + repository: *883 sender: *4 required: - action @@ -257544,11 +257735,11 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -257665,11 +257856,11 @@ webhooks: type: boolean required: - to - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -257747,9 +257938,9 @@ webhooks: type: string enum: - prereleased - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -258085,7 +258276,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -258161,10 +258352,10 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - release: &939 + enterprise: *880 + installation: *881 + organization: *882 + release: &940 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -258497,7 +258688,7 @@ webhooks: - string - 'null' format: uri - repository: *882 + repository: *883 sender: *4 required: - action @@ -258573,11 +258764,11 @@ webhooks: type: string enum: - released - enterprise: *879 - installation: *880 - organization: *881 - release: *938 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *939 + repository: *883 sender: *4 required: - action @@ -258653,11 +258844,11 @@ webhooks: type: string enum: - unpublished - enterprise: *879 - installation: *880 - organization: *881 - release: *939 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + release: *940 + repository: *883 sender: *4 required: - action @@ -258733,11 +258924,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -258813,11 +259004,11 @@ webhooks: type: string enum: - reported - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - repository_advisory: *777 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + repository_advisory: *778 sender: *4 required: - action @@ -258893,10 +259084,10 @@ webhooks: type: string enum: - archived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -258973,10 +259164,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259054,10 +259245,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259142,10 +259333,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259260,10 +259451,10 @@ webhooks: - 'null' items: type: string - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259335,10 +259526,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 status: type: string @@ -259419,10 +259610,10 @@ webhooks: type: string enum: - privatized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259499,10 +259690,10 @@ webhooks: type: string enum: - publicized - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259596,10 +259787,10 @@ webhooks: - name required: - repository - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -259679,10 +259870,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -259761,10 +259952,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 sender: *4 required: @@ -259843,10 +260034,10 @@ webhooks: type: string enum: - edited - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 repository_ruleset: *190 changes: type: object @@ -259908,16 +260099,16 @@ webhooks: properties: added: type: array - items: *744 + items: *745 deleted: type: array - items: *744 + items: *745 updated: type: array items: type: object properties: - rule: *744 + rule: *745 changes: type: object properties: @@ -260154,10 +260345,10 @@ webhooks: - from required: - owner - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260235,10 +260426,10 @@ webhooks: type: string enum: - unarchived - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260316,7 +260507,7 @@ webhooks: type: string enum: - create - alert: &940 + alert: &941 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -260441,10 +260632,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260654,10 +260845,10 @@ webhooks: type: string enum: - dismissed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260735,11 +260926,11 @@ webhooks: type: string enum: - reopen - alert: *940 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *941 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -260941,10 +261132,10 @@ webhooks: enum: - fixed - open - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261022,7 +261213,7 @@ webhooks: type: string enum: - assigned - alert: &942 + alert: &943 type: object properties: number: *130 @@ -261161,12 +261352,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *941 + metadata: *942 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261244,11 +261435,11 @@ webhooks: type: string enum: - created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261329,11 +261520,11 @@ webhooks: type: string enum: - created - alert: *942 - installation: *880 - location: *943 - organization: *881 - repository: *882 + alert: *943 + installation: *881 + location: *944 + organization: *882 + repository: *883 sender: *4 required: - location @@ -261571,11 +261762,11 @@ webhooks: type: string enum: - metadata_created - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261652,11 +261843,11 @@ webhooks: type: string enum: - metadata_removed - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261733,11 +261924,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261815,11 +262006,11 @@ webhooks: type: string enum: - reopened - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261897,11 +262088,11 @@ webhooks: type: string enum: - resolved - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -261979,12 +262170,12 @@ webhooks: type: string enum: - unassigned - alert: *942 + alert: *943 assignee: *4 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262062,11 +262253,11 @@ webhooks: type: string enum: - validated - alert: *942 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + alert: *943 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -262196,10 +262387,10 @@ webhooks: - organization - enterprise - - repository: *882 - enterprise: *879 - installation: *880 - organization: *881 + repository: *883 + enterprise: *880 + installation: *881 + organization: *882 sender: *4 required: - action @@ -262277,11 +262468,11 @@ webhooks: type: string enum: - published - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: &944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: &945 description: The details of the security advisory, including summary, description, and severity. type: object @@ -262485,11 +262676,11 @@ webhooks: type: string enum: - updated - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 - security_advisory: *944 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 + security_advisory: *945 sender: *4 required: - action @@ -262562,10 +262753,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -262759,11 +262950,11 @@ webhooks: from: type: object properties: - security_and_analysis: *431 - enterprise: *879 - installation: *880 - organization: *881 - repository: *479 + security_and_analysis: *432 + enterprise: *880 + installation: *881 + organization: *882 + repository: *480 sender: *4 required: - changes @@ -262841,12 +263032,12 @@ webhooks: type: string enum: - cancelled - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: &945 + sponsorship: &946 type: object properties: created_at: @@ -263151,12 +263342,12 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -263244,12 +263435,12 @@ webhooks: type: string required: - from - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -263326,17 +263517,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &946 + effective_date: &947 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: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - sponsorship @@ -263410,7 +263601,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &947 + changes: &948 type: object properties: tier: @@ -263454,13 +263645,13 @@ webhooks: - from required: - tier - effective_date: *946 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + effective_date: *947 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -263537,13 +263728,13 @@ webhooks: type: string enum: - tier_changed - changes: *947 - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + changes: *948 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - sponsorship: *945 + sponsorship: *946 required: - action - changes @@ -263617,10 +263808,10 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -263704,10 +263895,10 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -264141,15 +264332,15 @@ webhooks: type: - string - 'null' - enterprise: *879 + enterprise: *880 id: description: The unique identifier of the status. type: integer - installation: *880 + installation: *881 name: type: string - organization: *881 - repository: *882 + organization: *882 + repository: *883 sender: *4 sha: description: The Commit SHA. @@ -264259,15 +264450,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -264350,15 +264541,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 + parent_issue: *222 parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 - installation: *880 - organization: *881 - repository: *882 + sub_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -264441,15 +264632,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -264532,15 +264723,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *221 + sub_issue: *222 sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *221 - installation: *880 - organization: *881 - repository: *882 + parent_issue: *222 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -264616,12 +264807,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - team: &948 + team: &949 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -264851,9 +265042,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -265323,7 +265514,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -265399,9 +265590,9 @@ webhooks: type: string enum: - created - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -265871,7 +266062,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -265948,9 +266139,9 @@ webhooks: type: string enum: - deleted - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -266420,7 +266611,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -266564,9 +266755,9 @@ webhooks: - from required: - permissions - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -267036,7 +267227,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - changes @@ -267114,9 +267305,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *879 - installation: *880 - organization: *881 + enterprise: *880 + installation: *881 + organization: *882 repository: title: Repository description: A git repository @@ -267586,7 +267777,7 @@ webhooks: - topics - visibility sender: *4 - team: *948 + team: *949 required: - action - team @@ -267662,10 +267853,10 @@ webhooks: type: string enum: - started - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 required: - action @@ -267738,17 +267929,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *879 + enterprise: *880 inputs: type: - object - 'null' additionalProperties: true - installation: *880 - organization: *881 + installation: *881 + organization: *882 ref: type: string - repository: *882 + repository: *883 sender: *4 workflow: type: string @@ -267830,10 +268021,10 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -268089,7 +268280,7 @@ webhooks: type: string required: - conclusion - deployment: *615 + deployment: *616 required: - action - repository @@ -268168,10 +268359,10 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: allOf: @@ -268453,7 +268644,7 @@ webhooks: required: - status - steps - deployment: *615 + deployment: *616 required: - action - repository @@ -268532,10 +268723,10 @@ webhooks: type: string enum: - queued - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -268681,7 +268872,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -268760,10 +268951,10 @@ webhooks: type: string enum: - waiting - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 workflow_job: type: object @@ -268910,7 +269101,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *615 + deployment: *616 required: - action - repository @@ -268990,12 +269181,12 @@ webhooks: type: string enum: - completed - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -270014,12 +270205,12 @@ webhooks: type: string enum: - in_progress - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 workflow_run: title: Workflow Run type: object @@ -271023,12 +271214,12 @@ webhooks: type: string enum: - requested - enterprise: *879 - installation: *880 - organization: *881 - repository: *882 + enterprise: *880 + installation: *881 + organization: *882 + repository: *883 sender: *4 - workflow: *896 + workflow: *897 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 88d90da9b..72949c5ad 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -20360,6 +20360,234 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", @@ -146261,6 +146489,44 @@ "usageItems" ] }, + "visual-studio-subscription-assignment": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -341226,6 +341492,35 @@ } ] }, + "visual-studio-subscription-assignment-paginated": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + }, + "visual-studio-subscription-assignment": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + }, + "visual-studio-subscription-assignment-no-match": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + }, "public-events-items": { "value": [ { diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index e88724857..3204d60b1 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -14836,6 +14836,160 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -106389,6 +106543,37 @@ components: - timePeriod - enterprise - usageItems + visual-studio-subscription-assignment: + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio subscription assignment + in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This is a GUID that + comes from the Visual Studio management portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + examples: + - true actor: title: Actor description: Actor @@ -251220,6 +251405,26 @@ components: public_members_url: https://api.github.com/orgs/github/public_members{/member} avatar_url: https://github.com/images/error/octocat_happy.gif description: A great organization + visual-studio-subscription-assignment-paginated: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment-no-match: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false public-events-items: value: - id: '22249084947' diff --git a/descriptions-next/ghec/ghec.2026-03-10.json b/descriptions-next/ghec/ghec.2026-03-10.json index d82248ac6..c36d61881 100644 --- a/descriptions-next/ghec/ghec.2026-03-10.json +++ b/descriptions-next/ghec/ghec.2026-03-10.json @@ -20360,6 +20360,234 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", @@ -146033,6 +146261,44 @@ "usageItems" ] }, + "visual-studio-subscription-assignment": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -340350,6 +340616,35 @@ } ] }, + "visual-studio-subscription-assignment-paginated": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + }, + "visual-studio-subscription-assignment": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + }, + "visual-studio-subscription-assignment-no-match": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + }, "public-events-items": { "value": [ { diff --git a/descriptions-next/ghec/ghec.2026-03-10.yaml b/descriptions-next/ghec/ghec.2026-03-10.yaml index 24b398a9e..9dd520523 100644 --- a/descriptions-next/ghec/ghec.2026-03-10.yaml +++ b/descriptions-next/ghec/ghec.2026-03-10.yaml @@ -14836,6 +14836,160 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -106205,6 +106359,37 @@ components: - timePeriod - enterprise - usageItems + visual-studio-subscription-assignment: + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio subscription assignment + in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This is a GUID that + comes from the Visual Studio management portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + examples: + - true actor: title: Actor description: Actor @@ -250497,6 +250682,26 @@ components: public_members_url: https://api.github.com/orgs/github/public_members{/member} avatar_url: https://github.com/images/error/octocat_happy.gif description: A great organization + visual-studio-subscription-assignment-paginated: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment-no-match: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false public-events-items: value: - id: '22249084947' diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index f188ac6c0..722cdcad2 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -20374,6 +20374,234 @@ } } }, + "/enterprises/{enterprise}/visual-studio-subscriptions": { + "get": { + "summary": "Get a list of Visual Studio subscriptions for the enterprise", + "description": "Retrieves a list of Visual Studio subscriptions for the specified enterprise.", + "operationId": "enterprise-admin/list-vss", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + }, + { + "name": "is_unmatched_only", + "in": "query", + "required": false, + "schema": { + "type": "boolean" + }, + "description": "When true, only returns Visual Studio subscriptions that are not matched to a GitHub user." + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "total_count", + "visual_studio_subscriptions" + ], + "properties": { + "total_count": { + "type": "integer" + }, + "visual_studio_subscriptions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": { + "put": { + "summary": "Add or update a Visual Studio subscription user match", + "description": "Updates a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/update-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match" + }, + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "user_identifier": { + "description": "The handle for the GitHub user account or a verified email associated with their account.", + "type": "string" + } + } + }, + "examples": { + "default": { + "value": { + "user_identifier": "monalisa" + } + } + } + } + } + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to add or update the match for. This is a GUID that comes from the Visual Studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + }, + "delete": { + "summary": "Delete a Visual Studio subscription user match", + "description": "Deletes a manual match between a user and a Visual Studio subscription.", + "operationId": "enterprise-admin/delete-vss-manual-match", + "tags": [ + "enterprise-admin" + ], + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match" + }, + "parameters": [ + { + "name": "visual_studio_subscription_id", + "description": "The ID of the Visual Studio subscription to delete the match for. This is a GUID that comes from the visual studio management portal.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "enterprise", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The slug version of the enterprise name" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + }, + "examples": { + "default": { + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed" + } + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "enterprise-admin", + "subcategory": "licensing" + } + } + }, "/enterprises/{enterprise}/{security_product}/{enablement}": { "post": { "summary": "Enable or disable a security feature", @@ -146898,6 +147126,44 @@ "usageItems" ] }, + "visual-studio-subscription-assignment": { + "title": "Visual Studio Subscription Assignment", + "description": "Visual Studio Subscription Assignment", + "type": "object", + "properties": { + "visual_studio_subscription_email": { + "type": "string", + "description": "The email associated with the Visual Studio subscription assignment in the visual studio portal.", + "examples": [ + "vs-subscriber@example.com" + ] + }, + "subscription_id": { + "type": "string", + "description": "The ID of the Visual Studio Subscription. This is a GUID that comes from the Visual Studio management portal.", + "examples": [ + "00000000-0000-0000-0000-000000000000" + ] + }, + "username": { + "type": [ + "string", + "null" + ], + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "examples": [ + "gh-user" + ] + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "examples": [ + true + ] + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -343195,6 +343461,35 @@ } ] }, + "visual-studio-subscription-assignment-paginated": { + "value": { + "total_count": 1, + "visual_studio_subscription_assignments": [ + { + "email": "test@example.com", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + ] + } + }, + "visual-studio-subscription-assignment": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": "gh-user", + "manual_match": true + } + }, + "visual-studio-subscription-assignment-no-match": { + "value": { + "visual_studio_subscription_email": "test@example.com", + "subscription_id": "00000000-0000-0000-0000-000000000000", + "username": null, + "manual_match": false + } + }, "public-events-items": { "value": [ { diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index fa4f071d7..4b6bce317 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -14844,6 +14844,160 @@ paths: enabledForGitHubApps: false category: enterprise-teams subcategory: enterprise-teams + "/enterprises/{enterprise}/visual-studio-subscriptions": + get: + summary: Get a list of Visual Studio subscriptions for the enterprise + description: Retrieves a list of Visual Studio subscriptions for the specified + enterprise. + operationId: enterprise-admin/list-vss + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-a-list-of-visual-studio-subscriptions-for-the-enterprise + parameters: + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + - name: is_unmatched_only + in: query + required: false + schema: + type: boolean + description: When true, only returns Visual Studio subscriptions that are + not matched to a GitHub user. + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - total_count + - visual_studio_subscriptions + properties: + total_count: + type: integer + visual_studio_subscriptions: + type: array + items: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-paginated" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + "/enterprises/{enterprise}/visual-studio-subscriptions/{visual_studio_subscription_id}": + put: + summary: Add or update a Visual Studio subscription user match + description: Updates a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/update-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#add-or-update-a-visual-studio-subscription-user-match + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + user_identifier: + description: The handle for the GitHub user account or a verified + email associated with their account. + type: string + examples: + default: + value: + user_identifier: monalisa + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to add or update the + match for. This is a GUID that comes from the Visual Studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing + delete: + summary: Delete a Visual Studio subscription user match + description: Deletes a manual match between a user and a Visual Studio subscription. + operationId: enterprise-admin/delete-vss-manual-match + tags: + - enterprise-admin + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#delete-a-visual-studio-subscription-user-match + parameters: + - name: visual_studio_subscription_id + description: The ID of the Visual Studio subscription to delete the match + for. This is a GUID that comes from the visual studio management portal. + in: path + required: true + schema: + type: string + - name: enterprise + in: path + required: true + schema: + type: string + description: The slug version of the enterprise name + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/visual-studio-subscription-assignment" + examples: + default: + "$ref": "#/components/examples/visual-studio-subscription-assignment-no-match" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed" + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: enterprise-admin + subcategory: licensing "/enterprises/{enterprise}/{security_product}/{enablement}": post: summary: Enable or disable a security feature @@ -106801,6 +106955,37 @@ components: - timePeriod - enterprise - usageItems + visual-studio-subscription-assignment: + title: Visual Studio Subscription Assignment + description: Visual Studio Subscription Assignment + type: object + properties: + visual_studio_subscription_email: + type: string + description: The email associated with the Visual Studio subscription assignment + in the visual studio portal. + examples: + - vs-subscriber@example.com + subscription_id: + type: string + description: The ID of the Visual Studio Subscription. This is a GUID that + comes from the Visual Studio management portal. + examples: + - 00000000-0000-0000-0000-000000000000 + username: + type: + - string + - 'null' + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + examples: + - gh-user + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + examples: + - true actor: title: Actor description: Actor @@ -252487,6 +252672,26 @@ components: public_members_url: https://api.github.com/orgs/github/public_members{/member} avatar_url: https://github.com/images/error/octocat_happy.gif description: A great organization + visual-studio-subscription-assignment-paginated: + value: + total_count: 1 + visual_studio_subscription_assignments: + - email: test@example.com + subscriptionId: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: gh-user + manual_match: true + visual-studio-subscription-assignment-no-match: + value: + visual_studio_subscription_email: test@example.com + subscription_id: 00000000-0000-0000-0000-000000000000 + username: + manual_match: false public-events-items: value: - id: '22249084947'